@merkl/api 0.16.1 → 0.16.3
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 +8 -9
- package/dist/database/api/.generated/drizzle/schema.js +2 -3
- package/dist/database/api/.generated/drizzle/schema.ts +2 -4
- package/dist/database/api/.generated/edge.js +5 -33
- package/dist/database/api/.generated/index-browser.js +2 -30
- package/dist/database/api/.generated/index.d.ts +123 -210
- package/dist/database/api/.generated/index.js +5 -33
- package/dist/database/api/.generated/package.json +1 -1
- package/dist/database/api/.generated/schema.prisma +2 -32
- package/dist/database/api/.generated/wasm.js +2 -30
- package/dist/src/constants.d.ts +259 -13
- package/dist/src/eden/index.d.ts +98 -98
- package/dist/src/index.d.ts +19 -19
- package/dist/src/libs/campaigns/campaignTypes/ERC20DynamicData.js +6 -1
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/factoryFinder.js +1 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/tokenType.d.ts +4 -1
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/tokenType.js +6 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/BalancerV3PoolProcessor.d.ts +44 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/BalancerV3PoolProcessor.js +69 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/HourglassProcessor.d.ts +36 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/HourglassProcessor.js +31 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/processorMapping.js +5 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound1.js +10 -0
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +6 -6
- package/dist/src/modules/v4/campaign/campaign.model.d.ts +5 -65
- package/dist/src/modules/v4/campaign/campaign.model.js +1 -34
- package/dist/src/modules/v4/campaign/campaign.repository.d.ts +7 -7
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +14 -15
- package/dist/src/modules/v4/campaign/campaign.service.js +6 -6
- package/dist/src/modules/v4/chain/chain.repository.d.ts +1 -1
- package/dist/src/modules/v4/dynamicData/dynamicData.controller.d.ts +2 -2
- package/dist/src/modules/v4/dynamicData/dynamicData.model.d.ts +2 -58
- package/dist/src/modules/v4/dynamicData/dynamicData.model.js +2 -3
- package/dist/src/modules/v4/dynamicData/dynamicData.service.d.ts +1 -8
- package/dist/src/modules/v4/dynamicData/dynamicData.service.js +4 -13
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +9 -9
- package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +3 -31
- package/dist/src/modules/v4/opportunity/opportunity.model.js +2 -2
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +33 -18
- package/dist/src/modules/v4/opportunity/opportunity.repository.js +9 -1
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +15 -15
- package/dist/src/modules/v4/opportunity/opportunity.service.js +3 -2
- package/dist/src/modules/v4/opportunity/subservices/getErc20Metadata.service.d.ts +1 -1
- package/dist/src/modules/v4/opportunity/subservices/getErc20Metadata.service.js +2 -2
- package/dist/src/modules/v4/opportunity/subservices/getEulerMetadata.service.d.ts +1 -1
- package/dist/src/modules/v4/opportunity/subservices/getEulerMetadata.service.js +3 -2
- package/dist/src/modules/v4/opportunity/validate-id.pipe.js +3 -3
- package/dist/src/modules/v4/protocol/protocol.repository.d.ts +2 -2
- package/dist/src/modules/v4/reward/reward.repository.d.ts +1 -1
- package/dist/src/modules/v4/reward/reward.service.d.ts +8 -8
- package/dist/src/modules/v4/reward/reward.service.js +2 -2
- package/dist/src/modules/v4/router.d.ts +19 -19
- package/dist/src/modules/v4/user/user.controller.d.ts +2 -2
- package/dist/src/utils/decodeCalls.js +9 -1
- package/dist/src/utils/encodeCalls.js +25 -1
- package/dist/src/utils/generateCardName.d.ts +1 -1
- package/dist/src/utils/generateCardName.js +17 -0
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +1 -1
@@ -158,39 +158,6 @@ export const RunStatus: {
|
|
158
158
|
export type RunStatus = (typeof RunStatus)[keyof typeof RunStatus]
|
159
159
|
|
160
160
|
|
161
|
-
export const CampaignType: {
|
162
|
-
INVALID: 'INVALID',
|
163
|
-
ERC20: 'ERC20',
|
164
|
-
CLAMM: 'CLAMM',
|
165
|
-
ERC20_SNAPSHOT: 'ERC20_SNAPSHOT',
|
166
|
-
JSON_AIRDROP: 'JSON_AIRDROP',
|
167
|
-
SILO: 'SILO',
|
168
|
-
RADIANT: 'RADIANT',
|
169
|
-
MORPHO: 'MORPHO',
|
170
|
-
DOLOMITE: 'DOLOMITE',
|
171
|
-
BADGER: 'BADGER',
|
172
|
-
COMPOUND: 'COMPOUND',
|
173
|
-
AJNA: 'AJNA',
|
174
|
-
EULER: 'EULER',
|
175
|
-
UNISWAP_V4: 'UNISWAP_V4',
|
176
|
-
ION: 'ION',
|
177
|
-
EIGENLAYER: 'EIGENLAYER',
|
178
|
-
ERC20TRANSFERS: 'ERC20TRANSFERS',
|
179
|
-
ERC20LOGPROCESSOR: 'ERC20LOGPROCESSOR',
|
180
|
-
ERC20REBASELOGPROCESSOR: 'ERC20REBASELOGPROCESSOR',
|
181
|
-
VEST: 'VEST',
|
182
|
-
ERC20_FIX_APR: 'ERC20_FIX_APR',
|
183
|
-
HYPERDRIVELOGPROCESSOR: 'HYPERDRIVELOGPROCESSOR',
|
184
|
-
HYPERDRIVELOGFIXPROCESSOR: 'HYPERDRIVELOGFIXPROCESSOR',
|
185
|
-
AMBIENTPROCESSOR: 'AMBIENTPROCESSOR',
|
186
|
-
M0: 'M0',
|
187
|
-
MORPHOSUPPLY: 'MORPHOSUPPLY',
|
188
|
-
SYNCSWAP_VAULT: 'SYNCSWAP_VAULT'
|
189
|
-
};
|
190
|
-
|
191
|
-
export type CampaignType = (typeof CampaignType)[keyof typeof CampaignType]
|
192
|
-
|
193
|
-
|
194
161
|
export const OpportunityAction: {
|
195
162
|
POOL: 'POOL',
|
196
163
|
HOLD: 'HOLD',
|
@@ -262,10 +229,6 @@ export type RunStatus = $Enums.RunStatus
|
|
262
229
|
|
263
230
|
export const RunStatus: typeof $Enums.RunStatus
|
264
231
|
|
265
|
-
export type CampaignType = $Enums.CampaignType
|
266
|
-
|
267
|
-
export const CampaignType: typeof $Enums.CampaignType
|
268
|
-
|
269
232
|
export type OpportunityAction = $Enums.OpportunityAction
|
270
233
|
|
271
234
|
export const OpportunityAction: typeof $Enums.OpportunityAction
|
@@ -3744,7 +3707,7 @@ export namespace Prisma {
|
|
3744
3707
|
computeChainId: number | null
|
3745
3708
|
distributionChainId: number | null
|
3746
3709
|
campaignId: string | null
|
3747
|
-
type:
|
3710
|
+
type: string | null
|
3748
3711
|
subType: number | null
|
3749
3712
|
rewardTokenId: string | null
|
3750
3713
|
amount: string | null
|
@@ -3759,7 +3722,7 @@ export namespace Prisma {
|
|
3759
3722
|
computeChainId: number | null
|
3760
3723
|
distributionChainId: number | null
|
3761
3724
|
campaignId: string | null
|
3762
|
-
type:
|
3725
|
+
type: string | null
|
3763
3726
|
subType: number | null
|
3764
3727
|
rewardTokenId: string | null
|
3765
3728
|
amount: string | null
|
@@ -3941,7 +3904,7 @@ export namespace Prisma {
|
|
3941
3904
|
computeChainId: number
|
3942
3905
|
distributionChainId: number
|
3943
3906
|
campaignId: string
|
3944
|
-
type:
|
3907
|
+
type: string
|
3945
3908
|
subType: number | null
|
3946
3909
|
rewardTokenId: string
|
3947
3910
|
amount: string
|
@@ -4104,7 +4067,7 @@ export namespace Prisma {
|
|
4104
4067
|
computeChainId: number
|
4105
4068
|
distributionChainId: number
|
4106
4069
|
campaignId: string
|
4107
|
-
type:
|
4070
|
+
type: string
|
4108
4071
|
subType: number | null
|
4109
4072
|
rewardTokenId: string
|
4110
4073
|
amount: string
|
@@ -4550,7 +4513,7 @@ export namespace Prisma {
|
|
4550
4513
|
readonly computeChainId: FieldRef<"Campaign", 'Int'>
|
4551
4514
|
readonly distributionChainId: FieldRef<"Campaign", 'Int'>
|
4552
4515
|
readonly campaignId: FieldRef<"Campaign", 'String'>
|
4553
|
-
readonly type: FieldRef<"Campaign", '
|
4516
|
+
readonly type: FieldRef<"Campaign", 'String'>
|
4554
4517
|
readonly subType: FieldRef<"Campaign", 'Int'>
|
4555
4518
|
readonly rewardTokenId: FieldRef<"Campaign", 'String'>
|
4556
4519
|
readonly amount: FieldRef<"Campaign", 'String'>
|
@@ -10844,7 +10807,7 @@ export namespace Prisma {
|
|
10844
10807
|
export type OpportunityMinAggregateOutputType = {
|
10845
10808
|
id: string | null
|
10846
10809
|
chainId: number | null
|
10847
|
-
type:
|
10810
|
+
type: string | null
|
10848
10811
|
identifier: string | null
|
10849
10812
|
name: string | null
|
10850
10813
|
depositUrl: string | null
|
@@ -10859,7 +10822,7 @@ export namespace Prisma {
|
|
10859
10822
|
export type OpportunityMaxAggregateOutputType = {
|
10860
10823
|
id: string | null
|
10861
10824
|
chainId: number | null
|
10862
|
-
type:
|
10825
|
+
type: string | null
|
10863
10826
|
identifier: string | null
|
10864
10827
|
name: string | null
|
10865
10828
|
depositUrl: string | null
|
@@ -11039,7 +11002,7 @@ export namespace Prisma {
|
|
11039
11002
|
export type OpportunityGroupByOutputType = {
|
11040
11003
|
id: string
|
11041
11004
|
chainId: number
|
11042
|
-
type:
|
11005
|
+
type: string
|
11043
11006
|
identifier: string
|
11044
11007
|
name: string
|
11045
11008
|
depositUrl: string | null
|
@@ -11184,7 +11147,7 @@ export namespace Prisma {
|
|
11184
11147
|
scalars: $Extensions.GetPayloadResult<{
|
11185
11148
|
id: string
|
11186
11149
|
chainId: number
|
11187
|
-
type:
|
11150
|
+
type: string
|
11188
11151
|
identifier: string
|
11189
11152
|
name: string
|
11190
11153
|
depositUrl: string | null
|
@@ -11628,7 +11591,7 @@ export namespace Prisma {
|
|
11628
11591
|
interface OpportunityFieldRefs {
|
11629
11592
|
readonly id: FieldRef<"Opportunity", 'String'>
|
11630
11593
|
readonly chainId: FieldRef<"Opportunity", 'Int'>
|
11631
|
-
readonly type: FieldRef<"Opportunity", '
|
11594
|
+
readonly type: FieldRef<"Opportunity", 'String'>
|
11632
11595
|
readonly identifier: FieldRef<"Opportunity", 'String'>
|
11633
11596
|
readonly name: FieldRef<"Opportunity", 'String'>
|
11634
11597
|
readonly depositUrl: FieldRef<"Opportunity", 'String'>
|
@@ -31800,6 +31763,7 @@ export namespace Prisma {
|
|
31800
31763
|
export const CampaignOrderByRelevanceFieldEnum: {
|
31801
31764
|
id: 'id',
|
31802
31765
|
campaignId: 'campaignId',
|
31766
|
+
type: 'type',
|
31803
31767
|
rewardTokenId: 'rewardTokenId',
|
31804
31768
|
amount: 'amount',
|
31805
31769
|
opportunityId: 'opportunityId',
|
@@ -31851,6 +31815,7 @@ export namespace Prisma {
|
|
31851
31815
|
|
31852
31816
|
export const OpportunityOrderByRelevanceFieldEnum: {
|
31853
31817
|
id: 'id',
|
31818
|
+
type: 'type',
|
31854
31819
|
identifier: 'identifier',
|
31855
31820
|
name: 'name',
|
31856
31821
|
depositUrl: 'depositUrl',
|
@@ -32056,20 +32021,6 @@ export namespace Prisma {
|
|
32056
32021
|
|
32057
32022
|
|
32058
32023
|
|
32059
|
-
/**
|
32060
|
-
* Reference to a field of type 'CampaignType'
|
32061
|
-
*/
|
32062
|
-
export type EnumCampaignTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'CampaignType'>
|
32063
|
-
|
32064
|
-
|
32065
|
-
|
32066
|
-
/**
|
32067
|
-
* Reference to a field of type 'CampaignType[]'
|
32068
|
-
*/
|
32069
|
-
export type ListEnumCampaignTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'CampaignType[]'>
|
32070
|
-
|
32071
|
-
|
32072
|
-
|
32073
32024
|
/**
|
32074
32025
|
* Reference to a field of type 'BigInt'
|
32075
32026
|
*/
|
@@ -32249,7 +32200,7 @@ export namespace Prisma {
|
|
32249
32200
|
computeChainId?: IntFilter<"Campaign"> | number
|
32250
32201
|
distributionChainId?: IntFilter<"Campaign"> | number
|
32251
32202
|
campaignId?: StringFilter<"Campaign"> | string
|
32252
|
-
type?:
|
32203
|
+
type?: StringFilter<"Campaign"> | string
|
32253
32204
|
subType?: IntNullableFilter<"Campaign"> | number | null
|
32254
32205
|
rewardTokenId?: StringFilter<"Campaign"> | string
|
32255
32206
|
amount?: StringFilter<"Campaign"> | string
|
@@ -32306,7 +32257,7 @@ export namespace Prisma {
|
|
32306
32257
|
computeChainId?: IntFilter<"Campaign"> | number
|
32307
32258
|
distributionChainId?: IntFilter<"Campaign"> | number
|
32308
32259
|
campaignId?: StringFilter<"Campaign"> | string
|
32309
|
-
type?:
|
32260
|
+
type?: StringFilter<"Campaign"> | string
|
32310
32261
|
subType?: IntNullableFilter<"Campaign"> | number | null
|
32311
32262
|
rewardTokenId?: StringFilter<"Campaign"> | string
|
32312
32263
|
amount?: StringFilter<"Campaign"> | string
|
@@ -32356,7 +32307,7 @@ export namespace Prisma {
|
|
32356
32307
|
computeChainId?: IntWithAggregatesFilter<"Campaign"> | number
|
32357
32308
|
distributionChainId?: IntWithAggregatesFilter<"Campaign"> | number
|
32358
32309
|
campaignId?: StringWithAggregatesFilter<"Campaign"> | string
|
32359
|
-
type?:
|
32310
|
+
type?: StringWithAggregatesFilter<"Campaign"> | string
|
32360
32311
|
subType?: IntNullableWithAggregatesFilter<"Campaign"> | number | null
|
32361
32312
|
rewardTokenId?: StringWithAggregatesFilter<"Campaign"> | string
|
32362
32313
|
amount?: StringWithAggregatesFilter<"Campaign"> | string
|
@@ -32674,7 +32625,7 @@ export namespace Prisma {
|
|
32674
32625
|
NOT?: OpportunityWhereInput | OpportunityWhereInput[]
|
32675
32626
|
id?: StringFilter<"Opportunity"> | string
|
32676
32627
|
chainId?: IntFilter<"Opportunity"> | number
|
32677
|
-
type?:
|
32628
|
+
type?: StringFilter<"Opportunity"> | string
|
32678
32629
|
identifier?: StringFilter<"Opportunity"> | string
|
32679
32630
|
name?: StringFilter<"Opportunity"> | string
|
32680
32631
|
depositUrl?: StringNullableFilter<"Opportunity"> | string | null
|
@@ -32727,7 +32678,7 @@ export namespace Prisma {
|
|
32727
32678
|
OR?: OpportunityWhereInput[]
|
32728
32679
|
NOT?: OpportunityWhereInput | OpportunityWhereInput[]
|
32729
32680
|
chainId?: IntFilter<"Opportunity"> | number
|
32730
|
-
type?:
|
32681
|
+
type?: StringFilter<"Opportunity"> | string
|
32731
32682
|
identifier?: StringFilter<"Opportunity"> | string
|
32732
32683
|
name?: StringFilter<"Opportunity"> | string
|
32733
32684
|
depositUrl?: StringNullableFilter<"Opportunity"> | string | null
|
@@ -32775,7 +32726,7 @@ export namespace Prisma {
|
|
32775
32726
|
NOT?: OpportunityScalarWhereWithAggregatesInput | OpportunityScalarWhereWithAggregatesInput[]
|
32776
32727
|
id?: StringWithAggregatesFilter<"Opportunity"> | string
|
32777
32728
|
chainId?: IntWithAggregatesFilter<"Opportunity"> | number
|
32778
|
-
type?:
|
32729
|
+
type?: StringWithAggregatesFilter<"Opportunity"> | string
|
32779
32730
|
identifier?: StringWithAggregatesFilter<"Opportunity"> | string
|
32780
32731
|
name?: StringWithAggregatesFilter<"Opportunity"> | string
|
32781
32732
|
depositUrl?: StringNullableWithAggregatesFilter<"Opportunity"> | string | null
|
@@ -33899,7 +33850,7 @@ export namespace Prisma {
|
|
33899
33850
|
export type CampaignCreateInput = {
|
33900
33851
|
id: string
|
33901
33852
|
campaignId: string
|
33902
|
-
type:
|
33853
|
+
type: string
|
33903
33854
|
subType?: number | null
|
33904
33855
|
amount: string
|
33905
33856
|
startTimestamp: bigint | number
|
@@ -33922,7 +33873,7 @@ export namespace Prisma {
|
|
33922
33873
|
computeChainId: number
|
33923
33874
|
distributionChainId: number
|
33924
33875
|
campaignId: string
|
33925
|
-
type:
|
33876
|
+
type: string
|
33926
33877
|
subType?: number | null
|
33927
33878
|
rewardTokenId: string
|
33928
33879
|
amount: string
|
@@ -33941,7 +33892,7 @@ export namespace Prisma {
|
|
33941
33892
|
export type CampaignUpdateInput = {
|
33942
33893
|
id?: StringFieldUpdateOperationsInput | string
|
33943
33894
|
campaignId?: StringFieldUpdateOperationsInput | string
|
33944
|
-
type?:
|
33895
|
+
type?: StringFieldUpdateOperationsInput | string
|
33945
33896
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
33946
33897
|
amount?: StringFieldUpdateOperationsInput | string
|
33947
33898
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -33964,7 +33915,7 @@ export namespace Prisma {
|
|
33964
33915
|
computeChainId?: IntFieldUpdateOperationsInput | number
|
33965
33916
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
33966
33917
|
campaignId?: StringFieldUpdateOperationsInput | string
|
33967
|
-
type?:
|
33918
|
+
type?: StringFieldUpdateOperationsInput | string
|
33968
33919
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
33969
33920
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
33970
33921
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -33985,7 +33936,7 @@ export namespace Prisma {
|
|
33985
33936
|
computeChainId: number
|
33986
33937
|
distributionChainId: number
|
33987
33938
|
campaignId: string
|
33988
|
-
type:
|
33939
|
+
type: string
|
33989
33940
|
subType?: number | null
|
33990
33941
|
rewardTokenId: string
|
33991
33942
|
amount: string
|
@@ -33999,7 +33950,7 @@ export namespace Prisma {
|
|
33999
33950
|
export type CampaignUpdateManyMutationInput = {
|
34000
33951
|
id?: StringFieldUpdateOperationsInput | string
|
34001
33952
|
campaignId?: StringFieldUpdateOperationsInput | string
|
34002
|
-
type?:
|
33953
|
+
type?: StringFieldUpdateOperationsInput | string
|
34003
33954
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
34004
33955
|
amount?: StringFieldUpdateOperationsInput | string
|
34005
33956
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -34012,7 +33963,7 @@ export namespace Prisma {
|
|
34012
33963
|
computeChainId?: IntFieldUpdateOperationsInput | number
|
34013
33964
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
34014
33965
|
campaignId?: StringFieldUpdateOperationsInput | string
|
34015
|
-
type?:
|
33966
|
+
type?: StringFieldUpdateOperationsInput | string
|
34016
33967
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
34017
33968
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
34018
33969
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -34308,7 +34259,7 @@ export namespace Prisma {
|
|
34308
34259
|
|
34309
34260
|
export type OpportunityCreateInput = {
|
34310
34261
|
id: string
|
34311
|
-
type:
|
34262
|
+
type: string
|
34312
34263
|
identifier: string
|
34313
34264
|
name: string
|
34314
34265
|
depositUrl?: string | null
|
@@ -34331,7 +34282,7 @@ export namespace Prisma {
|
|
34331
34282
|
export type OpportunityUncheckedCreateInput = {
|
34332
34283
|
id: string
|
34333
34284
|
chainId: number
|
34334
|
-
type:
|
34285
|
+
type: string
|
34335
34286
|
identifier: string
|
34336
34287
|
name: string
|
34337
34288
|
depositUrl?: string | null
|
@@ -34352,7 +34303,7 @@ export namespace Prisma {
|
|
34352
34303
|
|
34353
34304
|
export type OpportunityUpdateInput = {
|
34354
34305
|
id?: StringFieldUpdateOperationsInput | string
|
34355
|
-
type?:
|
34306
|
+
type?: StringFieldUpdateOperationsInput | string
|
34356
34307
|
identifier?: StringFieldUpdateOperationsInput | string
|
34357
34308
|
name?: StringFieldUpdateOperationsInput | string
|
34358
34309
|
depositUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -34375,7 +34326,7 @@ export namespace Prisma {
|
|
34375
34326
|
export type OpportunityUncheckedUpdateInput = {
|
34376
34327
|
id?: StringFieldUpdateOperationsInput | string
|
34377
34328
|
chainId?: IntFieldUpdateOperationsInput | number
|
34378
|
-
type?:
|
34329
|
+
type?: StringFieldUpdateOperationsInput | string
|
34379
34330
|
identifier?: StringFieldUpdateOperationsInput | string
|
34380
34331
|
name?: StringFieldUpdateOperationsInput | string
|
34381
34332
|
depositUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -34397,7 +34348,7 @@ export namespace Prisma {
|
|
34397
34348
|
export type OpportunityCreateManyInput = {
|
34398
34349
|
id: string
|
34399
34350
|
chainId: number
|
34400
|
-
type:
|
34351
|
+
type: string
|
34401
34352
|
identifier: string
|
34402
34353
|
name: string
|
34403
34354
|
depositUrl?: string | null
|
@@ -34412,7 +34363,7 @@ export namespace Prisma {
|
|
34412
34363
|
|
34413
34364
|
export type OpportunityUpdateManyMutationInput = {
|
34414
34365
|
id?: StringFieldUpdateOperationsInput | string
|
34415
|
-
type?:
|
34366
|
+
type?: StringFieldUpdateOperationsInput | string
|
34416
34367
|
identifier?: StringFieldUpdateOperationsInput | string
|
34417
34368
|
name?: StringFieldUpdateOperationsInput | string
|
34418
34369
|
depositUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -34427,7 +34378,7 @@ export namespace Prisma {
|
|
34427
34378
|
export type OpportunityUncheckedUpdateManyInput = {
|
34428
34379
|
id?: StringFieldUpdateOperationsInput | string
|
34429
34380
|
chainId?: IntFieldUpdateOperationsInput | number
|
34430
|
-
type?:
|
34381
|
+
type?: StringFieldUpdateOperationsInput | string
|
34431
34382
|
identifier?: StringFieldUpdateOperationsInput | string
|
34432
34383
|
name?: StringFieldUpdateOperationsInput | string
|
34433
34384
|
depositUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -35532,13 +35483,6 @@ export namespace Prisma {
|
|
35532
35483
|
not?: NestedIntFilter<$PrismaModel> | number
|
35533
35484
|
}
|
35534
35485
|
|
35535
|
-
export type EnumCampaignTypeFilter<$PrismaModel = never> = {
|
35536
|
-
equals?: $Enums.CampaignType | EnumCampaignTypeFieldRefInput<$PrismaModel>
|
35537
|
-
in?: $Enums.CampaignType[] | ListEnumCampaignTypeFieldRefInput<$PrismaModel>
|
35538
|
-
notIn?: $Enums.CampaignType[] | ListEnumCampaignTypeFieldRefInput<$PrismaModel>
|
35539
|
-
not?: NestedEnumCampaignTypeFilter<$PrismaModel> | $Enums.CampaignType
|
35540
|
-
}
|
35541
|
-
|
35542
35486
|
export type IntNullableFilter<$PrismaModel = never> = {
|
35543
35487
|
equals?: number | IntFieldRefInput<$PrismaModel> | null
|
35544
35488
|
in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
|
@@ -35766,16 +35710,6 @@ export namespace Prisma {
|
|
35766
35710
|
_max?: NestedIntFilter<$PrismaModel>
|
35767
35711
|
}
|
35768
35712
|
|
35769
|
-
export type EnumCampaignTypeWithAggregatesFilter<$PrismaModel = never> = {
|
35770
|
-
equals?: $Enums.CampaignType | EnumCampaignTypeFieldRefInput<$PrismaModel>
|
35771
|
-
in?: $Enums.CampaignType[] | ListEnumCampaignTypeFieldRefInput<$PrismaModel>
|
35772
|
-
notIn?: $Enums.CampaignType[] | ListEnumCampaignTypeFieldRefInput<$PrismaModel>
|
35773
|
-
not?: NestedEnumCampaignTypeWithAggregatesFilter<$PrismaModel> | $Enums.CampaignType
|
35774
|
-
_count?: NestedIntFilter<$PrismaModel>
|
35775
|
-
_min?: NestedEnumCampaignTypeFilter<$PrismaModel>
|
35776
|
-
_max?: NestedEnumCampaignTypeFilter<$PrismaModel>
|
35777
|
-
}
|
35778
|
-
|
35779
35713
|
export type IntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
35780
35714
|
equals?: number | IntFieldRefInput<$PrismaModel> | null
|
35781
35715
|
in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
|
@@ -36274,7 +36208,7 @@ export namespace Prisma {
|
|
36274
36208
|
|
36275
36209
|
export type OpportunityChainIdTypeIdentifierCompoundUniqueInput = {
|
36276
36210
|
chainId: number
|
36277
|
-
type:
|
36211
|
+
type: string
|
36278
36212
|
identifier: string
|
36279
36213
|
}
|
36280
36214
|
|
@@ -37431,10 +37365,6 @@ export namespace Prisma {
|
|
37431
37365
|
set?: string
|
37432
37366
|
}
|
37433
37367
|
|
37434
|
-
export type EnumCampaignTypeFieldUpdateOperationsInput = {
|
37435
|
-
set?: $Enums.CampaignType
|
37436
|
-
}
|
37437
|
-
|
37438
37368
|
export type NullableIntFieldUpdateOperationsInput = {
|
37439
37369
|
set?: number | null
|
37440
37370
|
increment?: number
|
@@ -39489,13 +39419,6 @@ export namespace Prisma {
|
|
39489
39419
|
not?: NestedIntFilter<$PrismaModel> | number
|
39490
39420
|
}
|
39491
39421
|
|
39492
|
-
export type NestedEnumCampaignTypeFilter<$PrismaModel = never> = {
|
39493
|
-
equals?: $Enums.CampaignType | EnumCampaignTypeFieldRefInput<$PrismaModel>
|
39494
|
-
in?: $Enums.CampaignType[] | ListEnumCampaignTypeFieldRefInput<$PrismaModel>
|
39495
|
-
notIn?: $Enums.CampaignType[] | ListEnumCampaignTypeFieldRefInput<$PrismaModel>
|
39496
|
-
not?: NestedEnumCampaignTypeFilter<$PrismaModel> | $Enums.CampaignType
|
39497
|
-
}
|
39498
|
-
|
39499
39422
|
export type NestedIntNullableFilter<$PrismaModel = never> = {
|
39500
39423
|
equals?: number | IntFieldRefInput<$PrismaModel> | null
|
39501
39424
|
in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
|
@@ -39563,16 +39486,6 @@ export namespace Prisma {
|
|
39563
39486
|
not?: NestedFloatFilter<$PrismaModel> | number
|
39564
39487
|
}
|
39565
39488
|
|
39566
|
-
export type NestedEnumCampaignTypeWithAggregatesFilter<$PrismaModel = never> = {
|
39567
|
-
equals?: $Enums.CampaignType | EnumCampaignTypeFieldRefInput<$PrismaModel>
|
39568
|
-
in?: $Enums.CampaignType[] | ListEnumCampaignTypeFieldRefInput<$PrismaModel>
|
39569
|
-
notIn?: $Enums.CampaignType[] | ListEnumCampaignTypeFieldRefInput<$PrismaModel>
|
39570
|
-
not?: NestedEnumCampaignTypeWithAggregatesFilter<$PrismaModel> | $Enums.CampaignType
|
39571
|
-
_count?: NestedIntFilter<$PrismaModel>
|
39572
|
-
_min?: NestedEnumCampaignTypeFilter<$PrismaModel>
|
39573
|
-
_max?: NestedEnumCampaignTypeFilter<$PrismaModel>
|
39574
|
-
}
|
39575
|
-
|
39576
39489
|
export type NestedIntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
39577
39490
|
equals?: number | IntFieldRefInput<$PrismaModel> | null
|
39578
39491
|
in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
|
@@ -40004,7 +39917,7 @@ export namespace Prisma {
|
|
40004
39917
|
|
40005
39918
|
export type OpportunityCreateWithoutCampaignsInput = {
|
40006
39919
|
id: string
|
40007
|
-
type:
|
39920
|
+
type: string
|
40008
39921
|
identifier: string
|
40009
39922
|
name: string
|
40010
39923
|
depositUrl?: string | null
|
@@ -40026,7 +39939,7 @@ export namespace Prisma {
|
|
40026
39939
|
export type OpportunityUncheckedCreateWithoutCampaignsInput = {
|
40027
39940
|
id: string
|
40028
39941
|
chainId: number
|
40029
|
-
type:
|
39942
|
+
type: string
|
40030
39943
|
identifier: string
|
40031
39944
|
name: string
|
40032
39945
|
depositUrl?: string | null
|
@@ -40327,7 +40240,7 @@ export namespace Prisma {
|
|
40327
40240
|
|
40328
40241
|
export type OpportunityUpdateWithoutCampaignsInput = {
|
40329
40242
|
id?: StringFieldUpdateOperationsInput | string
|
40330
|
-
type?:
|
40243
|
+
type?: StringFieldUpdateOperationsInput | string
|
40331
40244
|
identifier?: StringFieldUpdateOperationsInput | string
|
40332
40245
|
name?: StringFieldUpdateOperationsInput | string
|
40333
40246
|
depositUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -40349,7 +40262,7 @@ export namespace Prisma {
|
|
40349
40262
|
export type OpportunityUncheckedUpdateWithoutCampaignsInput = {
|
40350
40263
|
id?: StringFieldUpdateOperationsInput | string
|
40351
40264
|
chainId?: IntFieldUpdateOperationsInput | number
|
40352
|
-
type?:
|
40265
|
+
type?: StringFieldUpdateOperationsInput | string
|
40353
40266
|
identifier?: StringFieldUpdateOperationsInput | string
|
40354
40267
|
name?: StringFieldUpdateOperationsInput | string
|
40355
40268
|
depositUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -40536,7 +40449,7 @@ export namespace Prisma {
|
|
40536
40449
|
export type CampaignCreateWithoutCampaignStatusInput = {
|
40537
40450
|
id: string
|
40538
40451
|
campaignId: string
|
40539
|
-
type:
|
40452
|
+
type: string
|
40540
40453
|
subType?: number | null
|
40541
40454
|
amount: string
|
40542
40455
|
startTimestamp: bigint | number
|
@@ -40558,7 +40471,7 @@ export namespace Prisma {
|
|
40558
40471
|
computeChainId: number
|
40559
40472
|
distributionChainId: number
|
40560
40473
|
campaignId: string
|
40561
|
-
type:
|
40474
|
+
type: string
|
40562
40475
|
subType?: number | null
|
40563
40476
|
rewardTokenId: string
|
40564
40477
|
amount: string
|
@@ -40592,7 +40505,7 @@ export namespace Prisma {
|
|
40592
40505
|
export type CampaignUpdateWithoutCampaignStatusInput = {
|
40593
40506
|
id?: StringFieldUpdateOperationsInput | string
|
40594
40507
|
campaignId?: StringFieldUpdateOperationsInput | string
|
40595
|
-
type?:
|
40508
|
+
type?: StringFieldUpdateOperationsInput | string
|
40596
40509
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
40597
40510
|
amount?: StringFieldUpdateOperationsInput | string
|
40598
40511
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -40614,7 +40527,7 @@ export namespace Prisma {
|
|
40614
40527
|
computeChainId?: IntFieldUpdateOperationsInput | number
|
40615
40528
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
40616
40529
|
campaignId?: StringFieldUpdateOperationsInput | string
|
40617
|
-
type?:
|
40530
|
+
type?: StringFieldUpdateOperationsInput | string
|
40618
40531
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
40619
40532
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
40620
40533
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -40632,7 +40545,7 @@ export namespace Prisma {
|
|
40632
40545
|
export type CampaignCreateWithoutCampaignEngineValuesInput = {
|
40633
40546
|
id: string
|
40634
40547
|
campaignId: string
|
40635
|
-
type:
|
40548
|
+
type: string
|
40636
40549
|
subType?: number | null
|
40637
40550
|
amount: string
|
40638
40551
|
startTimestamp: bigint | number
|
@@ -40654,7 +40567,7 @@ export namespace Prisma {
|
|
40654
40567
|
computeChainId: number
|
40655
40568
|
distributionChainId: number
|
40656
40569
|
campaignId: string
|
40657
|
-
type:
|
40570
|
+
type: string
|
40658
40571
|
subType?: number | null
|
40659
40572
|
rewardTokenId: string
|
40660
40573
|
amount: string
|
@@ -40688,7 +40601,7 @@ export namespace Prisma {
|
|
40688
40601
|
export type CampaignUpdateWithoutCampaignEngineValuesInput = {
|
40689
40602
|
id?: StringFieldUpdateOperationsInput | string
|
40690
40603
|
campaignId?: StringFieldUpdateOperationsInput | string
|
40691
|
-
type?:
|
40604
|
+
type?: StringFieldUpdateOperationsInput | string
|
40692
40605
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
40693
40606
|
amount?: StringFieldUpdateOperationsInput | string
|
40694
40607
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -40710,7 +40623,7 @@ export namespace Prisma {
|
|
40710
40623
|
computeChainId?: IntFieldUpdateOperationsInput | number
|
40711
40624
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
40712
40625
|
campaignId?: StringFieldUpdateOperationsInput | string
|
40713
|
-
type?:
|
40626
|
+
type?: StringFieldUpdateOperationsInput | string
|
40714
40627
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
40715
40628
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
40716
40629
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -40728,7 +40641,7 @@ export namespace Prisma {
|
|
40728
40641
|
export type CampaignCreateWithoutUserComputedValueInput = {
|
40729
40642
|
id: string
|
40730
40643
|
campaignId: string
|
40731
|
-
type:
|
40644
|
+
type: string
|
40732
40645
|
subType?: number | null
|
40733
40646
|
amount: string
|
40734
40647
|
startTimestamp: bigint | number
|
@@ -40750,7 +40663,7 @@ export namespace Prisma {
|
|
40750
40663
|
computeChainId: number
|
40751
40664
|
distributionChainId: number
|
40752
40665
|
campaignId: string
|
40753
|
-
type:
|
40666
|
+
type: string
|
40754
40667
|
subType?: number | null
|
40755
40668
|
rewardTokenId: string
|
40756
40669
|
amount: string
|
@@ -40807,7 +40720,7 @@ export namespace Prisma {
|
|
40807
40720
|
export type CampaignUpdateWithoutUserComputedValueInput = {
|
40808
40721
|
id?: StringFieldUpdateOperationsInput | string
|
40809
40722
|
campaignId?: StringFieldUpdateOperationsInput | string
|
40810
|
-
type?:
|
40723
|
+
type?: StringFieldUpdateOperationsInput | string
|
40811
40724
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
40812
40725
|
amount?: StringFieldUpdateOperationsInput | string
|
40813
40726
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -40829,7 +40742,7 @@ export namespace Prisma {
|
|
40829
40742
|
computeChainId?: IntFieldUpdateOperationsInput | number
|
40830
40743
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
40831
40744
|
campaignId?: StringFieldUpdateOperationsInput | string
|
40832
|
-
type?:
|
40745
|
+
type?: StringFieldUpdateOperationsInput | string
|
40833
40746
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
40834
40747
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
40835
40748
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -40898,7 +40811,7 @@ export namespace Prisma {
|
|
40898
40811
|
export type CampaignCreateWithoutComputeChainInput = {
|
40899
40812
|
id: string
|
40900
40813
|
campaignId: string
|
40901
|
-
type:
|
40814
|
+
type: string
|
40902
40815
|
subType?: number | null
|
40903
40816
|
amount: string
|
40904
40817
|
startTimestamp: bigint | number
|
@@ -40919,7 +40832,7 @@ export namespace Prisma {
|
|
40919
40832
|
id: string
|
40920
40833
|
distributionChainId: number
|
40921
40834
|
campaignId: string
|
40922
|
-
type:
|
40835
|
+
type: string
|
40923
40836
|
subType?: number | null
|
40924
40837
|
rewardTokenId: string
|
40925
40838
|
amount: string
|
@@ -40948,7 +40861,7 @@ export namespace Prisma {
|
|
40948
40861
|
export type CampaignCreateWithoutDistributionChainInput = {
|
40949
40862
|
id: string
|
40950
40863
|
campaignId: string
|
40951
|
-
type:
|
40864
|
+
type: string
|
40952
40865
|
subType?: number | null
|
40953
40866
|
amount: string
|
40954
40867
|
startTimestamp: bigint | number
|
@@ -40969,7 +40882,7 @@ export namespace Prisma {
|
|
40969
40882
|
id: string
|
40970
40883
|
computeChainId: number
|
40971
40884
|
campaignId: string
|
40972
|
-
type:
|
40885
|
+
type: string
|
40973
40886
|
subType?: number | null
|
40974
40887
|
rewardTokenId: string
|
40975
40888
|
amount: string
|
@@ -41043,7 +40956,7 @@ export namespace Prisma {
|
|
41043
40956
|
|
41044
40957
|
export type OpportunityCreateWithoutChainInput = {
|
41045
40958
|
id: string
|
41046
|
-
type:
|
40959
|
+
type: string
|
41047
40960
|
identifier: string
|
41048
40961
|
name: string
|
41049
40962
|
depositUrl?: string | null
|
@@ -41064,7 +40977,7 @@ export namespace Prisma {
|
|
41064
40977
|
|
41065
40978
|
export type OpportunityUncheckedCreateWithoutChainInput = {
|
41066
40979
|
id: string
|
41067
|
-
type:
|
40980
|
+
type: string
|
41068
40981
|
identifier: string
|
41069
40982
|
name: string
|
41070
40983
|
depositUrl?: string | null
|
@@ -41227,7 +41140,7 @@ export namespace Prisma {
|
|
41227
41140
|
computeChainId?: IntFilter<"Campaign"> | number
|
41228
41141
|
distributionChainId?: IntFilter<"Campaign"> | number
|
41229
41142
|
campaignId?: StringFilter<"Campaign"> | string
|
41230
|
-
type?:
|
41143
|
+
type?: StringFilter<"Campaign"> | string
|
41231
41144
|
subType?: IntNullableFilter<"Campaign"> | number | null
|
41232
41145
|
rewardTokenId?: StringFilter<"Campaign"> | string
|
41233
41146
|
amount?: StringFilter<"Campaign"> | string
|
@@ -41309,7 +41222,7 @@ export namespace Prisma {
|
|
41309
41222
|
NOT?: OpportunityScalarWhereInput | OpportunityScalarWhereInput[]
|
41310
41223
|
id?: StringFilter<"Opportunity"> | string
|
41311
41224
|
chainId?: IntFilter<"Opportunity"> | number
|
41312
|
-
type?:
|
41225
|
+
type?: StringFilter<"Opportunity"> | string
|
41313
41226
|
identifier?: StringFilter<"Opportunity"> | string
|
41314
41227
|
name?: StringFilter<"Opportunity"> | string
|
41315
41228
|
depositUrl?: StringNullableFilter<"Opportunity"> | string | null
|
@@ -41551,7 +41464,7 @@ export namespace Prisma {
|
|
41551
41464
|
export type CampaignCreateWithoutOpportunityInput = {
|
41552
41465
|
id: string
|
41553
41466
|
campaignId: string
|
41554
|
-
type:
|
41467
|
+
type: string
|
41555
41468
|
subType?: number | null
|
41556
41469
|
amount: string
|
41557
41470
|
startTimestamp: bigint | number
|
@@ -41573,7 +41486,7 @@ export namespace Prisma {
|
|
41573
41486
|
computeChainId: number
|
41574
41487
|
distributionChainId: number
|
41575
41488
|
campaignId: string
|
41576
|
-
type:
|
41489
|
+
type: string
|
41577
41490
|
subType?: number | null
|
41578
41491
|
rewardTokenId: string
|
41579
41492
|
amount: string
|
@@ -41934,7 +41847,7 @@ export namespace Prisma {
|
|
41934
41847
|
|
41935
41848
|
export type OpportunityCreateWithoutMainProtocolInput = {
|
41936
41849
|
id: string
|
41937
|
-
type:
|
41850
|
+
type: string
|
41938
41851
|
identifier: string
|
41939
41852
|
name: string
|
41940
41853
|
depositUrl?: string | null
|
@@ -41956,7 +41869,7 @@ export namespace Prisma {
|
|
41956
41869
|
export type OpportunityUncheckedCreateWithoutMainProtocolInput = {
|
41957
41870
|
id: string
|
41958
41871
|
chainId: number
|
41959
|
-
type:
|
41872
|
+
type: string
|
41960
41873
|
identifier: string
|
41961
41874
|
name: string
|
41962
41875
|
depositUrl?: string | null
|
@@ -41986,7 +41899,7 @@ export namespace Prisma {
|
|
41986
41899
|
|
41987
41900
|
export type OpportunityCreateWithoutProtocolsInput = {
|
41988
41901
|
id: string
|
41989
|
-
type:
|
41902
|
+
type: string
|
41990
41903
|
identifier: string
|
41991
41904
|
name: string
|
41992
41905
|
depositUrl?: string | null
|
@@ -42008,7 +41921,7 @@ export namespace Prisma {
|
|
42008
41921
|
export type OpportunityUncheckedCreateWithoutProtocolsInput = {
|
42009
41922
|
id: string
|
42010
41923
|
chainId: number
|
42011
|
-
type:
|
41924
|
+
type: string
|
42012
41925
|
identifier: string
|
42013
41926
|
name: string
|
42014
41927
|
depositUrl?: string | null
|
@@ -42141,7 +42054,7 @@ export namespace Prisma {
|
|
42141
42054
|
|
42142
42055
|
export type OpportunityCreateWithoutTokensInput = {
|
42143
42056
|
id: string
|
42144
|
-
type:
|
42057
|
+
type: string
|
42145
42058
|
identifier: string
|
42146
42059
|
name: string
|
42147
42060
|
depositUrl?: string | null
|
@@ -42163,7 +42076,7 @@ export namespace Prisma {
|
|
42163
42076
|
export type OpportunityUncheckedCreateWithoutTokensInput = {
|
42164
42077
|
id: string
|
42165
42078
|
chainId: number
|
42166
|
-
type:
|
42079
|
+
type: string
|
42167
42080
|
identifier: string
|
42168
42081
|
name: string
|
42169
42082
|
depositUrl?: string | null
|
@@ -42189,7 +42102,7 @@ export namespace Prisma {
|
|
42189
42102
|
export type CampaignCreateWithoutRewardTokenInput = {
|
42190
42103
|
id: string
|
42191
42104
|
campaignId: string
|
42192
|
-
type:
|
42105
|
+
type: string
|
42193
42106
|
subType?: number | null
|
42194
42107
|
amount: string
|
42195
42108
|
startTimestamp: bigint | number
|
@@ -42211,7 +42124,7 @@ export namespace Prisma {
|
|
42211
42124
|
computeChainId: number
|
42212
42125
|
distributionChainId: number
|
42213
42126
|
campaignId: string
|
42214
|
-
type:
|
42127
|
+
type: string
|
42215
42128
|
subType?: number | null
|
42216
42129
|
amount: string
|
42217
42130
|
opportunityId: string
|
@@ -42492,7 +42405,7 @@ export namespace Prisma {
|
|
42492
42405
|
|
42493
42406
|
export type OpportunityCreateWithoutAprRecordsInput = {
|
42494
42407
|
id: string
|
42495
|
-
type:
|
42408
|
+
type: string
|
42496
42409
|
identifier: string
|
42497
42410
|
name: string
|
42498
42411
|
depositUrl?: string | null
|
@@ -42514,7 +42427,7 @@ export namespace Prisma {
|
|
42514
42427
|
export type OpportunityUncheckedCreateWithoutAprRecordsInput = {
|
42515
42428
|
id: string
|
42516
42429
|
chainId: number
|
42517
|
-
type:
|
42430
|
+
type: string
|
42518
42431
|
identifier: string
|
42519
42432
|
name: string
|
42520
42433
|
depositUrl?: string | null
|
@@ -42577,7 +42490,7 @@ export namespace Prisma {
|
|
42577
42490
|
|
42578
42491
|
export type OpportunityUpdateWithoutAprRecordsInput = {
|
42579
42492
|
id?: StringFieldUpdateOperationsInput | string
|
42580
|
-
type?:
|
42493
|
+
type?: StringFieldUpdateOperationsInput | string
|
42581
42494
|
identifier?: StringFieldUpdateOperationsInput | string
|
42582
42495
|
name?: StringFieldUpdateOperationsInput | string
|
42583
42496
|
depositUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -42599,7 +42512,7 @@ export namespace Prisma {
|
|
42599
42512
|
export type OpportunityUncheckedUpdateWithoutAprRecordsInput = {
|
42600
42513
|
id?: StringFieldUpdateOperationsInput | string
|
42601
42514
|
chainId?: IntFieldUpdateOperationsInput | number
|
42602
|
-
type?:
|
42515
|
+
type?: StringFieldUpdateOperationsInput | string
|
42603
42516
|
identifier?: StringFieldUpdateOperationsInput | string
|
42604
42517
|
name?: StringFieldUpdateOperationsInput | string
|
42605
42518
|
depositUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -42686,7 +42599,7 @@ export namespace Prisma {
|
|
42686
42599
|
|
42687
42600
|
export type OpportunityCreateWithoutTvlRecordsInput = {
|
42688
42601
|
id: string
|
42689
|
-
type:
|
42602
|
+
type: string
|
42690
42603
|
identifier: string
|
42691
42604
|
name: string
|
42692
42605
|
depositUrl?: string | null
|
@@ -42708,7 +42621,7 @@ export namespace Prisma {
|
|
42708
42621
|
export type OpportunityUncheckedCreateWithoutTvlRecordsInput = {
|
42709
42622
|
id: string
|
42710
42623
|
chainId: number
|
42711
|
-
type:
|
42624
|
+
type: string
|
42712
42625
|
identifier: string
|
42713
42626
|
name: string
|
42714
42627
|
depositUrl?: string | null
|
@@ -42771,7 +42684,7 @@ export namespace Prisma {
|
|
42771
42684
|
|
42772
42685
|
export type OpportunityUpdateWithoutTvlRecordsInput = {
|
42773
42686
|
id?: StringFieldUpdateOperationsInput | string
|
42774
|
-
type?:
|
42687
|
+
type?: StringFieldUpdateOperationsInput | string
|
42775
42688
|
identifier?: StringFieldUpdateOperationsInput | string
|
42776
42689
|
name?: StringFieldUpdateOperationsInput | string
|
42777
42690
|
depositUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -42793,7 +42706,7 @@ export namespace Prisma {
|
|
42793
42706
|
export type OpportunityUncheckedUpdateWithoutTvlRecordsInput = {
|
42794
42707
|
id?: StringFieldUpdateOperationsInput | string
|
42795
42708
|
chainId?: IntFieldUpdateOperationsInput | number
|
42796
|
-
type?:
|
42709
|
+
type?: StringFieldUpdateOperationsInput | string
|
42797
42710
|
identifier?: StringFieldUpdateOperationsInput | string
|
42798
42711
|
name?: StringFieldUpdateOperationsInput | string
|
42799
42712
|
depositUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -42878,7 +42791,7 @@ export namespace Prisma {
|
|
42878
42791
|
|
42879
42792
|
export type OpportunityCreateWithoutDailyRewardsRecordsInput = {
|
42880
42793
|
id: string
|
42881
|
-
type:
|
42794
|
+
type: string
|
42882
42795
|
identifier: string
|
42883
42796
|
name: string
|
42884
42797
|
depositUrl?: string | null
|
@@ -42900,7 +42813,7 @@ export namespace Prisma {
|
|
42900
42813
|
export type OpportunityUncheckedCreateWithoutDailyRewardsRecordsInput = {
|
42901
42814
|
id: string
|
42902
42815
|
chainId: number
|
42903
|
-
type:
|
42816
|
+
type: string
|
42904
42817
|
identifier: string
|
42905
42818
|
name: string
|
42906
42819
|
depositUrl?: string | null
|
@@ -42952,7 +42865,7 @@ export namespace Prisma {
|
|
42952
42865
|
|
42953
42866
|
export type OpportunityUpdateWithoutDailyRewardsRecordsInput = {
|
42954
42867
|
id?: StringFieldUpdateOperationsInput | string
|
42955
|
-
type?:
|
42868
|
+
type?: StringFieldUpdateOperationsInput | string
|
42956
42869
|
identifier?: StringFieldUpdateOperationsInput | string
|
42957
42870
|
name?: StringFieldUpdateOperationsInput | string
|
42958
42871
|
depositUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -42974,7 +42887,7 @@ export namespace Prisma {
|
|
42974
42887
|
export type OpportunityUncheckedUpdateWithoutDailyRewardsRecordsInput = {
|
42975
42888
|
id?: StringFieldUpdateOperationsInput | string
|
42976
42889
|
chainId?: IntFieldUpdateOperationsInput | number
|
42977
|
-
type?:
|
42890
|
+
type?: StringFieldUpdateOperationsInput | string
|
42978
42891
|
identifier?: StringFieldUpdateOperationsInput | string
|
42979
42892
|
name?: StringFieldUpdateOperationsInput | string
|
42980
42893
|
depositUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -42995,7 +42908,7 @@ export namespace Prisma {
|
|
42995
42908
|
export type CampaignCreateWithoutDailyRewardsBreakdownInput = {
|
42996
42909
|
id: string
|
42997
42910
|
campaignId: string
|
42998
|
-
type:
|
42911
|
+
type: string
|
42999
42912
|
subType?: number | null
|
43000
42913
|
amount: string
|
43001
42914
|
startTimestamp: bigint | number
|
@@ -43017,7 +42930,7 @@ export namespace Prisma {
|
|
43017
42930
|
computeChainId: number
|
43018
42931
|
distributionChainId: number
|
43019
42932
|
campaignId: string
|
43020
|
-
type:
|
42933
|
+
type: string
|
43021
42934
|
subType?: number | null
|
43022
42935
|
rewardTokenId: string
|
43023
42936
|
amount: string
|
@@ -43070,7 +42983,7 @@ export namespace Prisma {
|
|
43070
42983
|
export type CampaignUpdateWithoutDailyRewardsBreakdownInput = {
|
43071
42984
|
id?: StringFieldUpdateOperationsInput | string
|
43072
42985
|
campaignId?: StringFieldUpdateOperationsInput | string
|
43073
|
-
type?:
|
42986
|
+
type?: StringFieldUpdateOperationsInput | string
|
43074
42987
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
43075
42988
|
amount?: StringFieldUpdateOperationsInput | string
|
43076
42989
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -43092,7 +43005,7 @@ export namespace Prisma {
|
|
43092
43005
|
computeChainId?: IntFieldUpdateOperationsInput | number
|
43093
43006
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
43094
43007
|
campaignId?: StringFieldUpdateOperationsInput | string
|
43095
|
-
type?:
|
43008
|
+
type?: StringFieldUpdateOperationsInput | string
|
43096
43009
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
43097
43010
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
43098
43011
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -43193,7 +43106,7 @@ export namespace Prisma {
|
|
43193
43106
|
export type CampaignCreateWithoutCreatorInput = {
|
43194
43107
|
id: string
|
43195
43108
|
campaignId: string
|
43196
|
-
type:
|
43109
|
+
type: string
|
43197
43110
|
subType?: number | null
|
43198
43111
|
amount: string
|
43199
43112
|
startTimestamp: bigint | number
|
@@ -43215,7 +43128,7 @@ export namespace Prisma {
|
|
43215
43128
|
computeChainId: number
|
43216
43129
|
distributionChainId: number
|
43217
43130
|
campaignId: string
|
43218
|
-
type:
|
43131
|
+
type: string
|
43219
43132
|
subType?: number | null
|
43220
43133
|
rewardTokenId: string
|
43221
43134
|
amount: string
|
@@ -43706,7 +43619,7 @@ export namespace Prisma {
|
|
43706
43619
|
export type CampaignCreateWithoutRewardBreakdownInput = {
|
43707
43620
|
id: string
|
43708
43621
|
campaignId: string
|
43709
|
-
type:
|
43622
|
+
type: string
|
43710
43623
|
subType?: number | null
|
43711
43624
|
amount: string
|
43712
43625
|
startTimestamp: bigint | number
|
@@ -43728,7 +43641,7 @@ export namespace Prisma {
|
|
43728
43641
|
computeChainId: number
|
43729
43642
|
distributionChainId: number
|
43730
43643
|
campaignId: string
|
43731
|
-
type:
|
43644
|
+
type: string
|
43732
43645
|
subType?: number | null
|
43733
43646
|
rewardTokenId: string
|
43734
43647
|
amount: string
|
@@ -43828,7 +43741,7 @@ export namespace Prisma {
|
|
43828
43741
|
export type CampaignUpdateWithoutRewardBreakdownInput = {
|
43829
43742
|
id?: StringFieldUpdateOperationsInput | string
|
43830
43743
|
campaignId?: StringFieldUpdateOperationsInput | string
|
43831
|
-
type?:
|
43744
|
+
type?: StringFieldUpdateOperationsInput | string
|
43832
43745
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
43833
43746
|
amount?: StringFieldUpdateOperationsInput | string
|
43834
43747
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -43850,7 +43763,7 @@ export namespace Prisma {
|
|
43850
43763
|
computeChainId?: IntFieldUpdateOperationsInput | number
|
43851
43764
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
43852
43765
|
campaignId?: StringFieldUpdateOperationsInput | string
|
43853
|
-
type?:
|
43766
|
+
type?: StringFieldUpdateOperationsInput | string
|
43854
43767
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
43855
43768
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
43856
43769
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -44500,7 +44413,7 @@ export namespace Prisma {
|
|
44500
44413
|
id: string
|
44501
44414
|
distributionChainId: number
|
44502
44415
|
campaignId: string
|
44503
|
-
type:
|
44416
|
+
type: string
|
44504
44417
|
subType?: number | null
|
44505
44418
|
rewardTokenId: string
|
44506
44419
|
amount: string
|
@@ -44515,7 +44428,7 @@ export namespace Prisma {
|
|
44515
44428
|
id: string
|
44516
44429
|
computeChainId: number
|
44517
44430
|
campaignId: string
|
44518
|
-
type:
|
44431
|
+
type: string
|
44519
44432
|
subType?: number | null
|
44520
44433
|
rewardTokenId: string
|
44521
44434
|
amount: string
|
@@ -44541,7 +44454,7 @@ export namespace Prisma {
|
|
44541
44454
|
|
44542
44455
|
export type OpportunityCreateManyChainInput = {
|
44543
44456
|
id: string
|
44544
|
-
type:
|
44457
|
+
type: string
|
44545
44458
|
identifier: string
|
44546
44459
|
name: string
|
44547
44460
|
depositUrl?: string | null
|
@@ -44601,7 +44514,7 @@ export namespace Prisma {
|
|
44601
44514
|
export type CampaignUpdateWithoutComputeChainInput = {
|
44602
44515
|
id?: StringFieldUpdateOperationsInput | string
|
44603
44516
|
campaignId?: StringFieldUpdateOperationsInput | string
|
44604
|
-
type?:
|
44517
|
+
type?: StringFieldUpdateOperationsInput | string
|
44605
44518
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
44606
44519
|
amount?: StringFieldUpdateOperationsInput | string
|
44607
44520
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -44622,7 +44535,7 @@ export namespace Prisma {
|
|
44622
44535
|
id?: StringFieldUpdateOperationsInput | string
|
44623
44536
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
44624
44537
|
campaignId?: StringFieldUpdateOperationsInput | string
|
44625
|
-
type?:
|
44538
|
+
type?: StringFieldUpdateOperationsInput | string
|
44626
44539
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
44627
44540
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
44628
44541
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -44642,7 +44555,7 @@ export namespace Prisma {
|
|
44642
44555
|
id?: StringFieldUpdateOperationsInput | string
|
44643
44556
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
44644
44557
|
campaignId?: StringFieldUpdateOperationsInput | string
|
44645
|
-
type?:
|
44558
|
+
type?: StringFieldUpdateOperationsInput | string
|
44646
44559
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
44647
44560
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
44648
44561
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -44656,7 +44569,7 @@ export namespace Prisma {
|
|
44656
44569
|
export type CampaignUpdateWithoutDistributionChainInput = {
|
44657
44570
|
id?: StringFieldUpdateOperationsInput | string
|
44658
44571
|
campaignId?: StringFieldUpdateOperationsInput | string
|
44659
|
-
type?:
|
44572
|
+
type?: StringFieldUpdateOperationsInput | string
|
44660
44573
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
44661
44574
|
amount?: StringFieldUpdateOperationsInput | string
|
44662
44575
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -44677,7 +44590,7 @@ export namespace Prisma {
|
|
44677
44590
|
id?: StringFieldUpdateOperationsInput | string
|
44678
44591
|
computeChainId?: IntFieldUpdateOperationsInput | number
|
44679
44592
|
campaignId?: StringFieldUpdateOperationsInput | string
|
44680
|
-
type?:
|
44593
|
+
type?: StringFieldUpdateOperationsInput | string
|
44681
44594
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
44682
44595
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
44683
44596
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -44697,7 +44610,7 @@ export namespace Prisma {
|
|
44697
44610
|
id?: StringFieldUpdateOperationsInput | string
|
44698
44611
|
computeChainId?: IntFieldUpdateOperationsInput | number
|
44699
44612
|
campaignId?: StringFieldUpdateOperationsInput | string
|
44700
|
-
type?:
|
44613
|
+
type?: StringFieldUpdateOperationsInput | string
|
44701
44614
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
44702
44615
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
44703
44616
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -44759,7 +44672,7 @@ export namespace Prisma {
|
|
44759
44672
|
|
44760
44673
|
export type OpportunityUpdateWithoutChainInput = {
|
44761
44674
|
id?: StringFieldUpdateOperationsInput | string
|
44762
|
-
type?:
|
44675
|
+
type?: StringFieldUpdateOperationsInput | string
|
44763
44676
|
identifier?: StringFieldUpdateOperationsInput | string
|
44764
44677
|
name?: StringFieldUpdateOperationsInput | string
|
44765
44678
|
depositUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -44780,7 +44693,7 @@ export namespace Prisma {
|
|
44780
44693
|
|
44781
44694
|
export type OpportunityUncheckedUpdateWithoutChainInput = {
|
44782
44695
|
id?: StringFieldUpdateOperationsInput | string
|
44783
|
-
type?:
|
44696
|
+
type?: StringFieldUpdateOperationsInput | string
|
44784
44697
|
identifier?: StringFieldUpdateOperationsInput | string
|
44785
44698
|
name?: StringFieldUpdateOperationsInput | string
|
44786
44699
|
depositUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -44801,7 +44714,7 @@ export namespace Prisma {
|
|
44801
44714
|
|
44802
44715
|
export type OpportunityUncheckedUpdateManyWithoutChainInput = {
|
44803
44716
|
id?: StringFieldUpdateOperationsInput | string
|
44804
|
-
type?:
|
44717
|
+
type?: StringFieldUpdateOperationsInput | string
|
44805
44718
|
identifier?: StringFieldUpdateOperationsInput | string
|
44806
44719
|
name?: StringFieldUpdateOperationsInput | string
|
44807
44720
|
depositUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -44899,7 +44812,7 @@ export namespace Prisma {
|
|
44899
44812
|
computeChainId: number
|
44900
44813
|
distributionChainId: number
|
44901
44814
|
campaignId: string
|
44902
|
-
type:
|
44815
|
+
type: string
|
44903
44816
|
subType?: number | null
|
44904
44817
|
rewardTokenId: string
|
44905
44818
|
amount: string
|
@@ -44980,7 +44893,7 @@ export namespace Prisma {
|
|
44980
44893
|
export type CampaignUpdateWithoutOpportunityInput = {
|
44981
44894
|
id?: StringFieldUpdateOperationsInput | string
|
44982
44895
|
campaignId?: StringFieldUpdateOperationsInput | string
|
44983
|
-
type?:
|
44896
|
+
type?: StringFieldUpdateOperationsInput | string
|
44984
44897
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
44985
44898
|
amount?: StringFieldUpdateOperationsInput | string
|
44986
44899
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -45002,7 +44915,7 @@ export namespace Prisma {
|
|
45002
44915
|
computeChainId?: IntFieldUpdateOperationsInput | number
|
45003
44916
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
45004
44917
|
campaignId?: StringFieldUpdateOperationsInput | string
|
45005
|
-
type?:
|
44918
|
+
type?: StringFieldUpdateOperationsInput | string
|
45006
44919
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
45007
44920
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
45008
44921
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -45022,7 +44935,7 @@ export namespace Prisma {
|
|
45022
44935
|
computeChainId?: IntFieldUpdateOperationsInput | number
|
45023
44936
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
45024
44937
|
campaignId?: StringFieldUpdateOperationsInput | string
|
45025
|
-
type?:
|
44938
|
+
type?: StringFieldUpdateOperationsInput | string
|
45026
44939
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
45027
44940
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
45028
44941
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -45126,7 +45039,7 @@ export namespace Prisma {
|
|
45126
45039
|
export type OpportunityCreateManyMainProtocolInput = {
|
45127
45040
|
id: string
|
45128
45041
|
chainId: number
|
45129
|
-
type:
|
45042
|
+
type: string
|
45130
45043
|
identifier: string
|
45131
45044
|
name: string
|
45132
45045
|
depositUrl?: string | null
|
@@ -45150,7 +45063,7 @@ export namespace Prisma {
|
|
45150
45063
|
|
45151
45064
|
export type OpportunityUpdateWithoutMainProtocolInput = {
|
45152
45065
|
id?: StringFieldUpdateOperationsInput | string
|
45153
|
-
type?:
|
45066
|
+
type?: StringFieldUpdateOperationsInput | string
|
45154
45067
|
identifier?: StringFieldUpdateOperationsInput | string
|
45155
45068
|
name?: StringFieldUpdateOperationsInput | string
|
45156
45069
|
depositUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -45172,7 +45085,7 @@ export namespace Prisma {
|
|
45172
45085
|
export type OpportunityUncheckedUpdateWithoutMainProtocolInput = {
|
45173
45086
|
id?: StringFieldUpdateOperationsInput | string
|
45174
45087
|
chainId?: IntFieldUpdateOperationsInput | number
|
45175
|
-
type?:
|
45088
|
+
type?: StringFieldUpdateOperationsInput | string
|
45176
45089
|
identifier?: StringFieldUpdateOperationsInput | string
|
45177
45090
|
name?: StringFieldUpdateOperationsInput | string
|
45178
45091
|
depositUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -45193,7 +45106,7 @@ export namespace Prisma {
|
|
45193
45106
|
export type OpportunityUncheckedUpdateManyWithoutMainProtocolInput = {
|
45194
45107
|
id?: StringFieldUpdateOperationsInput | string
|
45195
45108
|
chainId?: IntFieldUpdateOperationsInput | number
|
45196
|
-
type?:
|
45109
|
+
type?: StringFieldUpdateOperationsInput | string
|
45197
45110
|
identifier?: StringFieldUpdateOperationsInput | string
|
45198
45111
|
name?: StringFieldUpdateOperationsInput | string
|
45199
45112
|
depositUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -45207,7 +45120,7 @@ export namespace Prisma {
|
|
45207
45120
|
|
45208
45121
|
export type OpportunityUpdateWithoutProtocolsInput = {
|
45209
45122
|
id?: StringFieldUpdateOperationsInput | string
|
45210
|
-
type?:
|
45123
|
+
type?: StringFieldUpdateOperationsInput | string
|
45211
45124
|
identifier?: StringFieldUpdateOperationsInput | string
|
45212
45125
|
name?: StringFieldUpdateOperationsInput | string
|
45213
45126
|
depositUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -45229,7 +45142,7 @@ export namespace Prisma {
|
|
45229
45142
|
export type OpportunityUncheckedUpdateWithoutProtocolsInput = {
|
45230
45143
|
id?: StringFieldUpdateOperationsInput | string
|
45231
45144
|
chainId?: IntFieldUpdateOperationsInput | number
|
45232
|
-
type?:
|
45145
|
+
type?: StringFieldUpdateOperationsInput | string
|
45233
45146
|
identifier?: StringFieldUpdateOperationsInput | string
|
45234
45147
|
name?: StringFieldUpdateOperationsInput | string
|
45235
45148
|
depositUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -45250,7 +45163,7 @@ export namespace Prisma {
|
|
45250
45163
|
export type OpportunityUncheckedUpdateManyWithoutProtocolsInput = {
|
45251
45164
|
id?: StringFieldUpdateOperationsInput | string
|
45252
45165
|
chainId?: IntFieldUpdateOperationsInput | number
|
45253
|
-
type?:
|
45166
|
+
type?: StringFieldUpdateOperationsInput | string
|
45254
45167
|
identifier?: StringFieldUpdateOperationsInput | string
|
45255
45168
|
name?: StringFieldUpdateOperationsInput | string
|
45256
45169
|
depositUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -45297,7 +45210,7 @@ export namespace Prisma {
|
|
45297
45210
|
computeChainId: number
|
45298
45211
|
distributionChainId: number
|
45299
45212
|
campaignId: string
|
45300
|
-
type:
|
45213
|
+
type: string
|
45301
45214
|
subType?: number | null
|
45302
45215
|
amount: string
|
45303
45216
|
opportunityId: string
|
@@ -45343,7 +45256,7 @@ export namespace Prisma {
|
|
45343
45256
|
|
45344
45257
|
export type OpportunityUpdateWithoutTokensInput = {
|
45345
45258
|
id?: StringFieldUpdateOperationsInput | string
|
45346
|
-
type?:
|
45259
|
+
type?: StringFieldUpdateOperationsInput | string
|
45347
45260
|
identifier?: StringFieldUpdateOperationsInput | string
|
45348
45261
|
name?: StringFieldUpdateOperationsInput | string
|
45349
45262
|
depositUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -45365,7 +45278,7 @@ export namespace Prisma {
|
|
45365
45278
|
export type OpportunityUncheckedUpdateWithoutTokensInput = {
|
45366
45279
|
id?: StringFieldUpdateOperationsInput | string
|
45367
45280
|
chainId?: IntFieldUpdateOperationsInput | number
|
45368
|
-
type?:
|
45281
|
+
type?: StringFieldUpdateOperationsInput | string
|
45369
45282
|
identifier?: StringFieldUpdateOperationsInput | string
|
45370
45283
|
name?: StringFieldUpdateOperationsInput | string
|
45371
45284
|
depositUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -45386,7 +45299,7 @@ export namespace Prisma {
|
|
45386
45299
|
export type OpportunityUncheckedUpdateManyWithoutTokensInput = {
|
45387
45300
|
id?: StringFieldUpdateOperationsInput | string
|
45388
45301
|
chainId?: IntFieldUpdateOperationsInput | number
|
45389
|
-
type?:
|
45302
|
+
type?: StringFieldUpdateOperationsInput | string
|
45390
45303
|
identifier?: StringFieldUpdateOperationsInput | string
|
45391
45304
|
name?: StringFieldUpdateOperationsInput | string
|
45392
45305
|
depositUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
@@ -45402,7 +45315,7 @@ export namespace Prisma {
|
|
45402
45315
|
export type CampaignUpdateWithoutRewardTokenInput = {
|
45403
45316
|
id?: StringFieldUpdateOperationsInput | string
|
45404
45317
|
campaignId?: StringFieldUpdateOperationsInput | string
|
45405
|
-
type?:
|
45318
|
+
type?: StringFieldUpdateOperationsInput | string
|
45406
45319
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
45407
45320
|
amount?: StringFieldUpdateOperationsInput | string
|
45408
45321
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -45424,7 +45337,7 @@ export namespace Prisma {
|
|
45424
45337
|
computeChainId?: IntFieldUpdateOperationsInput | number
|
45425
45338
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
45426
45339
|
campaignId?: StringFieldUpdateOperationsInput | string
|
45427
|
-
type?:
|
45340
|
+
type?: StringFieldUpdateOperationsInput | string
|
45428
45341
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
45429
45342
|
amount?: StringFieldUpdateOperationsInput | string
|
45430
45343
|
opportunityId?: StringFieldUpdateOperationsInput | string
|
@@ -45444,7 +45357,7 @@ export namespace Prisma {
|
|
45444
45357
|
computeChainId?: IntFieldUpdateOperationsInput | number
|
45445
45358
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
45446
45359
|
campaignId?: StringFieldUpdateOperationsInput | string
|
45447
|
-
type?:
|
45360
|
+
type?: StringFieldUpdateOperationsInput | string
|
45448
45361
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
45449
45362
|
amount?: StringFieldUpdateOperationsInput | string
|
45450
45363
|
opportunityId?: StringFieldUpdateOperationsInput | string
|
@@ -45658,7 +45571,7 @@ export namespace Prisma {
|
|
45658
45571
|
computeChainId: number
|
45659
45572
|
distributionChainId: number
|
45660
45573
|
campaignId: string
|
45661
|
-
type:
|
45574
|
+
type: string
|
45662
45575
|
subType?: number | null
|
45663
45576
|
rewardTokenId: string
|
45664
45577
|
amount: string
|
@@ -45734,7 +45647,7 @@ export namespace Prisma {
|
|
45734
45647
|
export type CampaignUpdateWithoutCreatorInput = {
|
45735
45648
|
id?: StringFieldUpdateOperationsInput | string
|
45736
45649
|
campaignId?: StringFieldUpdateOperationsInput | string
|
45737
|
-
type?:
|
45650
|
+
type?: StringFieldUpdateOperationsInput | string
|
45738
45651
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
45739
45652
|
amount?: StringFieldUpdateOperationsInput | string
|
45740
45653
|
startTimestamp?: BigIntFieldUpdateOperationsInput | bigint | number
|
@@ -45756,7 +45669,7 @@ export namespace Prisma {
|
|
45756
45669
|
computeChainId?: IntFieldUpdateOperationsInput | number
|
45757
45670
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
45758
45671
|
campaignId?: StringFieldUpdateOperationsInput | string
|
45759
|
-
type?:
|
45672
|
+
type?: StringFieldUpdateOperationsInput | string
|
45760
45673
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
45761
45674
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
45762
45675
|
amount?: StringFieldUpdateOperationsInput | string
|
@@ -45776,7 +45689,7 @@ export namespace Prisma {
|
|
45776
45689
|
computeChainId?: IntFieldUpdateOperationsInput | number
|
45777
45690
|
distributionChainId?: IntFieldUpdateOperationsInput | number
|
45778
45691
|
campaignId?: StringFieldUpdateOperationsInput | string
|
45779
|
-
type?:
|
45692
|
+
type?: StringFieldUpdateOperationsInput | string
|
45780
45693
|
subType?: NullableIntFieldUpdateOperationsInput | number | null
|
45781
45694
|
rewardTokenId?: StringFieldUpdateOperationsInput | string
|
45782
45695
|
amount?: StringFieldUpdateOperationsInput | string
|