@merkl/api 1.18.16 → 1.18.17
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/src/engine/implementations/ErcMultiToken/metadata.d.ts +1 -1
- package/dist/src/engine/implementations/StabullStaking/metadata.d.ts +1 -1
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +1 -1
- package/dist/src/modules/v4/opportunity/opportunity.query-transformer.d.ts +4 -4
- package/dist/src/modules/v4/transaction/transaction.service.d.ts +512 -512
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -17,13 +17,13 @@ export declare class ErcMultiTokenMetadata implements MetadataBuilder<campaignTy
|
|
|
17
17
|
mainProtocol: ProtocolType;
|
|
18
18
|
depositUrl: string;
|
|
19
19
|
} | {
|
|
20
|
-
description?: undefined;
|
|
21
20
|
action: "HOLD";
|
|
22
21
|
name: string;
|
|
23
22
|
tokens: never[];
|
|
24
23
|
explorerAddress: string;
|
|
25
24
|
mainProtocol: undefined;
|
|
26
25
|
depositUrl: undefined;
|
|
26
|
+
description?: undefined;
|
|
27
27
|
}>;
|
|
28
28
|
}
|
|
29
29
|
export {};
|
|
@@ -16,7 +16,6 @@ export declare class StabullStakingMetadata implements MetadataBuilder<campaignT
|
|
|
16
16
|
description: string;
|
|
17
17
|
howToSteps: string[];
|
|
18
18
|
} | {
|
|
19
|
-
description?: undefined;
|
|
20
19
|
howToSteps?: undefined;
|
|
21
20
|
action: "STAKE";
|
|
22
21
|
mainProtocol: ProtocolType;
|
|
@@ -27,6 +26,7 @@ export declare class StabullStakingMetadata implements MetadataBuilder<campaignT
|
|
|
27
26
|
}[];
|
|
28
27
|
explorerAddress: string | undefined;
|
|
29
28
|
depositUrl: string | undefined;
|
|
29
|
+
description?: undefined;
|
|
30
30
|
}>;
|
|
31
31
|
}
|
|
32
32
|
export {};
|
|
@@ -41,12 +41,12 @@ export declare abstract class CampaignService {
|
|
|
41
41
|
};
|
|
42
42
|
startTimestamp?: undefined;
|
|
43
43
|
} | {
|
|
44
|
+
endTimestamp?: undefined;
|
|
44
45
|
startTimestamp: {
|
|
45
46
|
lte?: undefined;
|
|
46
47
|
gt: number;
|
|
47
48
|
gte?: undefined;
|
|
48
49
|
};
|
|
49
|
-
endTimestamp?: undefined;
|
|
50
50
|
} | {
|
|
51
51
|
endTimestamp: {
|
|
52
52
|
lt?: undefined;
|
|
@@ -522,12 +522,12 @@ export declare function transformQueryToPrismaFilters(query: FindManyOpportunity
|
|
|
522
522
|
};
|
|
523
523
|
startTimestamp?: undefined;
|
|
524
524
|
} | {
|
|
525
|
+
endTimestamp?: undefined;
|
|
525
526
|
startTimestamp: {
|
|
526
527
|
lte?: undefined;
|
|
527
528
|
gt: number;
|
|
528
529
|
gte?: undefined;
|
|
529
530
|
};
|
|
530
|
-
endTimestamp?: undefined;
|
|
531
531
|
} | {
|
|
532
532
|
endTimestamp: {
|
|
533
533
|
lt?: undefined;
|
|
@@ -634,12 +634,12 @@ export declare function transformQueryToPrismaFilters(query: FindManyOpportunity
|
|
|
634
634
|
explorerAddress?: undefined;
|
|
635
635
|
Campaigns: {
|
|
636
636
|
some: {
|
|
637
|
+
endTimestamp?: undefined;
|
|
637
638
|
campaignId: {
|
|
638
639
|
contains: string;
|
|
639
640
|
mode: "insensitive";
|
|
640
641
|
};
|
|
641
642
|
isPrivate: boolean;
|
|
642
|
-
endTimestamp?: undefined;
|
|
643
643
|
id?: undefined;
|
|
644
644
|
creatorAddress?: undefined;
|
|
645
645
|
RewardToken?: undefined;
|
|
@@ -657,12 +657,12 @@ export declare function transformQueryToPrismaFilters(query: FindManyOpportunity
|
|
|
657
657
|
explorerAddress?: undefined;
|
|
658
658
|
Campaigns: {
|
|
659
659
|
some: {
|
|
660
|
+
endTimestamp?: undefined;
|
|
660
661
|
id: {
|
|
661
662
|
contains: string;
|
|
662
663
|
mode: "insensitive";
|
|
663
664
|
};
|
|
664
665
|
isPrivate: boolean;
|
|
665
|
-
endTimestamp?: undefined;
|
|
666
666
|
creatorAddress?: undefined;
|
|
667
667
|
RewardToken?: undefined;
|
|
668
668
|
campaignId?: undefined;
|
|
@@ -680,12 +680,12 @@ export declare function transformQueryToPrismaFilters(query: FindManyOpportunity
|
|
|
680
680
|
explorerAddress?: undefined;
|
|
681
681
|
Campaigns: {
|
|
682
682
|
some: {
|
|
683
|
+
endTimestamp?: undefined;
|
|
683
684
|
creatorAddress: {
|
|
684
685
|
contains: string;
|
|
685
686
|
mode: "insensitive";
|
|
686
687
|
};
|
|
687
688
|
isPrivate: boolean;
|
|
688
|
-
endTimestamp?: undefined;
|
|
689
689
|
id?: undefined;
|
|
690
690
|
RewardToken?: undefined;
|
|
691
691
|
campaignId?: undefined;
|