@merkl/api 0.17.0 → 0.17.1
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 +200 -50
- package/dist/src/index.d.ts +40 -10
- package/dist/src/modules/v4/protocol/index.d.ts +0 -2
- package/dist/src/modules/v4/protocol/index.js +0 -8
- package/dist/src/modules/v4/protocol/protocol.controller.d.ts +40 -10
- package/dist/src/modules/v4/protocol/protocol.controller.js +7 -9
- package/dist/src/modules/v4/router.d.ts +40 -10
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +1 -1
@@ -1280,8 +1280,18 @@ export declare const v4: Elysia<"/v4", false, {
|
|
1280
1280
|
};
|
1281
1281
|
headers: unknown;
|
1282
1282
|
response: {
|
1283
|
-
|
1284
|
-
|
1283
|
+
200: ({
|
1284
|
+
name: string;
|
1285
|
+
url: string;
|
1286
|
+
description: string;
|
1287
|
+
id: string;
|
1288
|
+
tags: string[];
|
1289
|
+
icon: string;
|
1290
|
+
} & {
|
1291
|
+
dailyRewards?: number | undefined;
|
1292
|
+
numberOfLiveCampaigns?: number | undefined;
|
1293
|
+
opportunityLiveTags?: string[] | undefined;
|
1294
|
+
})[];
|
1285
1295
|
};
|
1286
1296
|
};
|
1287
1297
|
};
|
@@ -1295,8 +1305,7 @@ export declare const v4: Elysia<"/v4", false, {
|
|
1295
1305
|
query: unknown;
|
1296
1306
|
headers: unknown;
|
1297
1307
|
response: {
|
1298
|
-
|
1299
|
-
200: any;
|
1308
|
+
200: number;
|
1300
1309
|
};
|
1301
1310
|
};
|
1302
1311
|
};
|
@@ -1312,8 +1321,17 @@ export declare const v4: Elysia<"/v4", false, {
|
|
1312
1321
|
query: unknown;
|
1313
1322
|
headers: unknown;
|
1314
1323
|
response: {
|
1315
|
-
|
1316
|
-
|
1324
|
+
200: {
|
1325
|
+
name: string;
|
1326
|
+
url: string;
|
1327
|
+
description: string;
|
1328
|
+
id: string;
|
1329
|
+
tags: string[];
|
1330
|
+
icon: string;
|
1331
|
+
dailyRewards?: number | undefined;
|
1332
|
+
numberOfLiveCampaigns?: number | undefined;
|
1333
|
+
opportunityLiveTags?: string[] | undefined;
|
1334
|
+
} | null;
|
1317
1335
|
};
|
1318
1336
|
};
|
1319
1337
|
};
|
@@ -1336,8 +1354,14 @@ export declare const v4: Elysia<"/v4", false, {
|
|
1336
1354
|
authorization: string;
|
1337
1355
|
};
|
1338
1356
|
response: {
|
1339
|
-
|
1340
|
-
|
1357
|
+
200: {
|
1358
|
+
name: string;
|
1359
|
+
url: string;
|
1360
|
+
description: string;
|
1361
|
+
id: string;
|
1362
|
+
tags: string[];
|
1363
|
+
icon: string;
|
1364
|
+
};
|
1341
1365
|
};
|
1342
1366
|
};
|
1343
1367
|
};
|
@@ -1360,8 +1384,14 @@ export declare const v4: Elysia<"/v4", false, {
|
|
1360
1384
|
authorization: string;
|
1361
1385
|
};
|
1362
1386
|
response: {
|
1363
|
-
|
1364
|
-
|
1387
|
+
200: {
|
1388
|
+
name: string;
|
1389
|
+
url: string;
|
1390
|
+
description: string;
|
1391
|
+
id: string;
|
1392
|
+
tags: string[];
|
1393
|
+
icon: string;
|
1394
|
+
};
|
1365
1395
|
};
|
1366
1396
|
};
|
1367
1397
|
};
|