@merkl/api 0.18.11 → 0.18.13
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 +1 -0
- package/dist/database/api/.generated/index.d.ts +58 -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 -0
- package/dist/database/api/.generated/wasm.js +1 -0
- package/dist/src/eden/index.d.ts +96 -9
- package/dist/src/index.d.ts +20 -3
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +2 -0
- package/dist/src/modules/v4/campaign/campaign.repository.d.ts +4 -0
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +5 -0
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +4 -0
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +13 -0
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +12 -0
- package/dist/src/modules/v4/reward/reward.repository.d.ts +2 -0
- package/dist/src/modules/v4/reward/reward.service.d.ts +11 -0
- package/dist/src/modules/v4/router.d.ts +18 -0
- package/dist/src/modules/v4/token/token.controller.d.ts +8 -0
- package/dist/src/modules/v4/token/token.repository.d.ts +3 -0
- package/dist/src/modules/v4/token/token.service.d.ts +10 -0
- package/dist/src/modules/v4/user/user.controller.d.ts +4 -0
- package/dist/src/routes/v3/campaigns.d.ts +2 -3
- package/dist/src/routes/v3/campaigns.js +59 -21
- package/dist/src/routes/v3/router.d.ts +2 -3
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +1 -5
@@ -13418,6 +13418,7 @@ export namespace Prisma {
|
|
13418
13418
|
icon: string | null
|
13419
13419
|
verified: boolean | null
|
13420
13420
|
isTest: boolean | null
|
13421
|
+
isPoint: boolean | null
|
13421
13422
|
isNative: boolean | null
|
13422
13423
|
price: number | null
|
13423
13424
|
}
|
@@ -13433,6 +13434,7 @@ export namespace Prisma {
|
|
13433
13434
|
icon: string | null
|
13434
13435
|
verified: boolean | null
|
13435
13436
|
isTest: boolean | null
|
13437
|
+
isPoint: boolean | null
|
13436
13438
|
isNative: boolean | null
|
13437
13439
|
price: number | null
|
13438
13440
|
}
|
@@ -13448,6 +13450,7 @@ export namespace Prisma {
|
|
13448
13450
|
icon: number
|
13449
13451
|
verified: number
|
13450
13452
|
isTest: number
|
13453
|
+
isPoint: number
|
13451
13454
|
isNative: number
|
13452
13455
|
price: number
|
13453
13456
|
_all: number
|
@@ -13477,6 +13480,7 @@ export namespace Prisma {
|
|
13477
13480
|
icon?: true
|
13478
13481
|
verified?: true
|
13479
13482
|
isTest?: true
|
13483
|
+
isPoint?: true
|
13480
13484
|
isNative?: true
|
13481
13485
|
price?: true
|
13482
13486
|
}
|
@@ -13492,6 +13496,7 @@ export namespace Prisma {
|
|
13492
13496
|
icon?: true
|
13493
13497
|
verified?: true
|
13494
13498
|
isTest?: true
|
13499
|
+
isPoint?: true
|
13495
13500
|
isNative?: true
|
13496
13501
|
price?: true
|
13497
13502
|
}
|
@@ -13507,6 +13512,7 @@ export namespace Prisma {
|
|
13507
13512
|
icon?: true
|
13508
13513
|
verified?: true
|
13509
13514
|
isTest?: true
|
13515
|
+
isPoint?: true
|
13510
13516
|
isNative?: true
|
13511
13517
|
price?: true
|
13512
13518
|
_all?: true
|
@@ -13609,6 +13615,7 @@ export namespace Prisma {
|
|
13609
13615
|
icon: string
|
13610
13616
|
verified: boolean
|
13611
13617
|
isTest: boolean
|
13618
|
+
isPoint: boolean
|
13612
13619
|
isNative: boolean
|
13613
13620
|
price: number | null
|
13614
13621
|
_count: TokenCountAggregateOutputType | null
|
@@ -13643,6 +13650,7 @@ export namespace Prisma {
|
|
13643
13650
|
icon?: boolean
|
13644
13651
|
verified?: boolean
|
13645
13652
|
isTest?: boolean
|
13653
|
+
isPoint?: boolean
|
13646
13654
|
isNative?: boolean
|
13647
13655
|
price?: boolean
|
13648
13656
|
Chain?: boolean | ChainDefaultArgs<ExtArgs>
|
@@ -13665,6 +13673,7 @@ export namespace Prisma {
|
|
13665
13673
|
icon?: boolean
|
13666
13674
|
verified?: boolean
|
13667
13675
|
isTest?: boolean
|
13676
|
+
isPoint?: boolean
|
13668
13677
|
isNative?: boolean
|
13669
13678
|
price?: boolean
|
13670
13679
|
Chain?: boolean | ChainDefaultArgs<ExtArgs>
|
@@ -13681,6 +13690,7 @@ export namespace Prisma {
|
|
13681
13690
|
icon?: boolean
|
13682
13691
|
verified?: boolean
|
13683
13692
|
isTest?: boolean
|
13693
|
+
isPoint?: boolean
|
13684
13694
|
isNative?: boolean
|
13685
13695
|
price?: boolean
|
13686
13696
|
Chain?: boolean | ChainDefaultArgs<ExtArgs>
|
@@ -13697,11 +13707,12 @@ export namespace Prisma {
|
|
13697
13707
|
icon?: boolean
|
13698
13708
|
verified?: boolean
|
13699
13709
|
isTest?: boolean
|
13710
|
+
isPoint?: boolean
|
13700
13711
|
isNative?: boolean
|
13701
13712
|
price?: boolean
|
13702
13713
|
}
|
13703
13714
|
|
13704
|
-
export type TokenOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "name" | "chainId" | "address" | "decimals" | "symbol" | "displaySymbol" | "icon" | "verified" | "isTest" | "isNative" | "price", ExtArgs["result"]["token"]>
|
13715
|
+
export type TokenOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "name" | "chainId" | "address" | "decimals" | "symbol" | "displaySymbol" | "icon" | "verified" | "isTest" | "isPoint" | "isNative" | "price", ExtArgs["result"]["token"]>
|
13705
13716
|
export type TokenInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
13706
13717
|
Chain?: boolean | ChainDefaultArgs<ExtArgs>
|
13707
13718
|
Opportunity?: boolean | Token$OpportunityArgs<ExtArgs>
|
@@ -13739,6 +13750,7 @@ export namespace Prisma {
|
|
13739
13750
|
icon: string
|
13740
13751
|
verified: boolean
|
13741
13752
|
isTest: boolean
|
13753
|
+
isPoint: boolean
|
13742
13754
|
isNative: boolean
|
13743
13755
|
price: number | null
|
13744
13756
|
}, ExtArgs["result"]["token"]>
|
@@ -14180,6 +14192,7 @@ export namespace Prisma {
|
|
14180
14192
|
readonly icon: FieldRef<"Token", 'String'>
|
14181
14193
|
readonly verified: FieldRef<"Token", 'Boolean'>
|
14182
14194
|
readonly isTest: FieldRef<"Token", 'Boolean'>
|
14195
|
+
readonly isPoint: FieldRef<"Token", 'Boolean'>
|
14183
14196
|
readonly isNative: FieldRef<"Token", 'Boolean'>
|
14184
14197
|
readonly price: FieldRef<"Token", 'Float'>
|
14185
14198
|
}
|
@@ -31602,6 +31615,7 @@ export namespace Prisma {
|
|
31602
31615
|
icon: 'icon',
|
31603
31616
|
verified: 'verified',
|
31604
31617
|
isTest: 'isTest',
|
31618
|
+
isPoint: 'isPoint',
|
31605
31619
|
isNative: 'isNative',
|
31606
31620
|
price: 'price'
|
31607
31621
|
};
|
@@ -32905,6 +32919,7 @@ export namespace Prisma {
|
|
32905
32919
|
icon?: StringFilter<"Token"> | string
|
32906
32920
|
verified?: BoolFilter<"Token"> | boolean
|
32907
32921
|
isTest?: BoolFilter<"Token"> | boolean
|
32922
|
+
isPoint?: BoolFilter<"Token"> | boolean
|
32908
32923
|
isNative?: BoolFilter<"Token"> | boolean
|
32909
32924
|
price?: FloatNullableFilter<"Token"> | number | null
|
32910
32925
|
Chain?: XOR<ChainScalarRelationFilter, ChainWhereInput>
|
@@ -32926,6 +32941,7 @@ export namespace Prisma {
|
|
32926
32941
|
icon?: SortOrder
|
32927
32942
|
verified?: SortOrder
|
32928
32943
|
isTest?: SortOrder
|
32944
|
+
isPoint?: SortOrder
|
32929
32945
|
isNative?: SortOrder
|
32930
32946
|
price?: SortOrderInput | SortOrder
|
32931
32947
|
Chain?: ChainOrderByWithRelationInput
|
@@ -32952,6 +32968,7 @@ export namespace Prisma {
|
|
32952
32968
|
icon?: StringFilter<"Token"> | string
|
32953
32969
|
verified?: BoolFilter<"Token"> | boolean
|
32954
32970
|
isTest?: BoolFilter<"Token"> | boolean
|
32971
|
+
isPoint?: BoolFilter<"Token"> | boolean
|
32955
32972
|
isNative?: BoolFilter<"Token"> | boolean
|
32956
32973
|
price?: FloatNullableFilter<"Token"> | number | null
|
32957
32974
|
Chain?: XOR<ChainScalarRelationFilter, ChainWhereInput>
|
@@ -32973,6 +32990,7 @@ export namespace Prisma {
|
|
32973
32990
|
icon?: SortOrder
|
32974
32991
|
verified?: SortOrder
|
32975
32992
|
isTest?: SortOrder
|
32993
|
+
isPoint?: SortOrder
|
32976
32994
|
isNative?: SortOrder
|
32977
32995
|
price?: SortOrderInput | SortOrder
|
32978
32996
|
_count?: TokenCountOrderByAggregateInput
|
@@ -32996,6 +33014,7 @@ export namespace Prisma {
|
|
32996
33014
|
icon?: StringWithAggregatesFilter<"Token"> | string
|
32997
33015
|
verified?: BoolWithAggregatesFilter<"Token"> | boolean
|
32998
33016
|
isTest?: BoolWithAggregatesFilter<"Token"> | boolean
|
33017
|
+
isPoint?: BoolWithAggregatesFilter<"Token"> | boolean
|
32999
33018
|
isNative?: BoolWithAggregatesFilter<"Token"> | boolean
|
33000
33019
|
price?: FloatNullableWithAggregatesFilter<"Token"> | number | null
|
33001
33020
|
}
|
@@ -34573,6 +34592,7 @@ export namespace Prisma {
|
|
34573
34592
|
icon: string
|
34574
34593
|
verified?: boolean
|
34575
34594
|
isTest?: boolean
|
34595
|
+
isPoint?: boolean
|
34576
34596
|
isNative?: boolean
|
34577
34597
|
price?: number | null
|
34578
34598
|
Chain: ChainCreateNestedOneWithoutTokenInput
|
@@ -34594,6 +34614,7 @@ export namespace Prisma {
|
|
34594
34614
|
icon: string
|
34595
34615
|
verified?: boolean
|
34596
34616
|
isTest?: boolean
|
34617
|
+
isPoint?: boolean
|
34597
34618
|
isNative?: boolean
|
34598
34619
|
price?: number | null
|
34599
34620
|
Opportunity?: OpportunityUncheckedCreateNestedManyWithoutTokensInput
|
@@ -34613,6 +34634,7 @@ export namespace Prisma {
|
|
34613
34634
|
icon?: StringFieldUpdateOperationsInput | string
|
34614
34635
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
34615
34636
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
34637
|
+
isPoint?: BoolFieldUpdateOperationsInput | boolean
|
34616
34638
|
isNative?: BoolFieldUpdateOperationsInput | boolean
|
34617
34639
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
34618
34640
|
Chain?: ChainUpdateOneRequiredWithoutTokenNestedInput
|
@@ -34634,6 +34656,7 @@ export namespace Prisma {
|
|
34634
34656
|
icon?: StringFieldUpdateOperationsInput | string
|
34635
34657
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
34636
34658
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
34659
|
+
isPoint?: BoolFieldUpdateOperationsInput | boolean
|
34637
34660
|
isNative?: BoolFieldUpdateOperationsInput | boolean
|
34638
34661
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
34639
34662
|
Opportunity?: OpportunityUncheckedUpdateManyWithoutTokensNestedInput
|
@@ -34654,6 +34677,7 @@ export namespace Prisma {
|
|
34654
34677
|
icon: string
|
34655
34678
|
verified?: boolean
|
34656
34679
|
isTest?: boolean
|
34680
|
+
isPoint?: boolean
|
34657
34681
|
isNative?: boolean
|
34658
34682
|
price?: number | null
|
34659
34683
|
}
|
@@ -34668,6 +34692,7 @@ export namespace Prisma {
|
|
34668
34692
|
icon?: StringFieldUpdateOperationsInput | string
|
34669
34693
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
34670
34694
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
34695
|
+
isPoint?: BoolFieldUpdateOperationsInput | boolean
|
34671
34696
|
isNative?: BoolFieldUpdateOperationsInput | boolean
|
34672
34697
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
34673
34698
|
}
|
@@ -34683,6 +34708,7 @@ export namespace Prisma {
|
|
34683
34708
|
icon?: StringFieldUpdateOperationsInput | string
|
34684
34709
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
34685
34710
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
34711
|
+
isPoint?: BoolFieldUpdateOperationsInput | boolean
|
34686
34712
|
isNative?: BoolFieldUpdateOperationsInput | boolean
|
34687
34713
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
34688
34714
|
}
|
@@ -36508,6 +36534,7 @@ export namespace Prisma {
|
|
36508
36534
|
icon?: SortOrder
|
36509
36535
|
verified?: SortOrder
|
36510
36536
|
isTest?: SortOrder
|
36537
|
+
isPoint?: SortOrder
|
36511
36538
|
isNative?: SortOrder
|
36512
36539
|
price?: SortOrder
|
36513
36540
|
}
|
@@ -36529,6 +36556,7 @@ export namespace Prisma {
|
|
36529
36556
|
icon?: SortOrder
|
36530
36557
|
verified?: SortOrder
|
36531
36558
|
isTest?: SortOrder
|
36559
|
+
isPoint?: SortOrder
|
36532
36560
|
isNative?: SortOrder
|
36533
36561
|
price?: SortOrder
|
36534
36562
|
}
|
@@ -36544,6 +36572,7 @@ export namespace Prisma {
|
|
36544
36572
|
icon?: SortOrder
|
36545
36573
|
verified?: SortOrder
|
36546
36574
|
isTest?: SortOrder
|
36575
|
+
isPoint?: SortOrder
|
36547
36576
|
isNative?: SortOrder
|
36548
36577
|
price?: SortOrder
|
36549
36578
|
}
|
@@ -40009,6 +40038,7 @@ export namespace Prisma {
|
|
40009
40038
|
icon: string
|
40010
40039
|
verified?: boolean
|
40011
40040
|
isTest?: boolean
|
40041
|
+
isPoint?: boolean
|
40012
40042
|
isNative?: boolean
|
40013
40043
|
price?: number | null
|
40014
40044
|
Chain: ChainCreateNestedOneWithoutTokenInput
|
@@ -40029,6 +40059,7 @@ export namespace Prisma {
|
|
40029
40059
|
icon: string
|
40030
40060
|
verified?: boolean
|
40031
40061
|
isTest?: boolean
|
40062
|
+
isPoint?: boolean
|
40032
40063
|
isNative?: boolean
|
40033
40064
|
price?: number | null
|
40034
40065
|
Opportunity?: OpportunityUncheckedCreateNestedManyWithoutTokensInput
|
@@ -40328,6 +40359,7 @@ export namespace Prisma {
|
|
40328
40359
|
icon?: StringFieldUpdateOperationsInput | string
|
40329
40360
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
40330
40361
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
40362
|
+
isPoint?: BoolFieldUpdateOperationsInput | boolean
|
40331
40363
|
isNative?: BoolFieldUpdateOperationsInput | boolean
|
40332
40364
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
40333
40365
|
Chain?: ChainUpdateOneRequiredWithoutTokenNestedInput
|
@@ -40348,6 +40380,7 @@ export namespace Prisma {
|
|
40348
40380
|
icon?: StringFieldUpdateOperationsInput | string
|
40349
40381
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
40350
40382
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
40383
|
+
isPoint?: BoolFieldUpdateOperationsInput | boolean
|
40351
40384
|
isNative?: BoolFieldUpdateOperationsInput | boolean
|
40352
40385
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
40353
40386
|
Opportunity?: OpportunityUncheckedUpdateManyWithoutTokensNestedInput
|
@@ -41063,6 +41096,7 @@ export namespace Prisma {
|
|
41063
41096
|
icon: string
|
41064
41097
|
verified?: boolean
|
41065
41098
|
isTest?: boolean
|
41099
|
+
isPoint?: boolean
|
41066
41100
|
isNative?: boolean
|
41067
41101
|
price?: number | null
|
41068
41102
|
Opportunity?: OpportunityCreateNestedManyWithoutTokensInput
|
@@ -41082,6 +41116,7 @@ export namespace Prisma {
|
|
41082
41116
|
icon: string
|
41083
41117
|
verified?: boolean
|
41084
41118
|
isTest?: boolean
|
41119
|
+
isPoint?: boolean
|
41085
41120
|
isNative?: boolean
|
41086
41121
|
price?: number | null
|
41087
41122
|
Opportunity?: OpportunityUncheckedCreateNestedManyWithoutTokensInput
|
@@ -41345,6 +41380,7 @@ export namespace Prisma {
|
|
41345
41380
|
icon?: StringFilter<"Token"> | string
|
41346
41381
|
verified?: BoolFilter<"Token"> | boolean
|
41347
41382
|
isTest?: BoolFilter<"Token"> | boolean
|
41383
|
+
isPoint?: BoolFilter<"Token"> | boolean
|
41348
41384
|
isNative?: BoolFilter<"Token"> | boolean
|
41349
41385
|
price?: FloatNullableFilter<"Token"> | number | null
|
41350
41386
|
}
|
@@ -41579,6 +41615,7 @@ export namespace Prisma {
|
|
41579
41615
|
icon: string
|
41580
41616
|
verified?: boolean
|
41581
41617
|
isTest?: boolean
|
41618
|
+
isPoint?: boolean
|
41582
41619
|
isNative?: boolean
|
41583
41620
|
price?: number | null
|
41584
41621
|
Chain: ChainCreateNestedOneWithoutTokenInput
|
@@ -41599,6 +41636,7 @@ export namespace Prisma {
|
|
41599
41636
|
icon: string
|
41600
41637
|
verified?: boolean
|
41601
41638
|
isTest?: boolean
|
41639
|
+
isPoint?: boolean
|
41602
41640
|
isNative?: boolean
|
41603
41641
|
price?: number | null
|
41604
41642
|
Campaigns?: CampaignUncheckedCreateNestedManyWithoutRewardTokenInput
|
@@ -43546,6 +43584,7 @@ export namespace Prisma {
|
|
43546
43584
|
icon: string
|
43547
43585
|
verified?: boolean
|
43548
43586
|
isTest?: boolean
|
43587
|
+
isPoint?: boolean
|
43549
43588
|
isNative?: boolean
|
43550
43589
|
price?: number | null
|
43551
43590
|
Chain: ChainCreateNestedOneWithoutTokenInput
|
@@ -43566,6 +43605,7 @@ export namespace Prisma {
|
|
43566
43605
|
icon: string
|
43567
43606
|
verified?: boolean
|
43568
43607
|
isTest?: boolean
|
43608
|
+
isPoint?: boolean
|
43569
43609
|
isNative?: boolean
|
43570
43610
|
price?: number | null
|
43571
43611
|
Opportunity?: OpportunityUncheckedCreateNestedManyWithoutTokensInput
|
@@ -43683,6 +43723,7 @@ export namespace Prisma {
|
|
43683
43723
|
icon?: StringFieldUpdateOperationsInput | string
|
43684
43724
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
43685
43725
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
43726
|
+
isPoint?: BoolFieldUpdateOperationsInput | boolean
|
43686
43727
|
isNative?: BoolFieldUpdateOperationsInput | boolean
|
43687
43728
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
43688
43729
|
Chain?: ChainUpdateOneRequiredWithoutTokenNestedInput
|
@@ -43703,6 +43744,7 @@ export namespace Prisma {
|
|
43703
43744
|
icon?: StringFieldUpdateOperationsInput | string
|
43704
43745
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
43705
43746
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
43747
|
+
isPoint?: BoolFieldUpdateOperationsInput | boolean
|
43706
43748
|
isNative?: BoolFieldUpdateOperationsInput | boolean
|
43707
43749
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
43708
43750
|
Opportunity?: OpportunityUncheckedUpdateManyWithoutTokensNestedInput
|
@@ -44224,6 +44266,7 @@ export namespace Prisma {
|
|
44224
44266
|
icon: string
|
44225
44267
|
verified?: boolean
|
44226
44268
|
isTest?: boolean
|
44269
|
+
isPoint?: boolean
|
44227
44270
|
isNative?: boolean
|
44228
44271
|
price?: number | null
|
44229
44272
|
Chain: ChainCreateNestedOneWithoutTokenInput
|
@@ -44244,6 +44287,7 @@ export namespace Prisma {
|
|
44244
44287
|
icon: string
|
44245
44288
|
verified?: boolean
|
44246
44289
|
isTest?: boolean
|
44290
|
+
isPoint?: boolean
|
44247
44291
|
isNative?: boolean
|
44248
44292
|
price?: number | null
|
44249
44293
|
Opportunity?: OpportunityUncheckedCreateNestedManyWithoutTokensInput
|
@@ -44267,6 +44311,7 @@ export namespace Prisma {
|
|
44267
44311
|
icon: string
|
44268
44312
|
verified?: boolean
|
44269
44313
|
isTest?: boolean
|
44314
|
+
isPoint?: boolean
|
44270
44315
|
isNative?: boolean
|
44271
44316
|
price?: number | null
|
44272
44317
|
Chain: ChainCreateNestedOneWithoutTokenInput
|
@@ -44287,6 +44332,7 @@ export namespace Prisma {
|
|
44287
44332
|
icon: string
|
44288
44333
|
verified?: boolean
|
44289
44334
|
isTest?: boolean
|
44335
|
+
isPoint?: boolean
|
44290
44336
|
isNative?: boolean
|
44291
44337
|
price?: number | null
|
44292
44338
|
Opportunity?: OpportunityUncheckedCreateNestedManyWithoutTokensInput
|
@@ -44358,6 +44404,7 @@ export namespace Prisma {
|
|
44358
44404
|
icon?: StringFieldUpdateOperationsInput | string
|
44359
44405
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
44360
44406
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
44407
|
+
isPoint?: BoolFieldUpdateOperationsInput | boolean
|
44361
44408
|
isNative?: BoolFieldUpdateOperationsInput | boolean
|
44362
44409
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
44363
44410
|
Chain?: ChainUpdateOneRequiredWithoutTokenNestedInput
|
@@ -44378,6 +44425,7 @@ export namespace Prisma {
|
|
44378
44425
|
icon?: StringFieldUpdateOperationsInput | string
|
44379
44426
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
44380
44427
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
44428
|
+
isPoint?: BoolFieldUpdateOperationsInput | boolean
|
44381
44429
|
isNative?: BoolFieldUpdateOperationsInput | boolean
|
44382
44430
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
44383
44431
|
Opportunity?: OpportunityUncheckedUpdateManyWithoutTokensNestedInput
|
@@ -44407,6 +44455,7 @@ export namespace Prisma {
|
|
44407
44455
|
icon?: StringFieldUpdateOperationsInput | string
|
44408
44456
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
44409
44457
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
44458
|
+
isPoint?: BoolFieldUpdateOperationsInput | boolean
|
44410
44459
|
isNative?: BoolFieldUpdateOperationsInput | boolean
|
44411
44460
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
44412
44461
|
Chain?: ChainUpdateOneRequiredWithoutTokenNestedInput
|
@@ -44427,6 +44476,7 @@ export namespace Prisma {
|
|
44427
44476
|
icon?: StringFieldUpdateOperationsInput | string
|
44428
44477
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
44429
44478
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
44479
|
+
isPoint?: BoolFieldUpdateOperationsInput | boolean
|
44430
44480
|
isNative?: BoolFieldUpdateOperationsInput | boolean
|
44431
44481
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
44432
44482
|
Opportunity?: OpportunityUncheckedUpdateManyWithoutTokensNestedInput
|
@@ -44628,6 +44678,7 @@ export namespace Prisma {
|
|
44628
44678
|
icon: string
|
44629
44679
|
verified?: boolean
|
44630
44680
|
isTest?: boolean
|
44681
|
+
isPoint?: boolean
|
44631
44682
|
isNative?: boolean
|
44632
44683
|
price?: number | null
|
44633
44684
|
}
|
@@ -44817,6 +44868,7 @@ export namespace Prisma {
|
|
44817
44868
|
icon?: StringFieldUpdateOperationsInput | string
|
44818
44869
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
44819
44870
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
44871
|
+
isPoint?: BoolFieldUpdateOperationsInput | boolean
|
44820
44872
|
isNative?: BoolFieldUpdateOperationsInput | boolean
|
44821
44873
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
44822
44874
|
Opportunity?: OpportunityUpdateManyWithoutTokensNestedInput
|
@@ -44836,6 +44888,7 @@ export namespace Prisma {
|
|
44836
44888
|
icon?: StringFieldUpdateOperationsInput | string
|
44837
44889
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
44838
44890
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
44891
|
+
isPoint?: BoolFieldUpdateOperationsInput | boolean
|
44839
44892
|
isNative?: BoolFieldUpdateOperationsInput | boolean
|
44840
44893
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
44841
44894
|
Opportunity?: OpportunityUncheckedUpdateManyWithoutTokensNestedInput
|
@@ -44855,6 +44908,7 @@ export namespace Prisma {
|
|
44855
44908
|
icon?: StringFieldUpdateOperationsInput | string
|
44856
44909
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
44857
44910
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
44911
|
+
isPoint?: BoolFieldUpdateOperationsInput | boolean
|
44858
44912
|
isNative?: BoolFieldUpdateOperationsInput | boolean
|
44859
44913
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
44860
44914
|
}
|
@@ -45040,6 +45094,7 @@ export namespace Prisma {
|
|
45040
45094
|
icon?: StringFieldUpdateOperationsInput | string
|
45041
45095
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
45042
45096
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
45097
|
+
isPoint?: BoolFieldUpdateOperationsInput | boolean
|
45043
45098
|
isNative?: BoolFieldUpdateOperationsInput | boolean
|
45044
45099
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
45045
45100
|
Chain?: ChainUpdateOneRequiredWithoutTokenNestedInput
|
@@ -45060,6 +45115,7 @@ export namespace Prisma {
|
|
45060
45115
|
icon?: StringFieldUpdateOperationsInput | string
|
45061
45116
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
45062
45117
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
45118
|
+
isPoint?: BoolFieldUpdateOperationsInput | boolean
|
45063
45119
|
isNative?: BoolFieldUpdateOperationsInput | boolean
|
45064
45120
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
45065
45121
|
Campaigns?: CampaignUncheckedUpdateManyWithoutRewardTokenNestedInput
|
@@ -45079,6 +45135,7 @@ export namespace Prisma {
|
|
45079
45135
|
icon?: StringFieldUpdateOperationsInput | string
|
45080
45136
|
verified?: BoolFieldUpdateOperationsInput | boolean
|
45081
45137
|
isTest?: BoolFieldUpdateOperationsInput | boolean
|
45138
|
+
isPoint?: BoolFieldUpdateOperationsInput | boolean
|
45082
45139
|
isNative?: BoolFieldUpdateOperationsInput | boolean
|
45083
45140
|
price?: NullableFloatFieldUpdateOperationsInput | number | null
|
45084
45141
|
}
|