@merkl/api 1.1.28 → 1.1.30
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/eden/index.d.ts +4 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/modules/v4/protocol/protocol.controller.d.ts +2 -0
- package/dist/src/modules/v4/protocol/protocol.model.d.ts +1 -0
- package/dist/src/modules/v4/router.d.ts +2 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/src/eden/index.d.ts
CHANGED
@@ -5832,6 +5832,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
5832
5832
|
test?: boolean | undefined;
|
5833
5833
|
page?: number | undefined;
|
5834
5834
|
opportunityTag?: string | undefined;
|
5835
|
+
opportunityChain?: number | undefined;
|
5835
5836
|
};
|
5836
5837
|
headers: unknown;
|
5837
5838
|
response: {
|
@@ -5871,6 +5872,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
5871
5872
|
test?: boolean | undefined;
|
5872
5873
|
page?: number | undefined;
|
5873
5874
|
opportunityTag?: string | undefined;
|
5875
|
+
opportunityChain?: number | undefined;
|
5874
5876
|
};
|
5875
5877
|
headers: unknown;
|
5876
5878
|
response: {
|
@@ -17371,6 +17373,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
17371
17373
|
test?: boolean | undefined;
|
17372
17374
|
page?: number | undefined;
|
17373
17375
|
opportunityTag?: string | undefined;
|
17376
|
+
opportunityChain?: number | undefined;
|
17374
17377
|
};
|
17375
17378
|
fetch?: RequestInit | undefined;
|
17376
17379
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
@@ -17407,6 +17410,7 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
17407
17410
|
test?: boolean | undefined;
|
17408
17411
|
page?: number | undefined;
|
17409
17412
|
opportunityTag?: string | undefined;
|
17413
|
+
opportunityChain?: number | undefined;
|
17410
17414
|
};
|
17411
17415
|
fetch?: RequestInit | undefined;
|
17412
17416
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
package/dist/src/index.d.ts
CHANGED
@@ -5833,6 +5833,7 @@ declare const app: Elysia<"", {
|
|
5833
5833
|
test?: boolean | undefined;
|
5834
5834
|
page?: number | undefined;
|
5835
5835
|
opportunityTag?: string | undefined;
|
5836
|
+
opportunityChain?: number | undefined;
|
5836
5837
|
};
|
5837
5838
|
headers: unknown;
|
5838
5839
|
response: {
|
@@ -5872,6 +5873,7 @@ declare const app: Elysia<"", {
|
|
5872
5873
|
test?: boolean | undefined;
|
5873
5874
|
page?: number | undefined;
|
5874
5875
|
opportunityTag?: string | undefined;
|
5876
|
+
opportunityChain?: number | undefined;
|
5875
5877
|
};
|
5876
5878
|
headers: unknown;
|
5877
5879
|
response: {
|
@@ -27,6 +27,7 @@ export declare const ProtocolController: Elysia<"/protocols", {
|
|
27
27
|
test?: boolean | undefined;
|
28
28
|
page?: number | undefined;
|
29
29
|
opportunityTag?: string | undefined;
|
30
|
+
opportunityChain?: number | undefined;
|
30
31
|
};
|
31
32
|
headers: unknown;
|
32
33
|
response: {
|
@@ -66,6 +67,7 @@ export declare const ProtocolController: Elysia<"/protocols", {
|
|
66
67
|
test?: boolean | undefined;
|
67
68
|
page?: number | undefined;
|
68
69
|
opportunityTag?: string | undefined;
|
70
|
+
opportunityChain?: number | undefined;
|
69
71
|
};
|
70
72
|
headers: unknown;
|
71
73
|
response: {
|
@@ -29,6 +29,7 @@ export declare const GetProtocolsQueryDto: import("@sinclair/typebox").TObject<{
|
|
29
29
|
name: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
30
30
|
tags: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TArray<import("@sinclair/typebox").TString>>;
|
31
31
|
opportunityTag: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TString>;
|
32
|
+
opportunityChain: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
32
33
|
page: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
33
34
|
items: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TNumber>;
|
34
35
|
}>;
|
@@ -4367,6 +4367,7 @@ export declare const v4: Elysia<"/v4", {
|
|
4367
4367
|
test?: boolean | undefined;
|
4368
4368
|
page?: number | undefined;
|
4369
4369
|
opportunityTag?: string | undefined;
|
4370
|
+
opportunityChain?: number | undefined;
|
4370
4371
|
};
|
4371
4372
|
headers: unknown;
|
4372
4373
|
response: {
|
@@ -4406,6 +4407,7 @@ export declare const v4: Elysia<"/v4", {
|
|
4406
4407
|
test?: boolean | undefined;
|
4407
4408
|
page?: number | undefined;
|
4408
4409
|
opportunityTag?: string | undefined;
|
4410
|
+
opportunityChain?: number | undefined;
|
4409
4411
|
};
|
4410
4412
|
headers: unknown;
|
4411
4413
|
response: {
|