@merkl/api 0.10.133 → 0.10.134
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 +82 -0
- package/dist/src/index.d.ts +32 -0
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +32 -0
- package/dist/src/modules/v4/opportunity/opportunity.controller.js +7 -2
- package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +4 -0
- package/dist/src/modules/v4/opportunity/opportunity.model.js +3 -0
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +3 -0
- package/dist/src/modules/v4/opportunity/opportunity.repository.js +10 -0
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +4 -0
- package/dist/src/modules/v4/opportunity/opportunity.service.js +3 -0
- package/dist/src/modules/v4/router.d.ts +32 -0
- package/dist/src/routes/v3/ERC20Campaigns.d.ts +32 -0
- package/dist/src/routes/v3/blacklist.d.ts +32 -0
- package/dist/src/routes/v3/campaigns.d.ts +32 -0
- package/dist/src/routes/v3/campaignsInfo.d.ts +32 -0
- package/dist/src/routes/v3/multiChainPositions.d.ts +32 -0
- package/dist/src/routes/v3/opportunity.d.ts +32 -0
- package/dist/src/routes/v3/positions.d.ts +32 -0
- package/dist/src/routes/v3/rewards.d.ts +32 -0
- package/dist/src/routes/v3/updates.d.ts +32 -0
- package/dist/src/routes/v3/userRewards.d.ts +32 -0
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +1 -1
| @@ -444,6 +444,38 @@ declare const _default: (app: App) => import("elysia").default<"", false, { | |
| 444 444 | 
             
                            };
         | 
| 445 445 | 
             
                        };
         | 
| 446 446 | 
             
                    };
         | 
| 447 | 
            +
                } & {
         | 
| 448 | 
            +
                    opportunities: {
         | 
| 449 | 
            +
                        aggregate: {
         | 
| 450 | 
            +
                            ":field": {
         | 
| 451 | 
            +
                                get: {
         | 
| 452 | 
            +
                                    body: unknown;
         | 
| 453 | 
            +
                                    params: {
         | 
| 454 | 
            +
                                        field: never;
         | 
| 455 | 
            +
                                    };
         | 
| 456 | 
            +
                                    query: {
         | 
| 457 | 
            +
                                        sort?: undefined;
         | 
| 458 | 
            +
                                        name?: string | undefined;
         | 
| 459 | 
            +
                                        tokens?: string | undefined;
         | 
| 460 | 
            +
                                        status?: string | undefined;
         | 
| 461 | 
            +
                                        items?: number | undefined;
         | 
| 462 | 
            +
                                        tags?: string | undefined;
         | 
| 463 | 
            +
                                        chainId?: string | undefined;
         | 
| 464 | 
            +
                                        page?: number | undefined;
         | 
| 465 | 
            +
                                        action?: string | undefined;
         | 
| 466 | 
            +
                                        mainProtocolId?: string | undefined;
         | 
| 467 | 
            +
                                        order?: undefined;
         | 
| 468 | 
            +
                                    };
         | 
| 469 | 
            +
                                    headers: unknown;
         | 
| 470 | 
            +
                                    response: {
         | 
| 471 | 
            +
                                        200: {
         | 
| 472 | 
            +
                                            sum: File;
         | 
| 473 | 
            +
                                        };
         | 
| 474 | 
            +
                                    };
         | 
| 475 | 
            +
                                };
         | 
| 476 | 
            +
                            };
         | 
| 477 | 
            +
                        };
         | 
| 478 | 
            +
                    };
         | 
| 447 479 | 
             
                };
         | 
| 448 480 | 
             
            } & {
         | 
| 449 481 | 
             
                v4: {
         |