@merkl/api 0.20.48 → 0.20.49
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 +17 -0
- package/dist/database/api/.generated/drizzle/schema.js +1 -0
- package/dist/database/api/.generated/drizzle/schema.ts +1 -0
- package/dist/database/api/.generated/edge.js +4 -3
- package/dist/database/api/.generated/index-browser.js +9 -0
- package/dist/database/api/.generated/index.d.ts +133 -1
- package/dist/database/api/.generated/index.js +4 -3
- package/dist/database/api/.generated/package.json +1 -1
- package/dist/database/api/.generated/schema.prisma +1 -1
- package/dist/database/api/.generated/wasm.js +9 -0
- package/dist/src/eden/index.d.ts +430 -10
- package/dist/src/index.d.ts +98 -2
- package/dist/src/libs/tokens/balances.js +2 -1
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +93 -1
- package/dist/src/modules/v4/campaign/campaign.controller.js +23 -2
- package/dist/src/modules/v4/campaign/campaign.model.d.ts +15 -0
- package/dist/src/modules/v4/campaign/campaign.model.js +14 -0
- package/dist/src/modules/v4/campaign/campaign.repository.d.ts +8 -0
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +28 -1
- package/dist/src/modules/v4/campaign/campaign.service.js +35 -0
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +4 -0
- package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +14 -0
- package/dist/src/modules/v4/opportunity/opportunity.model.js +2 -1
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +5 -0
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +5 -0
- package/dist/src/modules/v4/programPayload/programPayload.controller.d.ts +1 -1
- package/dist/src/modules/v4/protocol/protocol.repository.d.ts +1 -0
- package/dist/src/modules/v4/reward/reward.service.d.ts +1 -0
- package/dist/src/modules/v4/router.d.ts +98 -2
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +1 -1
@@ -3750,6 +3750,7 @@ export namespace Prisma {
|
|
3750
3750
|
distributionChainId: number | null
|
3751
3751
|
campaignId: string | null
|
3752
3752
|
type: string | null
|
3753
|
+
distributionType: $Enums.DistributionType | null
|
3753
3754
|
subType: number | null
|
3754
3755
|
rewardTokenId: string | null
|
3755
3756
|
amount: string | null
|
@@ -3766,6 +3767,7 @@ export namespace Prisma {
|
|
3766
3767
|
distributionChainId: number | null
|
3767
3768
|
campaignId: string | null
|
3768
3769
|
type: string | null
|
3770
|
+
distributionType: $Enums.DistributionType | null
|
3769
3771
|
subType: number | null
|
3770
3772
|
rewardTokenId: string | null
|
3771
3773
|
amount: string | null
|
@@ -3782,6 +3784,7 @@ export namespace Prisma {
|
|
3782
3784
|
distributionChainId: number
|
3783
3785
|
campaignId: number
|
3784
3786
|
type: number
|
3787
|
+
distributionType: number
|
3785
3788
|
subType: number
|
3786
3789
|
rewardTokenId: number
|
3787
3790
|
amount: number
|
@@ -3818,6 +3821,7 @@ export namespace Prisma {
|
|
3818
3821
|
distributionChainId?: true
|
3819
3822
|
campaignId?: true
|
3820
3823
|
type?: true
|
3824
|
+
distributionType?: true
|
3821
3825
|
subType?: true
|
3822
3826
|
rewardTokenId?: true
|
3823
3827
|
amount?: true
|
@@ -3834,6 +3838,7 @@ export namespace Prisma {
|
|
3834
3838
|
distributionChainId?: true
|
3835
3839
|
campaignId?: true
|
3836
3840
|
type?: true
|
3841
|
+
distributionType?: true
|
3837
3842
|
subType?: true
|
3838
3843
|
rewardTokenId?: true
|
3839
3844
|
amount?: true
|
@@ -3850,6 +3855,7 @@ export namespace Prisma {
|
|
3850
3855
|
distributionChainId?: true
|
3851
3856
|
campaignId?: true
|
3852
3857
|
type?: true
|
3858
|
+
distributionType?: true
|
3853
3859
|
subType?: true
|
3854
3860
|
rewardTokenId?: true
|
3855
3861
|
amount?: true
|
@@ -3955,6 +3961,7 @@ export namespace Prisma {
|
|
3955
3961
|
distributionChainId: number
|
3956
3962
|
campaignId: string
|
3957
3963
|
type: string
|
3964
|
+
distributionType: $Enums.DistributionType
|
3958
3965
|
subType: number | null
|
3959
3966
|
rewardTokenId: string
|
3960
3967
|
amount: string
|
@@ -3992,6 +3999,7 @@ export namespace Prisma {
|
|
3992
3999
|
distributionChainId?: boolean
|
3993
4000
|
campaignId?: boolean
|
3994
4001
|
type?: boolean
|
4002
|
+
distributionType?: boolean
|
3995
4003
|
subType?: boolean
|
3996
4004
|
rewardTokenId?: boolean
|
3997
4005
|
amount?: boolean
|
@@ -4021,6 +4029,7 @@ export namespace Prisma {
|
|
4021
4029
|
distributionChainId?: boolean
|
4022
4030
|
campaignId?: boolean
|
4023
4031
|
type?: boolean
|
4032
|
+
distributionType?: boolean
|
4024
4033
|
subType?: boolean
|
4025
4034
|
rewardTokenId?: boolean
|
4026
4035
|
amount?: boolean
|
@@ -4044,6 +4053,7 @@ export namespace Prisma {
|
|
4044
4053
|
distributionChainId?: boolean
|
4045
4054
|
campaignId?: boolean
|
4046
4055
|
type?: boolean
|
4056
|
+
distributionType?: boolean
|
4047
4057
|
subType?: boolean
|
4048
4058
|
rewardTokenId?: boolean
|
4049
4059
|
amount?: boolean
|
@@ -4067,6 +4077,7 @@ export namespace Prisma {
|
|
4067
4077
|
distributionChainId?: boolean
|
4068
4078
|
campaignId?: boolean
|
4069
4079
|
type?: boolean
|
4080
|
+
distributionType?: boolean
|
4070
4081
|
subType?: boolean
|
4071
4082
|
rewardTokenId?: boolean
|
4072
4083
|
amount?: boolean
|
@@ -4079,7 +4090,7 @@ export namespace Prisma {
|
|
4079
4090
|
createdAt?: boolean
|
4080
4091
|
}
|
4081
4092
|
|
4082
|
-
export type CampaignOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "computeChainId" | "distributionChainId" | "campaignId" | "type" | "subType" | "rewardTokenId" | "amount" | "opportunityId" | "startTimestamp" | "endTimestamp" | "params" | "creatorAddress" | "manualOverrides" | "createdAt", ExtArgs["result"]["campaign"]>
|
4093
|
+
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" | "manualOverrides" | "createdAt", ExtArgs["result"]["campaign"]>
|
4083
4094
|
export type CampaignInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
4084
4095
|
ComputeChain?: boolean | ChainDefaultArgs<ExtArgs>
|
4085
4096
|
DistributionChain?: boolean | ChainDefaultArgs<ExtArgs>
|
@@ -4128,6 +4139,7 @@ export namespace Prisma {
|
|
4128
4139
|
distributionChainId: number
|
4129
4140
|
campaignId: string
|
4130
4141
|
type: string
|
4142
|
+
distributionType: $Enums.DistributionType
|
4131
4143
|
subType: number | null
|
4132
4144
|
rewardTokenId: string
|
4133
4145
|
amount: string
|
@@ -4576,6 +4588,7 @@ export namespace Prisma {
|
|
4576
4588
|
readonly distributionChainId: FieldRef<"Campaign", 'Int'>
|
4577
4589
|
readonly campaignId: FieldRef<"Campaign", 'String'>
|
4578
4590
|
readonly type: FieldRef<"Campaign", 'String'>
|
4591
|
+
readonly distributionType: FieldRef<"Campaign", 'DistributionType'>
|
4579
4592
|
readonly subType: FieldRef<"Campaign", 'Int'>
|
4580
4593
|
readonly rewardTokenId: FieldRef<"Campaign", 'String'>
|
4581
4594
|
readonly amount: FieldRef<"Campaign", 'String'>
|
@@ -31484,6 +31497,7 @@ export namespace Prisma {
|
|
31484
31497
|
distributionChainId: 'distributionChainId',
|
31485
31498
|
campaignId: 'campaignId',
|
31486
31499
|
type: 'type',
|
31500
|
+
distributionType: 'distributionType',
|
31487
31501
|
subType: 'subType',
|
31488
31502
|
rewardTokenId: 'rewardTokenId',
|
31489
31503
|
amount: 'amount',
|
@@ -32095,6 +32109,20 @@ export namespace Prisma {
|
|
32095
32109
|
|
32096
32110
|
|
32097
32111
|
|
32112
|
+
/**
|
32113
|
+
* Reference to a field of type 'DistributionType'
|
32114
|
+
*/
|
32115
|
+
export type EnumDistributionTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'DistributionType'>
|
32116
|
+
|
32117
|
+
|
32118
|
+
|
32119
|
+
/**
|
32120
|
+
* Reference to a field of type 'DistributionType[]'
|
32121
|
+
*/
|
32122
|
+
export type ListEnumDistributionTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'DistributionType[]'>
|
32123
|
+
|
32124
|
+
|
32125
|
+
|
32098
32126
|
/**
|
32099
32127
|
* Reference to a field of type 'BigInt'
|
32100
32128
|
*/
|
@@ -32303,6 +32331,7 @@ export namespace Prisma {
|
|
32303
32331
|
distributionChainId?: IntFilter<"Campaign"> | number
|
32304
32332
|
campaignId?: StringFilter<"Campaign"> | string
|
32305
32333
|
type?: StringFilter<"Campaign"> | string
|
32334
|
+
distributionType?: EnumDistributionTypeFilter<"Campaign"> | $Enums.DistributionType
|
32306
32335
|
subType?: IntNullableFilter<"Campaign"> | number | null
|
32307
32336
|
rewardTokenId?: StringFilter<"Campaign"> | string
|
32308
32337
|
amount?: StringFilter<"Campaign"> | string
|
@@ -32331,6 +32360,7 @@ export namespace Prisma {
|
|
32331
32360
|
distributionChainId?: SortOrder
|
32332
32361
|
campaignId?: SortOrder
|
32333
32362
|
type?: SortOrder
|
32363
|
+
distributionType?: SortOrder
|
32334
32364
|
subType?: SortOrderInput | SortOrder
|
32335
32365
|
rewardTokenId?: SortOrder
|
32336
32366
|
amount?: SortOrder
|
@@ -32364,6 +32394,7 @@ export namespace Prisma {
|
|
32364
32394
|
distributionChainId?: IntFilter<"Campaign"> | number
|
32365
32395
|
campaignId?: StringFilter<"Campaign"> | string
|
32366
32396
|
type?: StringFilter<"Campaign"> | string
|
32397
|
+
distributionType?: EnumDistributionTypeFilter<"Campaign"> | $Enums.DistributionType
|
32367
32398
|
subType?: IntNullableFilter<"Campaign"> | number | null
|
32368
32399
|
rewardTokenId?: StringFilter<"Campaign"> | string
|
32369
32400
|
amount?: StringFilter<"Campaign"> | string
|
@@ -32392,6 +32423,7 @@ export namespace Prisma {
|
|
32392
32423
|
distributionChainId?: SortOrder
|
32393
32424
|
campaignId?: SortOrder
|
32394
32425
|
type?: SortOrder
|
32426
|
+
distributionType?: SortOrder
|
32395
32427
|
subType?: SortOrderInput | SortOrder
|
32396
32428
|
rewardTokenId?: SortOrder
|
32397
32429
|
amount?: SortOrder
|
@@ -32418,6 +32450,7 @@ export namespace Prisma {
|
|
32418
32450
|
distributionChainId?: IntWithAggregatesFilter<"Campaign"> | number
|
32419
32451
|
campaignId?: StringWithAggregatesFilter<"Campaign"> | string
|
32420
32452
|
type?: StringWithAggregatesFilter<"Campaign"> | string
|
32453
|
+
distributionType?: EnumDistributionTypeWithAggregatesFilter<"Campaign"> | $Enums.DistributionType
|
32421
32454
|
subType?: IntNullableWithAggregatesFilter<"Campaign"> | number | null
|
32422
32455
|
rewardTokenId?: StringWithAggregatesFilter<"Campaign"> | string
|
32423
32456
|
amount?: StringWithAggregatesFilter<"Campaign"> | string
|
@@ -33981,6 +34014,7 @@ export namespace Prisma {
|
|
33981
34014
|
id: string
|
33982
34015
|
campaignId: string
|
33983
34016
|
type: string
|
34017
|
+
distributionType?: $Enums.DistributionType
|
33984
34018
|
subType?: number | null
|
33985
34019
|
amount: string
|
33986
34020
|
startTimestamp: bigint | number
|
@@ -34006,6 +34040,7 @@ export namespace Prisma {
|
|
34006
34040
|
distributionChainId: number
|
34007
34041
|
campaignId: string
|
34008
34042
|
type: string
|
34043
|
+
distributionType?: $Enums.DistributionType
|
34009
34044
|
subType?: number | null
|
34010
34045
|
rewardTokenId: string
|
34011
34046
|
amount: string
|
@@ -34027,6 +34062,7 @@ export namespace Prisma {
|
|
34027
34062
|
id?: StringFieldUpdateOperationsInput | string
|
34028
34063
|
campaignId?: StringFieldUpdateOperationsInput | string
|
34029
34064
|
type?: StringFieldUpdateOperationsInput | string
|
34065
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
34030
34066
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
34031
34067
|
amount?: StringFieldUpdateOperationsInput | string
|
34032
34068
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -34052,6 +34088,7 @@ export namespace Prisma {
|
|
34052
34088
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
34053
34089
|
campaignId?: StringFieldUpdateOperationsInput | string
|
34054
34090
|
type?: StringFieldUpdateOperationsInput | string
|
34091
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
34055
34092
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
34056
34093
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
34057
34094
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -34075,6 +34112,7 @@ export namespace Prisma {
|
|
34075
34112
|
distributionChainId: number
|
34076
34113
|
campaignId: string
|
34077
34114
|
type: string
|
34115
|
+
distributionType?: $Enums.DistributionType
|
34078
34116
|
subType?: number | null
|
34079
34117
|
rewardTokenId: string
|
34080
34118
|
amount: string
|
@@ -34091,6 +34129,7 @@ export namespace Prisma {
|
|
34091
34129
|
id?: StringFieldUpdateOperationsInput | string
|
34092
34130
|
campaignId?: StringFieldUpdateOperationsInput | string
|
34093
34131
|
type?: StringFieldUpdateOperationsInput | string
|
34132
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
34094
34133
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
34095
34134
|
amount?: StringFieldUpdateOperationsInput | string
|
34096
34135
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -34106,6 +34145,7 @@ export namespace Prisma {
|
|
34106
34145
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
34107
34146
|
campaignId?: StringFieldUpdateOperationsInput | string
|
34108
34147
|
type?: StringFieldUpdateOperationsInput | string
|
34148
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
34109
34149
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
34110
34150
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
34111
34151
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -35670,6 +35710,13 @@ export namespace Prisma {
|
|
35670
35710
|
not?: NestedIntFilter<$PrismaModel> | number
|
35671
35711
|
}
|
35672
35712
|
|
35713
|
+
export type EnumDistributionTypeFilter<$PrismaModel = never> = {
|
35714
|
+
equals?: $Enums.DistributionType | EnumDistributionTypeFieldRefInput<$PrismaModel>
|
35715
|
+
in?: $Enums.DistributionType[] | ListEnumDistributionTypeFieldRefInput<$PrismaModel>
|
35716
|
+
notIn?: $Enums.DistributionType[] | ListEnumDistributionTypeFieldRefInput<$PrismaModel>
|
35717
|
+
not?: NestedEnumDistributionTypeFilter<$PrismaModel> | $Enums.DistributionType
|
35718
|
+
}
|
35719
|
+
|
35673
35720
|
export type IntNullableFilter<$PrismaModel = never> = {
|
35674
35721
|
equals?: number | IntFieldRefInput<$PrismaModel> | null
|
35675
35722
|
in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
|
@@ -35825,6 +35872,7 @@ export namespace Prisma {
|
|
35825
35872
|
distributionChainId?: SortOrder
|
35826
35873
|
campaignId?: SortOrder
|
35827
35874
|
type?: SortOrder
|
35875
|
+
distributionType?: SortOrder
|
35828
35876
|
subType?: SortOrder
|
35829
35877
|
rewardTokenId?: SortOrder
|
35830
35878
|
amount?: SortOrder
|
@@ -35851,6 +35899,7 @@ export namespace Prisma {
|
|
35851
35899
|
distributionChainId?: SortOrder
|
35852
35900
|
campaignId?: SortOrder
|
35853
35901
|
type?: SortOrder
|
35902
|
+
distributionType?: SortOrder
|
35854
35903
|
subType?: SortOrder
|
35855
35904
|
rewardTokenId?: SortOrder
|
35856
35905
|
amount?: SortOrder
|
@@ -35867,6 +35916,7 @@ export namespace Prisma {
|
|
35867
35916
|
distributionChainId?: SortOrder
|
35868
35917
|
campaignId?: SortOrder
|
35869
35918
|
type?: SortOrder
|
35919
|
+
distributionType?: SortOrder
|
35870
35920
|
subType?: SortOrder
|
35871
35921
|
rewardTokenId?: SortOrder
|
35872
35922
|
amount?: SortOrder
|
@@ -35920,6 +35970,16 @@ export namespace Prisma {
|
|
35920
35970
|
_max?: NestedIntFilter<$PrismaModel>
|
35921
35971
|
}
|
35922
35972
|
|
35973
|
+
export type EnumDistributionTypeWithAggregatesFilter<$PrismaModel = never> = {
|
35974
|
+
equals?: $Enums.DistributionType | EnumDistributionTypeFieldRefInput<$PrismaModel>
|
35975
|
+
in?: $Enums.DistributionType[] | ListEnumDistributionTypeFieldRefInput<$PrismaModel>
|
35976
|
+
notIn?: $Enums.DistributionType[] | ListEnumDistributionTypeFieldRefInput<$PrismaModel>
|
35977
|
+
not?: NestedEnumDistributionTypeWithAggregatesFilter<$PrismaModel> | $Enums.DistributionType
|
35978
|
+
_count?: NestedIntFilter<$PrismaModel>
|
35979
|
+
_min?: NestedEnumDistributionTypeFilter<$PrismaModel>
|
35980
|
+
_max?: NestedEnumDistributionTypeFilter<$PrismaModel>
|
35981
|
+
}
|
35982
|
+
|
35923
35983
|
export type IntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
35924
35984
|
equals?: number | IntFieldRefInput<$PrismaModel> | null
|
35925
35985
|
in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
|
@@ -37599,6 +37659,10 @@ export namespace Prisma {
|
|
37599
37659
|
set?: string
|
37600
37660
|
}
|
37601
37661
|
|
37662
|
+
export type EnumDistributionTypeFieldUpdateOperationsInput = {
|
37663
|
+
set?: $Enums.DistributionType
|
37664
|
+
}
|
37665
|
+
|
37602
37666
|
export type NullableIntFieldUpdateOperationsInput = {
|
37603
37667
|
set?: number | null
|
37604
37668
|
increment?: number
|
@@ -39667,6 +39731,13 @@ export namespace Prisma {
|
|
39667
39731
|
not?: NestedIntFilter<$PrismaModel> | number
|
39668
39732
|
}
|
39669
39733
|
|
39734
|
+
export type NestedEnumDistributionTypeFilter<$PrismaModel = never> = {
|
39735
|
+
equals?: $Enums.DistributionType | EnumDistributionTypeFieldRefInput<$PrismaModel>
|
39736
|
+
in?: $Enums.DistributionType[] | ListEnumDistributionTypeFieldRefInput<$PrismaModel>
|
39737
|
+
notIn?: $Enums.DistributionType[] | ListEnumDistributionTypeFieldRefInput<$PrismaModel>
|
39738
|
+
not?: NestedEnumDistributionTypeFilter<$PrismaModel> | $Enums.DistributionType
|
39739
|
+
}
|
39740
|
+
|
39670
39741
|
export type NestedIntNullableFilter<$PrismaModel = never> = {
|
39671
39742
|
equals?: number | IntFieldRefInput<$PrismaModel> | null
|
39672
39743
|
in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
|
@@ -39745,6 +39816,16 @@ export namespace Prisma {
|
|
39745
39816
|
not?: NestedFloatFilter<$PrismaModel> | number
|
39746
39817
|
}
|
39747
39818
|
|
39819
|
+
export type NestedEnumDistributionTypeWithAggregatesFilter<$PrismaModel = never> = {
|
39820
|
+
equals?: $Enums.DistributionType | EnumDistributionTypeFieldRefInput<$PrismaModel>
|
39821
|
+
in?: $Enums.DistributionType[] | ListEnumDistributionTypeFieldRefInput<$PrismaModel>
|
39822
|
+
notIn?: $Enums.DistributionType[] | ListEnumDistributionTypeFieldRefInput<$PrismaModel>
|
39823
|
+
not?: NestedEnumDistributionTypeWithAggregatesFilter<$PrismaModel> | $Enums.DistributionType
|
39824
|
+
_count?: NestedIntFilter<$PrismaModel>
|
39825
|
+
_min?: NestedEnumDistributionTypeFilter<$PrismaModel>
|
39826
|
+
_max?: NestedEnumDistributionTypeFilter<$PrismaModel>
|
39827
|
+
}
|
39828
|
+
|
39748
39829
|
export type NestedIntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
39749
39830
|
equals?: number | IntFieldRefInput<$PrismaModel> | null
|
39750
39831
|
in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
|
@@ -40744,6 +40825,7 @@ export namespace Prisma {
|
|
40744
40825
|
id: string
|
40745
40826
|
campaignId: string
|
40746
40827
|
type: string
|
40828
|
+
distributionType?: $Enums.DistributionType
|
40747
40829
|
subType?: number | null
|
40748
40830
|
amount: string
|
40749
40831
|
startTimestamp: bigint | number
|
@@ -40768,6 +40850,7 @@ export namespace Prisma {
|
|
40768
40850
|
distributionChainId: number
|
40769
40851
|
campaignId: string
|
40770
40852
|
type: string
|
40853
|
+
distributionType?: $Enums.DistributionType
|
40771
40854
|
subType?: number | null
|
40772
40855
|
rewardTokenId: string
|
40773
40856
|
amount: string
|
@@ -40804,6 +40887,7 @@ export namespace Prisma {
|
|
40804
40887
|
id?: StringFieldUpdateOperationsInput | string
|
40805
40888
|
campaignId?: StringFieldUpdateOperationsInput | string
|
40806
40889
|
type?: StringFieldUpdateOperationsInput | string
|
40890
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
40807
40891
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
40808
40892
|
amount?: StringFieldUpdateOperationsInput | string
|
40809
40893
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -40828,6 +40912,7 @@ export namespace Prisma {
|
|
40828
40912
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
40829
40913
|
campaignId?: StringFieldUpdateOperationsInput | string
|
40830
40914
|
type?: StringFieldUpdateOperationsInput | string
|
40915
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
40831
40916
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
40832
40917
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
40833
40918
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -40848,6 +40933,7 @@ export namespace Prisma {
|
|
40848
40933
|
id: string
|
40849
40934
|
campaignId: string
|
40850
40935
|
type: string
|
40936
|
+
distributionType?: $Enums.DistributionType
|
40851
40937
|
subType?: number | null
|
40852
40938
|
amount: string
|
40853
40939
|
startTimestamp: bigint | number
|
@@ -40872,6 +40958,7 @@ export namespace Prisma {
|
|
40872
40958
|
distributionChainId: number
|
40873
40959
|
campaignId: string
|
40874
40960
|
type: string
|
40961
|
+
distributionType?: $Enums.DistributionType
|
40875
40962
|
subType?: number | null
|
40876
40963
|
rewardTokenId: string
|
40877
40964
|
amount: string
|
@@ -40908,6 +40995,7 @@ export namespace Prisma {
|
|
40908
40995
|
id?: StringFieldUpdateOperationsInput | string
|
40909
40996
|
campaignId?: StringFieldUpdateOperationsInput | string
|
40910
40997
|
type?: StringFieldUpdateOperationsInput | string
|
40998
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
40911
40999
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
40912
41000
|
amount?: StringFieldUpdateOperationsInput | string
|
40913
41001
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -40932,6 +41020,7 @@ export namespace Prisma {
|
|
40932
41020
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
40933
41021
|
campaignId?: StringFieldUpdateOperationsInput | string
|
40934
41022
|
type?: StringFieldUpdateOperationsInput | string
|
41023
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
40935
41024
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
40936
41025
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
40937
41026
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -40952,6 +41041,7 @@ export namespace Prisma {
|
|
40952
41041
|
id: string
|
40953
41042
|
campaignId: string
|
40954
41043
|
type: string
|
41044
|
+
distributionType?: $Enums.DistributionType
|
40955
41045
|
subType?: number | null
|
40956
41046
|
amount: string
|
40957
41047
|
startTimestamp: bigint | number
|
@@ -40976,6 +41066,7 @@ export namespace Prisma {
|
|
40976
41066
|
distributionChainId: number
|
40977
41067
|
campaignId: string
|
40978
41068
|
type: string
|
41069
|
+
distributionType?: $Enums.DistributionType
|
40979
41070
|
subType?: number | null
|
40980
41071
|
rewardTokenId: string
|
40981
41072
|
amount: string
|
@@ -41035,6 +41126,7 @@ export namespace Prisma {
|
|
41035
41126
|
id?: StringFieldUpdateOperationsInput | string
|
41036
41127
|
campaignId?: StringFieldUpdateOperationsInput | string
|
41037
41128
|
type?: StringFieldUpdateOperationsInput | string
|
41129
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
41038
41130
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
41039
41131
|
amount?: StringFieldUpdateOperationsInput | string
|
41040
41132
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -41059,6 +41151,7 @@ export namespace Prisma {
|
|
41059
41151
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
41060
41152
|
campaignId?: StringFieldUpdateOperationsInput | string
|
41061
41153
|
type?: StringFieldUpdateOperationsInput | string
|
41154
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
41062
41155
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
41063
41156
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
41064
41157
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -41130,6 +41223,7 @@ export namespace Prisma {
|
|
41130
41223
|
id: string
|
41131
41224
|
campaignId: string
|
41132
41225
|
type: string
|
41226
|
+
distributionType?: $Enums.DistributionType
|
41133
41227
|
subType?: number | null
|
41134
41228
|
amount: string
|
41135
41229
|
startTimestamp: bigint | number
|
@@ -41153,6 +41247,7 @@ export namespace Prisma {
|
|
41153
41247
|
distributionChainId: number
|
41154
41248
|
campaignId: string
|
41155
41249
|
type: string
|
41250
|
+
distributionType?: $Enums.DistributionType
|
41156
41251
|
subType?: number | null
|
41157
41252
|
rewardTokenId: string
|
41158
41253
|
amount: string
|
@@ -41184,6 +41279,7 @@ export namespace Prisma {
|
|
41184
41279
|
id: string
|
41185
41280
|
campaignId: string
|
41186
41281
|
type: string
|
41282
|
+
distributionType?: $Enums.DistributionType
|
41187
41283
|
subType?: number | null
|
41188
41284
|
amount: string
|
41189
41285
|
startTimestamp: bigint | number
|
@@ -41207,6 +41303,7 @@ export namespace Prisma {
|
|
41207
41303
|
computeChainId: number
|
41208
41304
|
campaignId: string
|
41209
41305
|
type: string
|
41306
|
+
distributionType?: $Enums.DistributionType
|
41210
41307
|
subType?: number | null
|
41211
41308
|
rewardTokenId: string
|
41212
41309
|
amount: string
|
@@ -41475,6 +41572,7 @@ export namespace Prisma {
|
|
41475
41572
|
distributionChainId?: IntFilter<"Campaign"> | number
|
41476
41573
|
campaignId?: StringFilter<"Campaign"> | string
|
41477
41574
|
type?: StringFilter<"Campaign"> | string
|
41575
|
+
distributionType?: EnumDistributionTypeFilter<"Campaign"> | $Enums.DistributionType
|
41478
41576
|
subType?: IntNullableFilter<"Campaign"> | number | null
|
41479
41577
|
rewardTokenId?: StringFilter<"Campaign"> | string
|
41480
41578
|
amount?: StringFilter<"Campaign"> | string
|
@@ -41809,6 +41907,7 @@ export namespace Prisma {
|
|
41809
41907
|
id: string
|
41810
41908
|
campaignId: string
|
41811
41909
|
type: string
|
41910
|
+
distributionType?: $Enums.DistributionType
|
41812
41911
|
subType?: number | null
|
41813
41912
|
amount: string
|
41814
41913
|
startTimestamp: bigint | number
|
@@ -41833,6 +41932,7 @@ export namespace Prisma {
|
|
41833
41932
|
distributionChainId: number
|
41834
41933
|
campaignId: string
|
41835
41934
|
type: string
|
41935
|
+
distributionType?: $Enums.DistributionType
|
41836
41936
|
subType?: number | null
|
41837
41937
|
rewardTokenId: string
|
41838
41938
|
amount: string
|
@@ -42464,6 +42564,7 @@ export namespace Prisma {
|
|
42464
42564
|
id: string
|
42465
42565
|
campaignId: string
|
42466
42566
|
type: string
|
42567
|
+
distributionType?: $Enums.DistributionType
|
42467
42568
|
subType?: number | null
|
42468
42569
|
amount: string
|
42469
42570
|
startTimestamp: bigint | number
|
@@ -42488,6 +42589,7 @@ export namespace Prisma {
|
|
42488
42589
|
distributionChainId: number
|
42489
42590
|
campaignId: string
|
42490
42591
|
type: string
|
42592
|
+
distributionType?: $Enums.DistributionType
|
42491
42593
|
subType?: number | null
|
42492
42594
|
amount: string
|
42493
42595
|
opportunityId: string
|
@@ -43301,6 +43403,7 @@ export namespace Prisma {
|
|
43301
43403
|
id: string
|
43302
43404
|
campaignId: string
|
43303
43405
|
type: string
|
43406
|
+
distributionType?: $Enums.DistributionType
|
43304
43407
|
subType?: number | null
|
43305
43408
|
amount: string
|
43306
43409
|
startTimestamp: bigint | number
|
@@ -43325,6 +43428,7 @@ export namespace Prisma {
|
|
43325
43428
|
distributionChainId: number
|
43326
43429
|
campaignId: string
|
43327
43430
|
type: string
|
43431
|
+
distributionType?: $Enums.DistributionType
|
43328
43432
|
subType?: number | null
|
43329
43433
|
rewardTokenId: string
|
43330
43434
|
amount: string
|
@@ -43380,6 +43484,7 @@ export namespace Prisma {
|
|
43380
43484
|
id?: StringFieldUpdateOperationsInput | string
|
43381
43485
|
campaignId?: StringFieldUpdateOperationsInput | string
|
43382
43486
|
type?: StringFieldUpdateOperationsInput | string
|
43487
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
43383
43488
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
43384
43489
|
amount?: StringFieldUpdateOperationsInput | string
|
43385
43490
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -43404,6 +43509,7 @@ export namespace Prisma {
|
|
43404
43509
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
43405
43510
|
campaignId?: StringFieldUpdateOperationsInput | string
|
43406
43511
|
type?: StringFieldUpdateOperationsInput | string
|
43512
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
43407
43513
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
43408
43514
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
43409
43515
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -43507,6 +43613,7 @@ export namespace Prisma {
|
|
43507
43613
|
id: string
|
43508
43614
|
campaignId: string
|
43509
43615
|
type: string
|
43616
|
+
distributionType?: $Enums.DistributionType
|
43510
43617
|
subType?: number | null
|
43511
43618
|
amount: string
|
43512
43619
|
startTimestamp: bigint | number
|
@@ -43531,6 +43638,7 @@ export namespace Prisma {
|
|
43531
43638
|
distributionChainId: number
|
43532
43639
|
campaignId: string
|
43533
43640
|
type: string
|
43641
|
+
distributionType?: $Enums.DistributionType
|
43534
43642
|
subType?: number | null
|
43535
43643
|
rewardTokenId: string
|
43536
43644
|
amount: string
|
@@ -44034,6 +44142,7 @@ export namespace Prisma {
|
|
44034
44142
|
id: string
|
44035
44143
|
campaignId: string
|
44036
44144
|
type: string
|
44145
|
+
distributionType?: $Enums.DistributionType
|
44037
44146
|
subType?: number | null
|
44038
44147
|
amount: string
|
44039
44148
|
startTimestamp: bigint | number
|
@@ -44058,6 +44167,7 @@ export namespace Prisma {
|
|
44058
44167
|
distributionChainId: number
|
44059
44168
|
campaignId: string
|
44060
44169
|
type: string
|
44170
|
+
distributionType?: $Enums.DistributionType
|
44061
44171
|
subType?: number | null
|
44062
44172
|
rewardTokenId: string
|
44063
44173
|
amount: string
|
@@ -44160,6 +44270,7 @@ export namespace Prisma {
|
|
44160
44270
|
id?: StringFieldUpdateOperationsInput | string
|
44161
44271
|
campaignId?: StringFieldUpdateOperationsInput | string
|
44162
44272
|
type?: StringFieldUpdateOperationsInput | string
|
44273
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
44163
44274
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
44164
44275
|
amount?: StringFieldUpdateOperationsInput | string
|
44165
44276
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -44184,6 +44295,7 @@ export namespace Prisma {
|
|
44184
44295
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
44185
44296
|
campaignId?: StringFieldUpdateOperationsInput | string
|
44186
44297
|
type?: StringFieldUpdateOperationsInput | string
|
44298
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
44187
44299
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
44188
44300
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
44189
44301
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -44855,6 +44967,7 @@ export namespace Prisma {
|
|
44855
44967
|
distributionChainId: number
|
44856
44968
|
campaignId: string
|
44857
44969
|
type: string
|
44970
|
+
distributionType?: $Enums.DistributionType
|
44858
44971
|
subType?: number | null
|
44859
44972
|
rewardTokenId: string
|
44860
44973
|
amount: string
|
@@ -44872,6 +44985,7 @@ export namespace Prisma {
|
|
44872
44985
|
computeChainId: number
|
44873
44986
|
campaignId: string
|
44874
44987
|
type: string
|
44988
|
+
distributionType?: $Enums.DistributionType
|
44875
44989
|
subType?: number | null
|
44876
44990
|
rewardTokenId: string
|
44877
44991
|
amount: string
|
@@ -44964,6 +45078,7 @@ export namespace Prisma {
|
|
44964
45078
|
id?: StringFieldUpdateOperationsInput | string
|
44965
45079
|
campaignId?: StringFieldUpdateOperationsInput | string
|
44966
45080
|
type?: StringFieldUpdateOperationsInput | string
|
45081
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
44967
45082
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
44968
45083
|
amount?: StringFieldUpdateOperationsInput | string
|
44969
45084
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -44987,6 +45102,7 @@ export namespace Prisma {
|
|
44987
45102
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
44988
45103
|
campaignId?: StringFieldUpdateOperationsInput | string
|
44989
45104
|
type?: StringFieldUpdateOperationsInput | string
|
45105
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
44990
45106
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
44991
45107
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
44992
45108
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -45009,6 +45125,7 @@ export namespace Prisma {
|
|
45009
45125
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
45010
45126
|
campaignId?: StringFieldUpdateOperationsInput | string
|
45011
45127
|
type?: StringFieldUpdateOperationsInput | string
|
45128
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
45012
45129
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
45013
45130
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
45014
45131
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -45025,6 +45142,7 @@ export namespace Prisma {
|
|
45025
45142
|
id?: StringFieldUpdateOperationsInput | string
|
45026
45143
|
campaignId?: StringFieldUpdateOperationsInput | string
|
45027
45144
|
type?: StringFieldUpdateOperationsInput | string
|
45145
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
45028
45146
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
45029
45147
|
amount?: StringFieldUpdateOperationsInput | string
|
45030
45148
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -45048,6 +45166,7 @@ export namespace Prisma {
|
|
45048
45166
|
computeChainId?: IntFieldUpdateOperationsInput | number
|
45049
45167
|
campaignId?: StringFieldUpdateOperationsInput | string
|
45050
45168
|
type?: StringFieldUpdateOperationsInput | string
|
45169
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
45051
45170
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
45052
45171
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
45053
45172
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -45070,6 +45189,7 @@ export namespace Prisma {
|
|
45070
45189
|
computeChainId?: IntFieldUpdateOperationsInput | number
|
45071
45190
|
campaignId?: StringFieldUpdateOperationsInput | string
|
45072
45191
|
type?: StringFieldUpdateOperationsInput | string
|
45192
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
45073
45193
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
45074
45194
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
45075
45195
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -45286,6 +45406,7 @@ export namespace Prisma {
|
|
45286
45406
|
distributionChainId: number
|
45287
45407
|
campaignId: string
|
45288
45408
|
type: string
|
45409
|
+
distributionType?: $Enums.DistributionType
|
45289
45410
|
subType?: number | null
|
45290
45411
|
rewardTokenId: string
|
45291
45412
|
amount: string
|
@@ -45375,6 +45496,7 @@ export namespace Prisma {
|
|
45375
45496
|
id?: StringFieldUpdateOperationsInput | string
|
45376
45497
|
campaignId?: StringFieldUpdateOperationsInput | string
|
45377
45498
|
type?: StringFieldUpdateOperationsInput | string
|
45499
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
45378
45500
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
45379
45501
|
amount?: StringFieldUpdateOperationsInput | string
|
45380
45502
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -45399,6 +45521,7 @@ export namespace Prisma {
|
|
45399
45521
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
45400
45522
|
campaignId?: StringFieldUpdateOperationsInput | string
|
45401
45523
|
type?: StringFieldUpdateOperationsInput | string
|
45524
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
45402
45525
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
45403
45526
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
45404
45527
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -45421,6 +45544,7 @@ export namespace Prisma {
|
|
45421
45544
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
45422
45545
|
campaignId?: StringFieldUpdateOperationsInput | string
|
45423
45546
|
type?: StringFieldUpdateOperationsInput | string
|
45547
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
45424
45548
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
45425
45549
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
45426
45550
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -45713,6 +45837,7 @@ export namespace Prisma {
|
|
45713
45837
|
distributionChainId: number
|
45714
45838
|
campaignId: string
|
45715
45839
|
type: string
|
45840
|
+
distributionType?: $Enums.DistributionType
|
45716
45841
|
subType?: number | null
|
45717
45842
|
amount: string
|
45718
45843
|
opportunityId: string
|
@@ -45826,6 +45951,7 @@ export namespace Prisma {
|
|
45826
45951
|
id?: StringFieldUpdateOperationsInput | string
|
45827
45952
|
campaignId?: StringFieldUpdateOperationsInput | string
|
45828
45953
|
type?: StringFieldUpdateOperationsInput | string
|
45954
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
45829
45955
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
45830
45956
|
amount?: StringFieldUpdateOperationsInput | string
|
45831
45957
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -45850,6 +45976,7 @@ export namespace Prisma {
|
|
45850
45976
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
45851
45977
|
campaignId?: StringFieldUpdateOperationsInput | string
|
45852
45978
|
type?: StringFieldUpdateOperationsInput | string
|
45979
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
45853
45980
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
45854
45981
|
amount?: StringFieldUpdateOperationsInput | string
|
45855
45982
|
opportunityId?: StringFieldUpdateOperationsInput | string
|
@@ -45872,6 +45999,7 @@ export namespace Prisma {
|
|
45872
45999
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
45873
46000
|
campaignId?: StringFieldUpdateOperationsInput | string
|
45874
46001
|
type?: StringFieldUpdateOperationsInput | string
|
46002
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
45875
46003
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
45876
46004
|
amount?: StringFieldUpdateOperationsInput | string
|
45877
46005
|
opportunityId?: StringFieldUpdateOperationsInput | string
|
@@ -46091,6 +46219,7 @@ export namespace Prisma {
|
|
46091
46219
|
distributionChainId: number
|
46092
46220
|
campaignId: string
|
46093
46221
|
type: string
|
46222
|
+
distributionType?: $Enums.DistributionType
|
46094
46223
|
subType?: number | null
|
46095
46224
|
rewardTokenId: string
|
46096
46225
|
amount: string
|
@@ -46169,6 +46298,7 @@ export namespace Prisma {
|
|
46169
46298
|
id?: StringFieldUpdateOperationsInput | string
|
46170
46299
|
campaignId?: StringFieldUpdateOperationsInput | string
|
46171
46300
|
type?: StringFieldUpdateOperationsInput | string
|
46301
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
46172
46302
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
46173
46303
|
amount?: StringFieldUpdateOperationsInput | string
|
46174
46304
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -46193,6 +46323,7 @@ export namespace Prisma {
|
|
46193
46323
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
46194
46324
|
campaignId?: StringFieldUpdateOperationsInput | string
|
46195
46325
|
type?: StringFieldUpdateOperationsInput | string
|
46326
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
46196
46327
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
46197
46328
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
46198
46329
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -46215,6 +46346,7 @@ export namespace Prisma {
|
|
46215
46346
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
46216
46347
|
campaignId?: StringFieldUpdateOperationsInput | string
|
46217
46348
|
type?: StringFieldUpdateOperationsInput | string
|
46349
|
+
distributionType?: EnumDistributionTypeFieldUpdateOperationsInput | $Enums.DistributionType
|
46218
46350
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
46219
46351
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
46220
46352
|
amount?: StringFieldUpdateOperationsInput | string
|