@merkl/api 1.3.74 → 1.3.75
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 +29 -35
- package/dist/src/index.d.ts +435 -437
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +79 -79
- package/dist/src/modules/v4/campaign/campaign.test.controller.d.ts +237 -237
- package/dist/src/modules/v4/coingecko/coingecko.service.js.map +1 -1
- package/dist/src/modules/v4/priceSource/priceSource.controller.d.ts +76 -78
- package/dist/src/modules/v4/priceSource/priceSource.controller.js.map +1 -1
- package/dist/src/modules/v4/priceSource/priceSource.model.d.ts +2 -10
- package/dist/src/modules/v4/priceSource/priceSource.model.js.map +1 -1
- package/dist/src/modules/v4/priceSource/priceSource.repository.d.ts +3 -2
- package/dist/src/modules/v4/priceSource/priceSource.repository.js.map +1 -1
- package/dist/src/modules/v4/priceSource/priceSource.service.js.map +1 -1
- package/dist/src/modules/v4/router.d.ts +392 -394
- package/dist/src/modules/v4/token/token.service.js.map +1 -1
- package/package.json +1 -1
package/dist/src/eden/index.d.ts
CHANGED
@@ -9225,8 +9225,7 @@ declare const eden: {
|
|
9225
9225
|
};
|
9226
9226
|
}>>;
|
9227
9227
|
patch: (body: {
|
9228
|
-
|
9229
|
-
type?: "ADDRESS" | "SYMBOL" | undefined;
|
9228
|
+
addressOrSymbol?: string | undefined;
|
9230
9229
|
method?: "COINGECKO" | "CONSTANT" | "DEFILLAMA" | "DEXSCREENER" | "EQUAL_TO" | "ERC4626" | "INDEXCOOP" | "ONCHAIN_CALL" | "UNISWAP_V2" | undefined;
|
9231
9230
|
args?: {} | undefined;
|
9232
9231
|
protected?: boolean | undefined;
|
@@ -9257,6 +9256,33 @@ declare const eden: {
|
|
9257
9256
|
expected?: string | undefined;
|
9258
9257
|
};
|
9259
9258
|
}>>;
|
9259
|
+
delete: (body: unknown, options: {
|
9260
|
+
fetch?: RequestInit | undefined;
|
9261
|
+
headers: {
|
9262
|
+
authorization: string;
|
9263
|
+
};
|
9264
|
+
query?: Record<string, unknown> | undefined;
|
9265
|
+
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
9266
|
+
200: {
|
9267
|
+
id: number;
|
9268
|
+
type: import("@package/databases").PriceSourceType;
|
9269
|
+
protected: boolean;
|
9270
|
+
identifier: string;
|
9271
|
+
method: import("@package/databases").PriceSourceMethod;
|
9272
|
+
args: import("@prisma/client/runtime/client").JsonValue;
|
9273
|
+
value: number | null;
|
9274
|
+
updatedAt: number | null;
|
9275
|
+
};
|
9276
|
+
422: {
|
9277
|
+
type: "validation";
|
9278
|
+
on: string;
|
9279
|
+
summary?: string | undefined;
|
9280
|
+
message?: string | undefined;
|
9281
|
+
found?: unknown;
|
9282
|
+
property?: string | undefined;
|
9283
|
+
expected?: string | undefined;
|
9284
|
+
};
|
9285
|
+
}>>;
|
9260
9286
|
}) & {
|
9261
9287
|
get: (options?: {
|
9262
9288
|
fetch?: RequestInit | undefined;
|
@@ -9275,8 +9301,7 @@ declare const eden: {
|
|
9275
9301
|
}[];
|
9276
9302
|
}>>;
|
9277
9303
|
post: (body: {
|
9278
|
-
|
9279
|
-
type: "ADDRESS" | "SYMBOL";
|
9304
|
+
addressOrSymbol: string;
|
9280
9305
|
method: "COINGECKO" | "CONSTANT" | "DEFILLAMA" | "DEXSCREENER" | "EQUAL_TO" | "ERC4626" | "INDEXCOOP" | "ONCHAIN_CALL" | "UNISWAP_V2";
|
9281
9306
|
args: {};
|
9282
9307
|
protected?: boolean | undefined;
|
@@ -9329,37 +9354,6 @@ declare const eden: {
|
|
9329
9354
|
};
|
9330
9355
|
}>>;
|
9331
9356
|
}) & {};
|
9332
|
-
symbol: ((params: {
|
9333
|
-
addressOrSymbol: string | number;
|
9334
|
-
}) => {
|
9335
|
-
delete: (body: unknown, options: {
|
9336
|
-
fetch?: RequestInit | undefined;
|
9337
|
-
headers: {
|
9338
|
-
authorization: string;
|
9339
|
-
};
|
9340
|
-
query?: Record<string, unknown> | undefined;
|
9341
|
-
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
9342
|
-
200: {
|
9343
|
-
id: number;
|
9344
|
-
type: import("@package/databases").PriceSourceType;
|
9345
|
-
protected: boolean;
|
9346
|
-
identifier: string;
|
9347
|
-
method: import("@package/databases").PriceSourceMethod;
|
9348
|
-
args: import("@prisma/client/runtime/client").JsonValue;
|
9349
|
-
value: number | null;
|
9350
|
-
updatedAt: number | null;
|
9351
|
-
};
|
9352
|
-
422: {
|
9353
|
-
type: "validation";
|
9354
|
-
on: string;
|
9355
|
-
summary?: string | undefined;
|
9356
|
-
message?: string | undefined;
|
9357
|
-
found?: unknown;
|
9358
|
-
property?: string | undefined;
|
9359
|
-
expected?: string | undefined;
|
9360
|
-
};
|
9361
|
-
}>>;
|
9362
|
-
}) & {};
|
9363
9357
|
};
|
9364
9358
|
};
|
9365
9359
|
"program-payload": {
|