@merkl/api 1.1.4 → 1.1.6
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 +136 -194
- package/dist/src/engine/implementations/Erc20/subTypes/index.d.ts +2 -1
- package/dist/src/index.d.ts +68 -97
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +68 -97
- package/dist/src/modules/v4/programPayload/programPayload.repository.d.ts +68 -0
- package/dist/src/modules/v4/router.d.ts +68 -97
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/src/eden/index.d.ts
CHANGED
@@ -2080,103 +2080,74 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
2080
2080
|
};
|
2081
2081
|
headers: unknown;
|
2082
2082
|
response: {
|
2083
|
-
200:
|
2084
|
-
|
2085
|
-
|
2086
|
-
|
2087
|
-
|
2088
|
-
|
2089
|
-
|
2090
|
-
|
2091
|
-
|
2092
|
-
|
2093
|
-
|
2094
|
-
|
2095
|
-
|
2096
|
-
|
2097
|
-
|
2098
|
-
|
2099
|
-
|
2100
|
-
|
2101
|
-
|
2102
|
-
|
2103
|
-
|
2104
|
-
|
2105
|
-
|
2106
|
-
|
2107
|
-
|
2108
|
-
|
2109
|
-
|
2110
|
-
|
2111
|
-
|
2112
|
-
|
2113
|
-
|
2114
|
-
|
2115
|
-
|
2116
|
-
|
2117
|
-
|
2118
|
-
|
2119
|
-
|
2120
|
-
|
2121
|
-
|
2122
|
-
|
2123
|
-
|
2124
|
-
|
2125
|
-
|
2126
|
-
|
2127
|
-
|
2128
|
-
|
2129
|
-
|
2130
|
-
|
2131
|
-
|
2132
|
-
|
2133
|
-
|
2134
|
-
|
2135
|
-
|
2136
|
-
|
2137
|
-
|
2138
|
-
|
2139
|
-
|
2140
|
-
|
2141
|
-
|
2142
|
-
|
2143
|
-
|
2144
|
-
|
2145
|
-
|
2146
|
-
|
2147
|
-
|
2148
|
-
|
2149
|
-
|
2150
|
-
|
2151
|
-
type: "TOKEN" | "PRETGE" | "POINT";
|
2152
|
-
icon: string;
|
2153
|
-
isNative: boolean;
|
2154
|
-
isTest: boolean;
|
2155
|
-
verified: boolean;
|
2156
|
-
}[];
|
2157
|
-
tvl: number;
|
2158
|
-
description: string;
|
2159
|
-
id: string;
|
2160
|
-
status: string;
|
2161
|
-
chainId: number;
|
2162
|
-
action: string;
|
2163
|
-
type: string;
|
2164
|
-
chain: {
|
2165
|
-
explorers?: {
|
2166
|
-
chainId: number;
|
2167
|
-
type: "ETHERSCAN" | "BLOCKSCOUT";
|
2168
|
-
url: string;
|
2169
|
-
}[] | undefined;
|
2170
|
-
name: string;
|
2171
|
-
id: number;
|
2172
|
-
icon: string;
|
2173
|
-
};
|
2174
|
-
identifier: string;
|
2175
|
-
howToSteps: string[];
|
2176
|
-
dailyRewards: number;
|
2177
|
-
tags: string[];
|
2178
|
-
lastCampaignCreatedAt: number;
|
2179
|
-
} | null)[];
|
2083
|
+
200: string;
|
2084
|
+
422: {
|
2085
|
+
type: "validation";
|
2086
|
+
on: string;
|
2087
|
+
summary?: string;
|
2088
|
+
message?: string;
|
2089
|
+
found?: unknown;
|
2090
|
+
property?: string;
|
2091
|
+
expected?: string;
|
2092
|
+
};
|
2093
|
+
} | {
|
2094
|
+
200: number;
|
2095
|
+
422: {
|
2096
|
+
type: "validation";
|
2097
|
+
on: string;
|
2098
|
+
summary?: string;
|
2099
|
+
message?: string;
|
2100
|
+
found?: unknown;
|
2101
|
+
property?: string;
|
2102
|
+
expected?: string;
|
2103
|
+
};
|
2104
|
+
} | {
|
2105
|
+
200: false;
|
2106
|
+
422: {
|
2107
|
+
type: "validation";
|
2108
|
+
on: string;
|
2109
|
+
summary?: string;
|
2110
|
+
message?: string;
|
2111
|
+
found?: unknown;
|
2112
|
+
property?: string;
|
2113
|
+
expected?: string;
|
2114
|
+
};
|
2115
|
+
} | {
|
2116
|
+
200: true;
|
2117
|
+
422: {
|
2118
|
+
type: "validation";
|
2119
|
+
on: string;
|
2120
|
+
summary?: string;
|
2121
|
+
message?: string;
|
2122
|
+
found?: unknown;
|
2123
|
+
property?: string;
|
2124
|
+
expected?: string;
|
2125
|
+
};
|
2126
|
+
} | {
|
2127
|
+
200: object;
|
2128
|
+
422: {
|
2129
|
+
type: "validation";
|
2130
|
+
on: string;
|
2131
|
+
summary?: string;
|
2132
|
+
message?: string;
|
2133
|
+
found?: unknown;
|
2134
|
+
property?: string;
|
2135
|
+
expected?: string;
|
2136
|
+
};
|
2137
|
+
} | {
|
2138
|
+
[x: string]: any;
|
2139
|
+
200: any;
|
2140
|
+
422: {
|
2141
|
+
type: "validation";
|
2142
|
+
on: string;
|
2143
|
+
summary?: string;
|
2144
|
+
message?: string;
|
2145
|
+
found?: unknown;
|
2146
|
+
property?: string;
|
2147
|
+
expected?: string;
|
2148
|
+
};
|
2149
|
+
} | {
|
2150
|
+
200: unknown;
|
2180
2151
|
422: {
|
2181
2152
|
type: "validation";
|
2182
2153
|
on: string;
|
@@ -14037,103 +14008,74 @@ export declare const MerklApi: (domain: string | import("elysia").default<"", {
|
|
14037
14008
|
};
|
14038
14009
|
fetch?: RequestInit | undefined;
|
14039
14010
|
}) => Promise<import("@elysiajs/eden").Treaty.TreatyResponse<{
|
14040
|
-
200:
|
14041
|
-
|
14042
|
-
|
14043
|
-
|
14044
|
-
|
14045
|
-
|
14046
|
-
|
14047
|
-
|
14048
|
-
|
14049
|
-
|
14050
|
-
|
14051
|
-
|
14052
|
-
|
14053
|
-
|
14054
|
-
|
14055
|
-
|
14056
|
-
|
14057
|
-
|
14058
|
-
|
14059
|
-
|
14060
|
-
|
14061
|
-
|
14062
|
-
|
14063
|
-
|
14064
|
-
|
14065
|
-
|
14066
|
-
|
14067
|
-
|
14068
|
-
|
14069
|
-
|
14070
|
-
|
14071
|
-
|
14072
|
-
|
14073
|
-
|
14074
|
-
|
14075
|
-
|
14076
|
-
|
14077
|
-
|
14078
|
-
|
14079
|
-
|
14080
|
-
|
14081
|
-
|
14082
|
-
|
14083
|
-
|
14084
|
-
|
14085
|
-
|
14086
|
-
|
14087
|
-
|
14088
|
-
|
14089
|
-
|
14090
|
-
|
14091
|
-
|
14092
|
-
|
14093
|
-
|
14094
|
-
|
14095
|
-
|
14096
|
-
|
14097
|
-
|
14098
|
-
|
14099
|
-
|
14100
|
-
|
14101
|
-
|
14102
|
-
|
14103
|
-
|
14104
|
-
|
14105
|
-
|
14106
|
-
|
14107
|
-
|
14108
|
-
type: "TOKEN" | "PRETGE" | "POINT";
|
14109
|
-
icon: string;
|
14110
|
-
isNative: boolean;
|
14111
|
-
isTest: boolean;
|
14112
|
-
verified: boolean;
|
14113
|
-
}[];
|
14114
|
-
tvl: number;
|
14115
|
-
description: string;
|
14116
|
-
id: string;
|
14117
|
-
status: string;
|
14118
|
-
chainId: number;
|
14119
|
-
action: string;
|
14120
|
-
type: string;
|
14121
|
-
chain: {
|
14122
|
-
explorers?: {
|
14123
|
-
chainId: number;
|
14124
|
-
type: "ETHERSCAN" | "BLOCKSCOUT";
|
14125
|
-
url: string;
|
14126
|
-
}[] | undefined;
|
14127
|
-
name: string;
|
14128
|
-
id: number;
|
14129
|
-
icon: string;
|
14130
|
-
};
|
14131
|
-
identifier: string;
|
14132
|
-
howToSteps: string[];
|
14133
|
-
dailyRewards: number;
|
14134
|
-
tags: string[];
|
14135
|
-
lastCampaignCreatedAt: number;
|
14136
|
-
} | null)[];
|
14011
|
+
200: string;
|
14012
|
+
422: {
|
14013
|
+
type: "validation";
|
14014
|
+
on: string;
|
14015
|
+
summary?: string;
|
14016
|
+
message?: string;
|
14017
|
+
found?: unknown;
|
14018
|
+
property?: string;
|
14019
|
+
expected?: string;
|
14020
|
+
};
|
14021
|
+
} | {
|
14022
|
+
200: number;
|
14023
|
+
422: {
|
14024
|
+
type: "validation";
|
14025
|
+
on: string;
|
14026
|
+
summary?: string;
|
14027
|
+
message?: string;
|
14028
|
+
found?: unknown;
|
14029
|
+
property?: string;
|
14030
|
+
expected?: string;
|
14031
|
+
};
|
14032
|
+
} | {
|
14033
|
+
200: false;
|
14034
|
+
422: {
|
14035
|
+
type: "validation";
|
14036
|
+
on: string;
|
14037
|
+
summary?: string;
|
14038
|
+
message?: string;
|
14039
|
+
found?: unknown;
|
14040
|
+
property?: string;
|
14041
|
+
expected?: string;
|
14042
|
+
};
|
14043
|
+
} | {
|
14044
|
+
200: true;
|
14045
|
+
422: {
|
14046
|
+
type: "validation";
|
14047
|
+
on: string;
|
14048
|
+
summary?: string;
|
14049
|
+
message?: string;
|
14050
|
+
found?: unknown;
|
14051
|
+
property?: string;
|
14052
|
+
expected?: string;
|
14053
|
+
};
|
14054
|
+
} | {
|
14055
|
+
200: object;
|
14056
|
+
422: {
|
14057
|
+
type: "validation";
|
14058
|
+
on: string;
|
14059
|
+
summary?: string;
|
14060
|
+
message?: string;
|
14061
|
+
found?: unknown;
|
14062
|
+
property?: string;
|
14063
|
+
expected?: string;
|
14064
|
+
};
|
14065
|
+
} | {
|
14066
|
+
[x: string]: any;
|
14067
|
+
200: any;
|
14068
|
+
422: {
|
14069
|
+
type: "validation";
|
14070
|
+
on: string;
|
14071
|
+
summary?: string;
|
14072
|
+
message?: string;
|
14073
|
+
found?: unknown;
|
14074
|
+
property?: string;
|
14075
|
+
expected?: string;
|
14076
|
+
};
|
14077
|
+
} | {
|
14078
|
+
200: unknown;
|
14137
14079
|
422: {
|
14138
14080
|
type: "validation";
|
14139
14081
|
on: string;
|
package/dist/src/index.d.ts
CHANGED
@@ -2081,103 +2081,74 @@ declare const app: Elysia<"", {
|
|
2081
2081
|
};
|
2082
2082
|
headers: unknown;
|
2083
2083
|
response: {
|
2084
|
-
200:
|
2085
|
-
|
2086
|
-
|
2087
|
-
|
2088
|
-
|
2089
|
-
|
2090
|
-
|
2091
|
-
|
2092
|
-
|
2093
|
-
|
2094
|
-
|
2095
|
-
|
2096
|
-
|
2097
|
-
|
2098
|
-
|
2099
|
-
|
2100
|
-
|
2101
|
-
|
2102
|
-
|
2103
|
-
|
2104
|
-
|
2105
|
-
|
2106
|
-
|
2107
|
-
|
2108
|
-
|
2109
|
-
|
2110
|
-
|
2111
|
-
|
2112
|
-
|
2113
|
-
|
2114
|
-
|
2115
|
-
|
2116
|
-
|
2117
|
-
|
2118
|
-
|
2119
|
-
|
2120
|
-
|
2121
|
-
|
2122
|
-
|
2123
|
-
|
2124
|
-
|
2125
|
-
|
2126
|
-
|
2127
|
-
|
2128
|
-
|
2129
|
-
|
2130
|
-
|
2131
|
-
|
2132
|
-
|
2133
|
-
|
2134
|
-
|
2135
|
-
|
2136
|
-
|
2137
|
-
|
2138
|
-
|
2139
|
-
|
2140
|
-
|
2141
|
-
|
2142
|
-
|
2143
|
-
|
2144
|
-
|
2145
|
-
|
2146
|
-
|
2147
|
-
|
2148
|
-
|
2149
|
-
|
2150
|
-
|
2151
|
-
|
2152
|
-
type: "TOKEN" | "PRETGE" | "POINT";
|
2153
|
-
icon: string;
|
2154
|
-
isNative: boolean;
|
2155
|
-
isTest: boolean;
|
2156
|
-
verified: boolean;
|
2157
|
-
}[];
|
2158
|
-
tvl: number;
|
2159
|
-
description: string;
|
2160
|
-
id: string;
|
2161
|
-
status: string;
|
2162
|
-
chainId: number;
|
2163
|
-
action: string;
|
2164
|
-
type: string;
|
2165
|
-
chain: {
|
2166
|
-
explorers?: {
|
2167
|
-
chainId: number;
|
2168
|
-
type: "ETHERSCAN" | "BLOCKSCOUT";
|
2169
|
-
url: string;
|
2170
|
-
}[] | undefined;
|
2171
|
-
name: string;
|
2172
|
-
id: number;
|
2173
|
-
icon: string;
|
2174
|
-
};
|
2175
|
-
identifier: string;
|
2176
|
-
howToSteps: string[];
|
2177
|
-
dailyRewards: number;
|
2178
|
-
tags: string[];
|
2179
|
-
lastCampaignCreatedAt: number;
|
2180
|
-
} | null)[];
|
2084
|
+
200: string;
|
2085
|
+
422: {
|
2086
|
+
type: "validation";
|
2087
|
+
on: string;
|
2088
|
+
summary?: string;
|
2089
|
+
message?: string;
|
2090
|
+
found?: unknown;
|
2091
|
+
property?: string;
|
2092
|
+
expected?: string;
|
2093
|
+
};
|
2094
|
+
} | {
|
2095
|
+
200: number;
|
2096
|
+
422: {
|
2097
|
+
type: "validation";
|
2098
|
+
on: string;
|
2099
|
+
summary?: string;
|
2100
|
+
message?: string;
|
2101
|
+
found?: unknown;
|
2102
|
+
property?: string;
|
2103
|
+
expected?: string;
|
2104
|
+
};
|
2105
|
+
} | {
|
2106
|
+
200: false;
|
2107
|
+
422: {
|
2108
|
+
type: "validation";
|
2109
|
+
on: string;
|
2110
|
+
summary?: string;
|
2111
|
+
message?: string;
|
2112
|
+
found?: unknown;
|
2113
|
+
property?: string;
|
2114
|
+
expected?: string;
|
2115
|
+
};
|
2116
|
+
} | {
|
2117
|
+
200: true;
|
2118
|
+
422: {
|
2119
|
+
type: "validation";
|
2120
|
+
on: string;
|
2121
|
+
summary?: string;
|
2122
|
+
message?: string;
|
2123
|
+
found?: unknown;
|
2124
|
+
property?: string;
|
2125
|
+
expected?: string;
|
2126
|
+
};
|
2127
|
+
} | {
|
2128
|
+
200: object;
|
2129
|
+
422: {
|
2130
|
+
type: "validation";
|
2131
|
+
on: string;
|
2132
|
+
summary?: string;
|
2133
|
+
message?: string;
|
2134
|
+
found?: unknown;
|
2135
|
+
property?: string;
|
2136
|
+
expected?: string;
|
2137
|
+
};
|
2138
|
+
} | {
|
2139
|
+
[x: string]: any;
|
2140
|
+
200: any;
|
2141
|
+
422: {
|
2142
|
+
type: "validation";
|
2143
|
+
on: string;
|
2144
|
+
summary?: string;
|
2145
|
+
message?: string;
|
2146
|
+
found?: unknown;
|
2147
|
+
property?: string;
|
2148
|
+
expected?: string;
|
2149
|
+
};
|
2150
|
+
} | {
|
2151
|
+
200: unknown;
|
2181
2152
|
422: {
|
2182
2153
|
type: "validation";
|
2183
2154
|
on: string;
|