@merkl/api 1.0.8 → 1.0.11
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 +78 -20
- package/dist/src/engine/deprecated/dynamicData/implementations/default.d.ts +1 -1
- package/dist/src/engine/implementations/Erc20/subTypes/implementations/aave/metadata.d.ts +1 -1
- package/dist/src/engine/implementations/Erc20/subTypes/implementations/hypurrfiIsolatedMarket/metadata.d.ts +1 -1
- package/dist/src/engine/implementations/Erc20/subTypes/implementations/uniswapV2/metadata.d.ts +1 -1
- package/dist/src/engine/implementations/Erc20/subTypes/implementations/uniswapV2/mimswap/metadata.d.ts +1 -1
- package/dist/src/engine/implementations/Erc20/subTypes/index.d.ts +2 -1
- package/dist/src/engine/implementations/FraxLend/metadataBorrow.d.ts +2 -2
- package/dist/src/engine/implementations/FraxLend/metadataCollateral.d.ts +1 -1
- package/dist/src/engine/implementations/JsonAirdrop/metadata.d.ts +2 -2
- package/dist/src/engine/tvl/factory.d.ts +1 -1
- package/dist/src/index.d.ts +39 -10
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +6 -2
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +16 -2
- package/dist/src/modules/v4/campaign/campaign.test.controller.d.ts +9 -3
- package/dist/src/modules/v4/creator/creator.controller.d.ts +4 -0
- package/dist/src/modules/v4/creator/creator.service.d.ts +4 -0
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +6 -2
- package/dist/src/modules/v4/opportunity/opportunity.converter.d.ts +2 -0
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +23 -3
- package/dist/src/modules/v4/payload/payload.controller.d.ts +1 -1
- package/dist/src/modules/v4/payload/payload.service.d.ts +1 -1
- package/dist/src/modules/v4/programPayload/programPayload.controller.d.ts +3 -1
- package/dist/src/modules/v4/programPayload/programPayload.repository.d.ts +45 -2
- package/dist/src/modules/v4/programPayload/programPayload.service.d.ts +2 -0
- package/dist/src/modules/v4/protocol/protocol.model.d.ts +1 -1
- package/dist/src/modules/v4/reward/reward.service.d.ts +4 -0
- package/dist/src/modules/v4/router.d.ts +37 -9
- package/dist/src/modules/v4/token/token.controller.d.ts +8 -0
- package/dist/src/modules/v4/token/token.model.d.ts +2 -0
- package/dist/src/modules/v4/token/token.service.d.ts +18 -0
- package/dist/src/routes/v3/opportunity.d.ts +1 -0
- package/dist/src/routes/v3/payload.d.ts +1 -1
- package/dist/src/routes/v3/router.d.ts +2 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -3
package/package.json
CHANGED
@@ -6,13 +6,16 @@
|
|
6
6
|
"files": [
|
7
7
|
"dist"
|
8
8
|
],
|
9
|
-
"scripts": {
|
9
|
+
"scripts": {
|
10
|
+
"type": "bun tsgo"
|
11
|
+
},
|
10
12
|
"dependencies": {
|
11
13
|
"@elysiajs/eden": "^1.1.3"
|
12
14
|
},
|
13
15
|
"devDependencies": {
|
14
16
|
"elysia": "^1.3.1",
|
15
|
-
"@apps/api": "workspace:*"
|
17
|
+
"@apps/api": "workspace:*",
|
18
|
+
"@typescript/native-preview": "^7.0.0-dev.20250529.1"
|
16
19
|
},
|
17
20
|
"exports": {
|
18
21
|
".": "./src/index.ts",
|
@@ -23,5 +26,5 @@
|
|
23
26
|
"registry": "https://registry.npmjs.org/"
|
24
27
|
},
|
25
28
|
"packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447",
|
26
|
-
"version": "1.0.
|
29
|
+
"version": "1.0.11"
|
27
30
|
}
|