@merkl/api 0.10.391 → 0.10.393
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/database/api/.generated/edge.js +9 -7
- package/dist/database/api/.generated/index-browser.js +4 -4
- package/dist/database/api/.generated/index.d.ts +3687 -491
- package/dist/database/api/.generated/index.js +9 -7
- package/dist/database/api/.generated/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
- package/dist/database/api/.generated/libquery_engine-linux-arm64-openssl-1.1.x.so.node +0 -0
- package/dist/database/api/.generated/libquery_engine-linux-musl-arm64-openssl-3.0.x.so.node +0 -0
- package/dist/database/api/.generated/package.json +1 -1
- package/dist/database/api/.generated/runtime/edge-esm.js +18 -18
- package/dist/database/api/.generated/runtime/edge.js +18 -18
- package/dist/database/api/.generated/runtime/index-browser.d.ts +1 -1
- package/dist/database/api/.generated/runtime/library.d.ts +107 -38
- package/dist/database/api/.generated/runtime/library.js +53 -53
- package/dist/database/api/.generated/runtime/react-native.js +26 -26
- package/dist/database/api/.generated/runtime/wasm.js +19 -19
- package/dist/database/api/.generated/wasm.js +4 -4
- package/dist/database/engine/.generated/edge.js +9 -7
- package/dist/database/engine/.generated/index-browser.js +4 -4
- package/dist/database/engine/.generated/index.d.ts +1891 -257
- package/dist/database/engine/.generated/index.js +9 -7
- package/dist/database/engine/.generated/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
- package/dist/database/engine/.generated/libquery_engine-linux-arm64-openssl-1.1.x.so.node +0 -0
- package/dist/database/engine/.generated/libquery_engine-linux-musl-arm64-openssl-3.0.x.so.node +0 -0
- package/dist/database/engine/.generated/package.json +1 -1
- package/dist/database/engine/.generated/runtime/edge-esm.js +18 -18
- package/dist/database/engine/.generated/runtime/edge.js +18 -18
- package/dist/database/engine/.generated/runtime/index-browser.d.ts +1 -1
- package/dist/database/engine/.generated/runtime/library.d.ts +107 -38
- package/dist/database/engine/.generated/runtime/library.js +53 -53
- package/dist/database/engine/.generated/runtime/react-native.js +26 -26
- package/dist/database/engine/.generated/runtime/wasm.js +19 -19
- package/dist/database/engine/.generated/wasm.js +4 -4
- package/dist/src/backgroundJobs/jobs/campaignsCacheUpdater.d.ts +12 -2
- package/dist/src/backgroundJobs/jobs/health.d.ts +12 -2
- package/dist/src/backgroundJobs/jobs/opportunityUpdater.d.ts +3 -2
- package/dist/src/backgroundJobs/jobs/priceUpdater.d.ts +3 -2
- package/dist/src/backgroundJobs/jobs/sync.d.ts +12 -2
- package/dist/src/eden/index.d.ts +4021 -117
- package/dist/src/entities/opportunity.js +1 -1
- package/dist/src/hooks/checkQueryAddressValidity.d.ts +3 -2
- package/dist/src/hooks/checkQueryChainIdValidity.d.ts +3 -2
- package/dist/src/index.d.ts +1343 -49
- package/dist/src/internal/controllers/endingCampaigns.d.ts +12 -2
- package/dist/src/internal/controllers/unclaimed.d.ts +12 -2
- package/dist/src/jobs/etl/pendings.js +38 -38
- package/dist/src/jobs/etl/reward-breakdowns.js +55 -52
- package/dist/src/jobs/etl/rewards.js +37 -35
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/tokenType.d.ts +5 -1
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/helpers/tokenType.js +8 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/AaveProcessor.js +2 -3
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/processor/processorMapping.js +4 -0
- package/dist/src/libs/campaigns/campaignTypes/ERC20SubTypes/subtypesRound1.js +8 -0
- package/dist/src/modules/v4/accounting/accounting.controller.d.ts +66 -2
- package/dist/src/modules/v4/blacklist/blacklist.controller.d.ts +30 -2
- package/dist/src/modules/v4/boost/boost.controller.d.ts +12 -2
- package/dist/src/modules/v4/bucket/bucket.service.d.ts +1 -1
- package/dist/src/modules/v4/bucket/bucket.service.js +5 -0
- package/dist/src/modules/v4/campaign/campaign.controller.d.ts +78 -5
- package/dist/src/modules/v4/campaign/campaign.repository.d.ts +6 -6
- package/dist/src/modules/v4/campaign/campaign.service.d.ts +4 -4
- package/dist/src/modules/v4/chain/chain.controller.d.ts +39 -2
- package/dist/src/modules/v4/claims/claims.controller.d.ts +12 -2
- package/dist/src/modules/v4/computedValue/computedValue.controller.d.ts +39 -2
- package/dist/src/modules/v4/creator/creator.controller.d.ts +39 -2
- package/dist/src/modules/v4/dungeonKeeper/dungeonKeeper.controller.d.ts +3 -2
- package/dist/src/modules/v4/dynamicData/dynamicData.controller.d.ts +31 -3
- package/dist/src/modules/v4/enso/enso.service.d.ts +1 -1
- package/dist/src/modules/v4/explorer/explorer.controller.d.ts +12 -2
- package/dist/src/modules/v4/interaction/interaction.controller.d.ts +31 -3
- package/dist/src/modules/v4/liquidity/liquidity.controller.d.ts +12 -2
- package/dist/src/modules/v4/merklRoot/merklRoot.controller.d.ts +21 -2
- package/dist/src/modules/v4/opportunity/opportunity.controller.d.ts +118 -18
- package/dist/src/modules/v4/opportunity/opportunity.model.d.ts +1 -1
- package/dist/src/modules/v4/opportunity/opportunity.repository.d.ts +30 -30
- package/dist/src/modules/v4/opportunity/opportunity.service.d.ts +12 -12
- package/dist/src/modules/v4/price/price.controller.d.ts +48 -2
- package/dist/src/modules/v4/programPayload/programPayload.controller.d.ts +75 -2
- package/dist/src/modules/v4/programPayload/programPayload.repository.d.ts +0 -1
- package/dist/src/modules/v4/programPayload/programPayload.repository.js +3 -10
- package/dist/src/modules/v4/protocol/protocol.controller.d.ts +46 -9
- package/dist/src/modules/v4/protocol/protocol.repository.d.ts +5 -5
- package/dist/src/modules/v4/protocol/protocol.service.d.ts +2 -2
- package/dist/src/modules/v4/reward/reward.controller.d.ts +111 -2
- package/dist/src/modules/v4/reward/reward.repository.d.ts +3 -3
- package/dist/src/modules/v4/reward/reward.service.d.ts +18 -18
- package/dist/src/modules/v4/router.d.ts +973 -36
- package/dist/src/modules/v4/status/status.controller.d.ts +48 -2
- package/dist/src/modules/v4/token/token.controller.d.ts +75 -2
- package/dist/src/modules/v4/uniswapV4/uniswapV4.controller.d.ts +12 -2
- package/dist/src/modules/v4/user/user.controller.d.ts +90 -8
- package/dist/src/plugins/error-handling.plugin.d.ts +3 -2
- package/dist/src/plugins/logger.plugin.d.ts +3 -2
- package/dist/src/routes/v1/allowances.d.ts +12 -2
- package/dist/src/routes/v1/balances.d.ts +12 -2
- package/dist/src/routes/v1/prices.d.ts +12 -2
- package/dist/src/routes/v1/router.d.ts +39 -2
- package/dist/src/routes/v1/tokens.d.ts +12 -2
- package/dist/src/routes/v2/merkl.d.ts +12 -2
- package/dist/src/routes/v2/router.d.ts +12 -2
- package/dist/src/routes/v3/app.d.ts +12 -2
- package/dist/src/routes/v3/blacklist.d.ts +12 -2
- package/dist/src/routes/v3/campaign/delay.d.ts +12 -2
- package/dist/src/routes/v3/campaignClaims.d.ts +12 -2
- package/dist/src/routes/v3/campaignReport.d.ts +12 -2
- package/dist/src/routes/v3/campaignUnclaimed.d.ts +12 -2
- package/dist/src/routes/v3/campaigns.d.ts +12 -2
- package/dist/src/routes/v3/campaignsForMainParameter.d.ts +12 -2
- package/dist/src/routes/v3/campaignsInfo.d.ts +12 -2
- package/dist/src/routes/v3/campaignsRewardsReport.d.ts +12 -2
- package/dist/src/routes/v3/claims.d.ts +12 -2
- package/dist/src/routes/v3/compoundV2.d.ts +12 -2
- package/dist/src/routes/v3/createCampaign.d.ts +12 -2
- package/dist/src/routes/v3/dolomite.d.ts +12 -2
- package/dist/src/routes/v3/euler.d.ts +12 -2
- package/dist/src/routes/v3/exports/campaigns.d.ts +12 -2
- package/dist/src/routes/v3/fetch.d.ts +12 -2
- package/dist/src/routes/v3/health.d.ts +12 -2
- package/dist/src/routes/v3/lostyield.d.ts +12 -2
- package/dist/src/routes/v3/merkl.d.ts +3 -2
- package/dist/src/routes/v3/morphoMarkets.d.ts +12 -2
- package/dist/src/routes/v3/morphoVaults.d.ts +12 -2
- package/dist/src/routes/v3/multiChainPositions.d.ts +12 -2
- package/dist/src/routes/v3/opportunity.d.ts +12 -2
- package/dist/src/routes/v3/overview.d.ts +12 -2
- package/dist/src/routes/v3/parse.d.ts +12 -2
- package/dist/src/routes/v3/payload.d.ts +12 -2
- package/dist/src/routes/v3/poolInfo.d.ts +12 -2
- package/dist/src/routes/v3/positions.d.ts +12 -2
- package/dist/src/routes/v3/radiant.d.ts +12 -2
- package/dist/src/routes/v3/recipients.d.ts +12 -2
- package/dist/src/routes/v3/rewards.d.ts +12 -2
- package/dist/src/routes/v3/rewardsReport.d.ts +12 -2
- package/dist/src/routes/v3/router.d.ts +328 -3
- package/dist/src/routes/v3/silo.d.ts +12 -2
- package/dist/src/routes/v3/token.d.ts +12 -2
- package/dist/src/routes/v3/tokenUnclaimed.d.ts +12 -2
- package/dist/src/routes/v3/twt/participants.d.ts +12 -2
- package/dist/src/routes/v3/uniswapv4.d.ts +12 -2
- package/dist/src/routes/v3/updates.d.ts +12 -2
- package/dist/src/routes/v3/userRewards.d.ts +12 -2
- package/dist/src/utils/decodeCalls.js +12 -3
- package/dist/src/utils/encodeCalls.js +20 -7
- package/dist/src/utils/error.d.ts +3 -2
- package/dist/src/utils/generateCardName.js +4 -0
- package/dist/src/utils/logger.d.ts +29 -5
- package/dist/tsconfig.package.tsbuildinfo +1 -1
- package/package.json +24 -24
package/dist/src/index.d.ts
CHANGED
@@ -1,28 +1,17 @@
|
|
1
1
|
import { Elysia } from "elysia";
|
2
|
-
declare const app: Elysia<"",
|
2
|
+
declare const app: Elysia<"", {
|
3
3
|
decorator: {};
|
4
4
|
store: {};
|
5
5
|
derive: {};
|
6
6
|
resolve: {};
|
7
7
|
}, {
|
8
|
-
|
9
|
-
|
10
|
-
readonly HttpError: import("./errors").HttpError;
|
11
|
-
readonly BadRequestError: import("./errors").BadRequestError;
|
12
|
-
readonly ConflictError: import("./errors").ConflictError;
|
13
|
-
readonly NotFoundError: import("./errors").NotFoundError;
|
14
|
-
readonly UnauthorizedError: import("./errors").UnauthorizedError;
|
15
|
-
readonly InvalidParameter: import("./utils/error").InvalidParameter;
|
16
|
-
readonly UnsupportedNetwork: import("./utils/error").UnsupportedNetwork;
|
17
|
-
readonly OpportunityNotFound: import("./utils/error").OpportunityNotFound;
|
18
|
-
readonly MerkleRootNotFound: import("./utils/error").MerkleRootNotFound;
|
19
|
-
readonly ValidationError: import("elysia").ValidationError;
|
20
|
-
readonly InvalidCacheCall: import("./utils/error").InvalidCacheCall;
|
21
|
-
};
|
8
|
+
error: any;
|
9
|
+
typebox: import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>, import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>>, import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>>, import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>>, import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>>, import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>, import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>>, import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>>, import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>>, import("@sinclair/typebox").TModule<{}, {}>>, import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>, import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>>, import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>>, import("@sinclair/typebox").TModule<{}, {}>>, import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>, import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>>, import("@sinclair/typebox").TModule<{}, {}>>, import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>>, import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>, import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>>, import("@sinclair/typebox").TModule<{}, {}>>, import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>>, import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>>, import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>>, import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>>, import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>>, import("@sinclair/typebox").TModule<{}, {}>>, import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>>, import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>>, import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>>, import("@sinclair/typebox").TModule<{}, {}>>, import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>>, import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>>, import("@sinclair/typebox").TModule<{}, {}>>, import("elysia/types").MergeTypeModule<import("elysia/types").MergeTypeModule<import("@sinclair/typebox").TModule<{}, {}>, import("@sinclair/typebox").TModule<{}, {}>>, import("@sinclair/typebox").TModule<{}, {}>>>, import("@sinclair/typebox").TModule<{}, {}>>>, import("@sinclair/typebox").TModule<{}, {}>>;
|
22
10
|
}, {
|
23
11
|
schema: {};
|
24
12
|
macro: {};
|
25
13
|
macroFn: {};
|
14
|
+
parser: {};
|
26
15
|
}, {
|
27
16
|
index: {
|
28
17
|
get: {
|
@@ -55,6 +44,15 @@ declare const app: Elysia<"", false, {
|
|
55
44
|
decimals: number;
|
56
45
|
};
|
57
46
|
};
|
47
|
+
422: {
|
48
|
+
type: "validation";
|
49
|
+
on: string;
|
50
|
+
summary?: string;
|
51
|
+
message?: string;
|
52
|
+
found?: unknown;
|
53
|
+
property?: string;
|
54
|
+
expected?: string;
|
55
|
+
};
|
58
56
|
};
|
59
57
|
};
|
60
58
|
};
|
@@ -79,6 +77,15 @@ declare const app: Elysia<"", false, {
|
|
79
77
|
decimals: number;
|
80
78
|
};
|
81
79
|
};
|
80
|
+
422: {
|
81
|
+
type: "validation";
|
82
|
+
on: string;
|
83
|
+
summary?: string;
|
84
|
+
message?: string;
|
85
|
+
found?: unknown;
|
86
|
+
property?: string;
|
87
|
+
expected?: string;
|
88
|
+
};
|
82
89
|
};
|
83
90
|
};
|
84
91
|
};
|
@@ -96,6 +103,15 @@ declare const app: Elysia<"", false, {
|
|
96
103
|
rate: number;
|
97
104
|
token: string;
|
98
105
|
}[];
|
106
|
+
422: {
|
107
|
+
type: "validation";
|
108
|
+
on: string;
|
109
|
+
summary?: string;
|
110
|
+
message?: string;
|
111
|
+
found?: unknown;
|
112
|
+
property?: string;
|
113
|
+
expected?: string;
|
114
|
+
};
|
99
115
|
};
|
100
116
|
};
|
101
117
|
};
|
@@ -111,6 +127,15 @@ declare const app: Elysia<"", false, {
|
|
111
127
|
response: {
|
112
128
|
[x: string]: any;
|
113
129
|
200: any;
|
130
|
+
422: {
|
131
|
+
type: "validation";
|
132
|
+
on: string;
|
133
|
+
summary?: string;
|
134
|
+
message?: string;
|
135
|
+
found?: unknown;
|
136
|
+
property?: string;
|
137
|
+
expected?: string;
|
138
|
+
};
|
114
139
|
};
|
115
140
|
};
|
116
141
|
};
|
@@ -135,6 +160,15 @@ declare const app: Elysia<"", false, {
|
|
135
160
|
response: {
|
136
161
|
[x: string]: any;
|
137
162
|
200: any;
|
163
|
+
422: {
|
164
|
+
type: "validation";
|
165
|
+
on: string;
|
166
|
+
summary?: string;
|
167
|
+
message?: string;
|
168
|
+
found?: unknown;
|
169
|
+
property?: string;
|
170
|
+
expected?: string;
|
171
|
+
};
|
138
172
|
};
|
139
173
|
};
|
140
174
|
};
|
@@ -169,8 +203,8 @@ declare const app: Elysia<"", false, {
|
|
169
203
|
};
|
170
204
|
response: {
|
171
205
|
200: {
|
172
|
-
name: string;
|
173
206
|
type: import("../database/api/.generated").$Enums.CampaignType;
|
207
|
+
name: string;
|
174
208
|
id: string;
|
175
209
|
status: import("../database/api/.generated").$Enums.Status;
|
176
210
|
tags: string[];
|
@@ -183,6 +217,15 @@ declare const app: Elysia<"", false, {
|
|
183
217
|
apr: number;
|
184
218
|
dailyRewards: number;
|
185
219
|
} | null;
|
220
|
+
422: {
|
221
|
+
type: "validation";
|
222
|
+
on: string;
|
223
|
+
summary?: string;
|
224
|
+
message?: string;
|
225
|
+
found?: unknown;
|
226
|
+
property?: string;
|
227
|
+
expected?: string;
|
228
|
+
};
|
186
229
|
};
|
187
230
|
};
|
188
231
|
};
|
@@ -226,6 +269,15 @@ declare const app: Elysia<"", false, {
|
|
226
269
|
depositUrl: any;
|
227
270
|
tags: string[];
|
228
271
|
};
|
272
|
+
422: {
|
273
|
+
type: "validation";
|
274
|
+
on: string;
|
275
|
+
summary?: string;
|
276
|
+
message?: string;
|
277
|
+
found?: unknown;
|
278
|
+
property?: string;
|
279
|
+
expected?: string;
|
280
|
+
};
|
229
281
|
};
|
230
282
|
};
|
231
283
|
};
|
@@ -238,10 +290,10 @@ declare const app: Elysia<"", false, {
|
|
238
290
|
params: {};
|
239
291
|
query: {
|
240
292
|
sort?: string | undefined;
|
293
|
+
items?: number | undefined;
|
241
294
|
name?: string | undefined;
|
242
295
|
tokens?: string | undefined;
|
243
296
|
status?: string | undefined;
|
244
|
-
items?: number | undefined;
|
245
297
|
tags?: string | undefined;
|
246
298
|
page?: number | undefined;
|
247
299
|
chainId?: string | undefined;
|
@@ -325,15 +377,15 @@ declare const app: Elysia<"", false, {
|
|
325
377
|
icon: string;
|
326
378
|
};
|
327
379
|
protocol: {
|
380
|
+
description: string;
|
328
381
|
name: string;
|
329
382
|
url: string;
|
330
|
-
description: string;
|
331
383
|
id: string;
|
332
384
|
tags: string[];
|
333
385
|
icon: string;
|
334
386
|
} | undefined;
|
335
|
-
name: string;
|
336
387
|
type: import("../database/api/.generated").$Enums.CampaignType;
|
388
|
+
name: string;
|
337
389
|
status: import("../database/api/.generated").$Enums.Status;
|
338
390
|
tags: string[];
|
339
391
|
identifier: string;
|
@@ -342,6 +394,15 @@ declare const app: Elysia<"", false, {
|
|
342
394
|
tvl: number;
|
343
395
|
dailyRewards: number;
|
344
396
|
}[];
|
397
|
+
422: {
|
398
|
+
type: "validation";
|
399
|
+
on: string;
|
400
|
+
summary?: string;
|
401
|
+
message?: string;
|
402
|
+
found?: unknown;
|
403
|
+
property?: string;
|
404
|
+
expected?: string;
|
405
|
+
};
|
345
406
|
};
|
346
407
|
};
|
347
408
|
};
|
@@ -354,10 +415,10 @@ declare const app: Elysia<"", false, {
|
|
354
415
|
params: {};
|
355
416
|
query: {
|
356
417
|
sort?: string | undefined;
|
418
|
+
items?: number | undefined;
|
357
419
|
name?: string | undefined;
|
358
420
|
tokens?: string | undefined;
|
359
421
|
status?: string | undefined;
|
360
|
-
items?: number | undefined;
|
361
422
|
tags?: string | undefined;
|
362
423
|
page?: number | undefined;
|
363
424
|
chainId?: string | undefined;
|
@@ -371,6 +432,15 @@ declare const app: Elysia<"", false, {
|
|
371
432
|
headers: unknown;
|
372
433
|
response: {
|
373
434
|
200: number;
|
435
|
+
422: {
|
436
|
+
type: "validation";
|
437
|
+
on: string;
|
438
|
+
summary?: string;
|
439
|
+
message?: string;
|
440
|
+
found?: unknown;
|
441
|
+
property?: string;
|
442
|
+
expected?: string;
|
443
|
+
};
|
374
444
|
};
|
375
445
|
};
|
376
446
|
};
|
@@ -390,9 +460,9 @@ declare const app: Elysia<"", false, {
|
|
390
460
|
response: {
|
391
461
|
200: {
|
392
462
|
protocol?: {
|
463
|
+
description: string;
|
393
464
|
name: string;
|
394
465
|
url: string;
|
395
|
-
description: string;
|
396
466
|
id: string;
|
397
467
|
tags: string[];
|
398
468
|
icon: string;
|
@@ -444,8 +514,8 @@ declare const app: Elysia<"", false, {
|
|
444
514
|
dailyRewardsRecordId: string;
|
445
515
|
}[];
|
446
516
|
} | undefined;
|
447
|
-
name: string;
|
448
517
|
type: string;
|
518
|
+
name: string;
|
449
519
|
tokens: {
|
450
520
|
price?: number | null | undefined;
|
451
521
|
symbol: string;
|
@@ -482,6 +552,15 @@ declare const app: Elysia<"", false, {
|
|
482
552
|
info: string;
|
483
553
|
httpCode: number;
|
484
554
|
};
|
555
|
+
422: {
|
556
|
+
type: "validation";
|
557
|
+
on: string;
|
558
|
+
summary?: string;
|
559
|
+
message?: string;
|
560
|
+
found?: unknown;
|
561
|
+
property?: string;
|
562
|
+
expected?: string;
|
563
|
+
};
|
485
564
|
};
|
486
565
|
};
|
487
566
|
};
|
@@ -514,9 +593,9 @@ declare const app: Elysia<"", false, {
|
|
514
593
|
response: {
|
515
594
|
200: ({
|
516
595
|
protocol?: {
|
596
|
+
description: string;
|
517
597
|
name: string;
|
518
598
|
url: string;
|
519
|
-
description: string;
|
520
599
|
id: string;
|
521
600
|
tags: string[];
|
522
601
|
icon: string;
|
@@ -568,8 +647,8 @@ declare const app: Elysia<"", false, {
|
|
568
647
|
dailyRewardsRecordId: string;
|
569
648
|
}[];
|
570
649
|
} | undefined;
|
571
|
-
name: string;
|
572
650
|
type: string;
|
651
|
+
name: string;
|
573
652
|
tokens: {
|
574
653
|
price?: number | null | undefined;
|
575
654
|
symbol: string;
|
@@ -653,6 +732,15 @@ declare const app: Elysia<"", false, {
|
|
653
732
|
info: string;
|
654
733
|
httpCode: number;
|
655
734
|
};
|
735
|
+
422: {
|
736
|
+
type: "validation";
|
737
|
+
on: string;
|
738
|
+
summary?: string;
|
739
|
+
message?: string;
|
740
|
+
found?: unknown;
|
741
|
+
property?: string;
|
742
|
+
expected?: string;
|
743
|
+
};
|
656
744
|
};
|
657
745
|
};
|
658
746
|
};
|
@@ -673,9 +761,9 @@ declare const app: Elysia<"", false, {
|
|
673
761
|
response: {
|
674
762
|
200: {
|
675
763
|
protocol?: {
|
764
|
+
description: string;
|
676
765
|
name: string;
|
677
766
|
url: string;
|
678
|
-
description: string;
|
679
767
|
id: string;
|
680
768
|
tags: string[];
|
681
769
|
icon: string;
|
@@ -727,8 +815,8 @@ declare const app: Elysia<"", false, {
|
|
727
815
|
dailyRewardsRecordId: string;
|
728
816
|
}[];
|
729
817
|
} | undefined;
|
730
|
-
name: string;
|
731
818
|
type: string;
|
819
|
+
name: string;
|
732
820
|
tokens: {
|
733
821
|
price?: number | null | undefined;
|
734
822
|
symbol: string;
|
@@ -769,9 +857,9 @@ declare const app: Elysia<"", false, {
|
|
769
857
|
id: number;
|
770
858
|
icon: string;
|
771
859
|
} | undefined;
|
860
|
+
params: any;
|
772
861
|
type: string;
|
773
862
|
id: string;
|
774
|
-
params: any;
|
775
863
|
subType: number | null;
|
776
864
|
chain: {
|
777
865
|
name: string;
|
@@ -810,6 +898,15 @@ declare const app: Elysia<"", false, {
|
|
810
898
|
info: string;
|
811
899
|
httpCode: number;
|
812
900
|
};
|
901
|
+
422: {
|
902
|
+
type: "validation";
|
903
|
+
on: string;
|
904
|
+
summary?: string;
|
905
|
+
message?: string;
|
906
|
+
found?: unknown;
|
907
|
+
property?: string;
|
908
|
+
expected?: string;
|
909
|
+
};
|
813
910
|
};
|
814
911
|
};
|
815
912
|
};
|
@@ -826,10 +923,10 @@ declare const app: Elysia<"", false, {
|
|
826
923
|
};
|
827
924
|
query: {
|
828
925
|
sort?: string | undefined;
|
926
|
+
items?: number | undefined;
|
829
927
|
name?: string | undefined;
|
830
928
|
tokens?: string | undefined;
|
831
929
|
status?: string | undefined;
|
832
|
-
items?: number | undefined;
|
833
930
|
tags?: string | undefined;
|
834
931
|
page?: number | undefined;
|
835
932
|
chainId?: string | undefined;
|
@@ -845,6 +942,15 @@ declare const app: Elysia<"", false, {
|
|
845
942
|
200: {
|
846
943
|
sum: string;
|
847
944
|
};
|
945
|
+
422: {
|
946
|
+
type: "validation";
|
947
|
+
on: string;
|
948
|
+
summary?: string;
|
949
|
+
message?: string;
|
950
|
+
found?: unknown;
|
951
|
+
property?: string;
|
952
|
+
expected?: string;
|
953
|
+
};
|
848
954
|
};
|
849
955
|
};
|
850
956
|
};
|
@@ -862,10 +968,10 @@ declare const app: Elysia<"", false, {
|
|
862
968
|
};
|
863
969
|
query: {
|
864
970
|
sort?: string | undefined;
|
971
|
+
items?: number | undefined;
|
865
972
|
name?: string | undefined;
|
866
973
|
tokens?: string | undefined;
|
867
974
|
status?: string | undefined;
|
868
|
-
items?: number | undefined;
|
869
975
|
tags?: string | undefined;
|
870
976
|
page?: number | undefined;
|
871
977
|
chainId?: string | undefined;
|
@@ -881,6 +987,15 @@ declare const app: Elysia<"", false, {
|
|
881
987
|
200: {
|
882
988
|
max: string;
|
883
989
|
};
|
990
|
+
422: {
|
991
|
+
type: "validation";
|
992
|
+
on: string;
|
993
|
+
summary?: string;
|
994
|
+
message?: string;
|
995
|
+
found?: unknown;
|
996
|
+
property?: string;
|
997
|
+
expected?: string;
|
998
|
+
};
|
884
999
|
};
|
885
1000
|
};
|
886
1001
|
};
|
@@ -899,10 +1014,10 @@ declare const app: Elysia<"", false, {
|
|
899
1014
|
};
|
900
1015
|
query: {
|
901
1016
|
sort?: string | undefined;
|
1017
|
+
items?: number | undefined;
|
902
1018
|
name?: string | undefined;
|
903
1019
|
tokens?: string | undefined;
|
904
1020
|
status?: string | undefined;
|
905
|
-
items?: number | undefined;
|
906
1021
|
tags?: string | undefined;
|
907
1022
|
page?: number | undefined;
|
908
1023
|
chainId?: string | undefined;
|
@@ -918,6 +1033,15 @@ declare const app: Elysia<"", false, {
|
|
918
1033
|
200: {
|
919
1034
|
min: string;
|
920
1035
|
};
|
1036
|
+
422: {
|
1037
|
+
type: "validation";
|
1038
|
+
on: string;
|
1039
|
+
summary?: string;
|
1040
|
+
message?: string;
|
1041
|
+
found?: unknown;
|
1042
|
+
property?: string;
|
1043
|
+
expected?: string;
|
1044
|
+
};
|
921
1045
|
};
|
922
1046
|
};
|
923
1047
|
};
|
@@ -941,8 +1065,8 @@ declare const app: Elysia<"", false, {
|
|
941
1065
|
};
|
942
1066
|
response: {
|
943
1067
|
200: {
|
944
|
-
name: string;
|
945
1068
|
type: import("../database/api/.generated").$Enums.CampaignType;
|
1069
|
+
name: string;
|
946
1070
|
id: string;
|
947
1071
|
status: import("../database/api/.generated").$Enums.Status;
|
948
1072
|
tags: string[];
|
@@ -955,6 +1079,15 @@ declare const app: Elysia<"", false, {
|
|
955
1079
|
apr: number;
|
956
1080
|
dailyRewards: number;
|
957
1081
|
};
|
1082
|
+
422: {
|
1083
|
+
type: "validation";
|
1084
|
+
on: string;
|
1085
|
+
summary?: string;
|
1086
|
+
message?: string;
|
1087
|
+
found?: unknown;
|
1088
|
+
property?: string;
|
1089
|
+
expected?: string;
|
1090
|
+
};
|
958
1091
|
};
|
959
1092
|
};
|
960
1093
|
};
|
@@ -969,8 +1102,8 @@ declare const app: Elysia<"", false, {
|
|
969
1102
|
tags?: string[] | undefined;
|
970
1103
|
identifier?: string | undefined;
|
971
1104
|
subType?: number | undefined;
|
972
|
-
type: number;
|
973
1105
|
params: string;
|
1106
|
+
type: number;
|
974
1107
|
creator: string;
|
975
1108
|
chainId: number;
|
976
1109
|
startTimestamp: string;
|
@@ -988,9 +1121,9 @@ declare const app: Elysia<"", false, {
|
|
988
1121
|
};
|
989
1122
|
response: {
|
990
1123
|
200: {
|
1124
|
+
params: import("database/api/.generated/runtime/library").JsonValue;
|
991
1125
|
type: import("../database/api/.generated").$Enums.CampaignType;
|
992
1126
|
id: string;
|
993
|
-
params: import("database/api/.generated/runtime/library").JsonValue;
|
994
1127
|
subType: number | null;
|
995
1128
|
startTimestamp: bigint;
|
996
1129
|
endTimestamp: bigint;
|
@@ -1002,6 +1135,15 @@ declare const app: Elysia<"", false, {
|
|
1002
1135
|
opportunityId: string;
|
1003
1136
|
creatorAddress: string;
|
1004
1137
|
} | undefined;
|
1138
|
+
422: {
|
1139
|
+
type: "validation";
|
1140
|
+
on: string;
|
1141
|
+
summary?: string;
|
1142
|
+
message?: string;
|
1143
|
+
found?: unknown;
|
1144
|
+
property?: string;
|
1145
|
+
expected?: string;
|
1146
|
+
};
|
1005
1147
|
};
|
1006
1148
|
};
|
1007
1149
|
};
|
@@ -1021,6 +1163,15 @@ declare const app: Elysia<"", false, {
|
|
1021
1163
|
};
|
1022
1164
|
response: {
|
1023
1165
|
200: string;
|
1166
|
+
422: {
|
1167
|
+
type: "validation";
|
1168
|
+
on: string;
|
1169
|
+
summary?: string;
|
1170
|
+
message?: string;
|
1171
|
+
found?: unknown;
|
1172
|
+
property?: string;
|
1173
|
+
expected?: string;
|
1174
|
+
};
|
1024
1175
|
};
|
1025
1176
|
};
|
1026
1177
|
};
|
@@ -1039,9 +1190,9 @@ declare const app: Elysia<"", false, {
|
|
1039
1190
|
};
|
1040
1191
|
response: {
|
1041
1192
|
200: {
|
1193
|
+
params: import("database/api/.generated/runtime/library").JsonValue;
|
1042
1194
|
type: import("../database/api/.generated").$Enums.CampaignType;
|
1043
1195
|
id: string;
|
1044
|
-
params: import("database/api/.generated/runtime/library").JsonValue;
|
1045
1196
|
subType: number | null;
|
1046
1197
|
startTimestamp: bigint;
|
1047
1198
|
endTimestamp: bigint;
|
@@ -1053,6 +1204,15 @@ declare const app: Elysia<"", false, {
|
|
1053
1204
|
opportunityId: string;
|
1054
1205
|
creatorAddress: string;
|
1055
1206
|
};
|
1207
|
+
422: {
|
1208
|
+
type: "validation";
|
1209
|
+
on: string;
|
1210
|
+
summary?: string;
|
1211
|
+
message?: string;
|
1212
|
+
found?: unknown;
|
1213
|
+
property?: string;
|
1214
|
+
expected?: string;
|
1215
|
+
};
|
1056
1216
|
};
|
1057
1217
|
};
|
1058
1218
|
};
|
@@ -1127,6 +1287,15 @@ declare const app: Elysia<"", false, {
|
|
1127
1287
|
opportunityId: string;
|
1128
1288
|
creatorAddress: string;
|
1129
1289
|
}[];
|
1290
|
+
422: {
|
1291
|
+
type: "validation";
|
1292
|
+
on: string;
|
1293
|
+
summary?: string;
|
1294
|
+
message?: string;
|
1295
|
+
found?: unknown;
|
1296
|
+
property?: string;
|
1297
|
+
expected?: string;
|
1298
|
+
};
|
1130
1299
|
};
|
1131
1300
|
};
|
1132
1301
|
};
|
@@ -1156,6 +1325,15 @@ declare const app: Elysia<"", false, {
|
|
1156
1325
|
headers: unknown;
|
1157
1326
|
response: {
|
1158
1327
|
200: number;
|
1328
|
+
422: {
|
1329
|
+
type: "validation";
|
1330
|
+
on: string;
|
1331
|
+
summary?: string;
|
1332
|
+
message?: string;
|
1333
|
+
found?: unknown;
|
1334
|
+
property?: string;
|
1335
|
+
expected?: string;
|
1336
|
+
};
|
1159
1337
|
};
|
1160
1338
|
};
|
1161
1339
|
};
|
@@ -1177,6 +1355,15 @@ declare const app: Elysia<"", false, {
|
|
1177
1355
|
computedUntil: bigint;
|
1178
1356
|
}[];
|
1179
1357
|
}[];
|
1358
|
+
422: {
|
1359
|
+
type: "validation";
|
1360
|
+
on: string;
|
1361
|
+
summary?: string;
|
1362
|
+
message?: string;
|
1363
|
+
found?: unknown;
|
1364
|
+
property?: string;
|
1365
|
+
expected?: string;
|
1366
|
+
};
|
1180
1367
|
};
|
1181
1368
|
};
|
1182
1369
|
};
|
@@ -1193,6 +1380,15 @@ declare const app: Elysia<"", false, {
|
|
1193
1380
|
headers: unknown;
|
1194
1381
|
response: {
|
1195
1382
|
200: number;
|
1383
|
+
422: {
|
1384
|
+
type: "validation";
|
1385
|
+
on: string;
|
1386
|
+
summary?: string;
|
1387
|
+
message?: string;
|
1388
|
+
found?: unknown;
|
1389
|
+
property?: string;
|
1390
|
+
expected?: string;
|
1391
|
+
};
|
1196
1392
|
};
|
1197
1393
|
};
|
1198
1394
|
};
|
@@ -1211,6 +1407,15 @@ declare const app: Elysia<"", false, {
|
|
1211
1407
|
};
|
1212
1408
|
response: {
|
1213
1409
|
200: string;
|
1410
|
+
422: {
|
1411
|
+
type: "validation";
|
1412
|
+
on: string;
|
1413
|
+
summary?: string;
|
1414
|
+
message?: string;
|
1415
|
+
found?: unknown;
|
1416
|
+
property?: string;
|
1417
|
+
expected?: string;
|
1418
|
+
};
|
1214
1419
|
};
|
1215
1420
|
};
|
1216
1421
|
};
|
@@ -1225,9 +1430,9 @@ declare const app: Elysia<"", false, {
|
|
1225
1430
|
body: unknown;
|
1226
1431
|
params: {};
|
1227
1432
|
query: {
|
1433
|
+
items?: number | undefined;
|
1228
1434
|
name?: string | undefined;
|
1229
1435
|
id?: string | undefined;
|
1230
|
-
items?: number | undefined;
|
1231
1436
|
tags?: string[] | undefined;
|
1232
1437
|
page?: number | undefined;
|
1233
1438
|
opportunityTag?: string | undefined;
|
@@ -1235,13 +1440,22 @@ declare const app: Elysia<"", false, {
|
|
1235
1440
|
headers: unknown;
|
1236
1441
|
response: {
|
1237
1442
|
200: ({
|
1443
|
+
description: string;
|
1238
1444
|
name: string;
|
1239
1445
|
url: string;
|
1240
|
-
description: string;
|
1241
1446
|
id: string;
|
1242
1447
|
tags: string[];
|
1243
1448
|
icon: string;
|
1244
1449
|
} & {})[];
|
1450
|
+
422: {
|
1451
|
+
type: "validation";
|
1452
|
+
on: string;
|
1453
|
+
summary?: string;
|
1454
|
+
message?: string;
|
1455
|
+
found?: unknown;
|
1456
|
+
property?: string;
|
1457
|
+
expected?: string;
|
1458
|
+
};
|
1245
1459
|
};
|
1246
1460
|
};
|
1247
1461
|
};
|
@@ -1272,13 +1486,22 @@ declare const app: Elysia<"", false, {
|
|
1272
1486
|
headers: unknown;
|
1273
1487
|
response: {
|
1274
1488
|
200: {
|
1489
|
+
description: string;
|
1275
1490
|
name: string;
|
1276
1491
|
url: string;
|
1277
|
-
description: string;
|
1278
1492
|
id: string;
|
1279
1493
|
tags: string[];
|
1280
1494
|
icon: string;
|
1281
1495
|
} | null;
|
1496
|
+
422: {
|
1497
|
+
type: "validation";
|
1498
|
+
on: string;
|
1499
|
+
summary?: string;
|
1500
|
+
message?: string;
|
1501
|
+
found?: unknown;
|
1502
|
+
property?: string;
|
1503
|
+
expected?: string;
|
1504
|
+
};
|
1282
1505
|
};
|
1283
1506
|
};
|
1284
1507
|
};
|
@@ -1288,9 +1511,9 @@ declare const app: Elysia<"", false, {
|
|
1288
1511
|
":id": {
|
1289
1512
|
patch: {
|
1290
1513
|
body: {
|
1514
|
+
description?: string | undefined;
|
1291
1515
|
name?: string | undefined;
|
1292
1516
|
url?: string | undefined;
|
1293
|
-
description?: string | undefined;
|
1294
1517
|
icon?: string | undefined;
|
1295
1518
|
};
|
1296
1519
|
params: {
|
@@ -1302,13 +1525,22 @@ declare const app: Elysia<"", false, {
|
|
1302
1525
|
};
|
1303
1526
|
response: {
|
1304
1527
|
200: {
|
1528
|
+
description: string;
|
1305
1529
|
name: string;
|
1306
1530
|
url: string;
|
1307
|
-
description: string;
|
1308
1531
|
id: string;
|
1309
1532
|
tags: string[];
|
1310
1533
|
icon: string;
|
1311
1534
|
};
|
1535
|
+
422: {
|
1536
|
+
type: "validation";
|
1537
|
+
on: string;
|
1538
|
+
summary?: string;
|
1539
|
+
message?: string;
|
1540
|
+
found?: unknown;
|
1541
|
+
property?: string;
|
1542
|
+
expected?: string;
|
1543
|
+
};
|
1312
1544
|
};
|
1313
1545
|
};
|
1314
1546
|
};
|
@@ -1318,9 +1550,9 @@ declare const app: Elysia<"", false, {
|
|
1318
1550
|
index: {
|
1319
1551
|
post: {
|
1320
1552
|
body: {
|
1553
|
+
description: string;
|
1321
1554
|
name: string;
|
1322
1555
|
url: string;
|
1323
|
-
description: string;
|
1324
1556
|
id: string;
|
1325
1557
|
tags: string[];
|
1326
1558
|
icon: string;
|
@@ -1332,13 +1564,22 @@ declare const app: Elysia<"", false, {
|
|
1332
1564
|
};
|
1333
1565
|
response: {
|
1334
1566
|
200: {
|
1567
|
+
description: string;
|
1335
1568
|
name: string;
|
1336
1569
|
url: string;
|
1337
|
-
description: string;
|
1338
1570
|
id: string;
|
1339
1571
|
tags: string[];
|
1340
1572
|
icon: string;
|
1341
1573
|
};
|
1574
|
+
422: {
|
1575
|
+
type: "validation";
|
1576
|
+
on: string;
|
1577
|
+
summary?: string;
|
1578
|
+
message?: string;
|
1579
|
+
found?: unknown;
|
1580
|
+
property?: string;
|
1581
|
+
expected?: string;
|
1582
|
+
};
|
1342
1583
|
};
|
1343
1584
|
};
|
1344
1585
|
};
|
@@ -1365,6 +1606,15 @@ declare const app: Elysia<"", false, {
|
|
1365
1606
|
id: string;
|
1366
1607
|
chainId: number;
|
1367
1608
|
};
|
1609
|
+
422: {
|
1610
|
+
type: "validation";
|
1611
|
+
on: string;
|
1612
|
+
summary?: string;
|
1613
|
+
message?: string;
|
1614
|
+
found?: unknown;
|
1615
|
+
property?: string;
|
1616
|
+
expected?: string;
|
1617
|
+
};
|
1368
1618
|
};
|
1369
1619
|
};
|
1370
1620
|
};
|
@@ -1393,6 +1643,15 @@ declare const app: Elysia<"", false, {
|
|
1393
1643
|
isTest: boolean;
|
1394
1644
|
price?: number | null | undefined;
|
1395
1645
|
} | undefined;
|
1646
|
+
422: {
|
1647
|
+
type: "validation";
|
1648
|
+
on: string;
|
1649
|
+
summary?: string;
|
1650
|
+
message?: string;
|
1651
|
+
found?: unknown;
|
1652
|
+
property?: string;
|
1653
|
+
expected?: string;
|
1654
|
+
};
|
1396
1655
|
};
|
1397
1656
|
};
|
1398
1657
|
};
|
@@ -1426,6 +1685,15 @@ declare const app: Elysia<"", false, {
|
|
1426
1685
|
isTest: boolean;
|
1427
1686
|
price?: number | null | undefined;
|
1428
1687
|
} | undefined;
|
1688
|
+
422: {
|
1689
|
+
type: "validation";
|
1690
|
+
on: string;
|
1691
|
+
summary?: string;
|
1692
|
+
message?: string;
|
1693
|
+
found?: unknown;
|
1694
|
+
property?: string;
|
1695
|
+
expected?: string;
|
1696
|
+
};
|
1429
1697
|
};
|
1430
1698
|
};
|
1431
1699
|
};
|
@@ -1459,6 +1727,15 @@ declare const app: Elysia<"", false, {
|
|
1459
1727
|
isTest: boolean;
|
1460
1728
|
price: number | null;
|
1461
1729
|
}[];
|
1730
|
+
422: {
|
1731
|
+
type: "validation";
|
1732
|
+
on: string;
|
1733
|
+
summary?: string;
|
1734
|
+
message?: string;
|
1735
|
+
found?: unknown;
|
1736
|
+
property?: string;
|
1737
|
+
expected?: string;
|
1738
|
+
};
|
1462
1739
|
};
|
1463
1740
|
};
|
1464
1741
|
};
|
@@ -1493,6 +1770,15 @@ declare const app: Elysia<"", false, {
|
|
1493
1770
|
} & {
|
1494
1771
|
balance: bigint;
|
1495
1772
|
})[];
|
1773
|
+
422: {
|
1774
|
+
type: "validation";
|
1775
|
+
on: string;
|
1776
|
+
summary?: string;
|
1777
|
+
message?: string;
|
1778
|
+
found?: unknown;
|
1779
|
+
property?: string;
|
1780
|
+
expected?: string;
|
1781
|
+
};
|
1496
1782
|
};
|
1497
1783
|
};
|
1498
1784
|
};
|
@@ -1527,6 +1813,15 @@ declare const app: Elysia<"", false, {
|
|
1527
1813
|
} & {
|
1528
1814
|
price?: number | null | undefined;
|
1529
1815
|
})[];
|
1816
|
+
422: {
|
1817
|
+
type: "validation";
|
1818
|
+
on: string;
|
1819
|
+
summary?: string;
|
1820
|
+
message?: string;
|
1821
|
+
found?: unknown;
|
1822
|
+
property?: string;
|
1823
|
+
expected?: string;
|
1824
|
+
};
|
1530
1825
|
};
|
1531
1826
|
};
|
1532
1827
|
};
|
@@ -1549,6 +1844,15 @@ declare const app: Elysia<"", false, {
|
|
1549
1844
|
headers: unknown;
|
1550
1845
|
response: {
|
1551
1846
|
200: number;
|
1847
|
+
422: {
|
1848
|
+
type: "validation";
|
1849
|
+
on: string;
|
1850
|
+
summary?: string;
|
1851
|
+
message?: string;
|
1852
|
+
found?: unknown;
|
1853
|
+
property?: string;
|
1854
|
+
expected?: string;
|
1855
|
+
};
|
1552
1856
|
};
|
1553
1857
|
};
|
1554
1858
|
};
|
@@ -1582,6 +1886,15 @@ declare const app: Elysia<"", false, {
|
|
1582
1886
|
isTest: boolean;
|
1583
1887
|
price?: number | null | undefined;
|
1584
1888
|
} | undefined;
|
1889
|
+
422: {
|
1890
|
+
type: "validation";
|
1891
|
+
on: string;
|
1892
|
+
summary?: string;
|
1893
|
+
message?: string;
|
1894
|
+
found?: unknown;
|
1895
|
+
property?: string;
|
1896
|
+
expected?: string;
|
1897
|
+
};
|
1585
1898
|
};
|
1586
1899
|
};
|
1587
1900
|
};
|
@@ -1616,6 +1929,15 @@ declare const app: Elysia<"", false, {
|
|
1616
1929
|
isTest: boolean;
|
1617
1930
|
price: number | null;
|
1618
1931
|
};
|
1932
|
+
422: {
|
1933
|
+
type: "validation";
|
1934
|
+
on: string;
|
1935
|
+
summary?: string;
|
1936
|
+
message?: string;
|
1937
|
+
found?: unknown;
|
1938
|
+
property?: string;
|
1939
|
+
expected?: string;
|
1940
|
+
};
|
1619
1941
|
};
|
1620
1942
|
};
|
1621
1943
|
};
|
@@ -1637,6 +1959,15 @@ declare const app: Elysia<"", false, {
|
|
1637
1959
|
headers: unknown;
|
1638
1960
|
response: {
|
1639
1961
|
200: import("./modules/v4/reward").BreakdownForCampaignsRaw[];
|
1962
|
+
422: {
|
1963
|
+
type: "validation";
|
1964
|
+
on: string;
|
1965
|
+
summary?: string;
|
1966
|
+
message?: string;
|
1967
|
+
found?: unknown;
|
1968
|
+
property?: string;
|
1969
|
+
expected?: string;
|
1970
|
+
};
|
1640
1971
|
};
|
1641
1972
|
};
|
1642
1973
|
};
|
@@ -1657,6 +1988,15 @@ declare const app: Elysia<"", false, {
|
|
1657
1988
|
campaignId: string;
|
1658
1989
|
amount: bigint;
|
1659
1990
|
};
|
1991
|
+
422: {
|
1992
|
+
type: "validation";
|
1993
|
+
on: string;
|
1994
|
+
summary?: string;
|
1995
|
+
message?: string;
|
1996
|
+
found?: unknown;
|
1997
|
+
property?: string;
|
1998
|
+
expected?: string;
|
1999
|
+
};
|
1660
2000
|
};
|
1661
2001
|
};
|
1662
2002
|
};
|
@@ -1676,6 +2016,15 @@ declare const app: Elysia<"", false, {
|
|
1676
2016
|
200: {
|
1677
2017
|
count: number;
|
1678
2018
|
};
|
2019
|
+
422: {
|
2020
|
+
type: "validation";
|
2021
|
+
on: string;
|
2022
|
+
summary?: string;
|
2023
|
+
message?: string;
|
2024
|
+
found?: unknown;
|
2025
|
+
property?: string;
|
2026
|
+
expected?: string;
|
2027
|
+
};
|
1679
2028
|
};
|
1680
2029
|
};
|
1681
2030
|
};
|
@@ -1694,6 +2043,15 @@ declare const app: Elysia<"", false, {
|
|
1694
2043
|
headers: unknown;
|
1695
2044
|
response: {
|
1696
2045
|
200: import("./modules/v4/reward").BreakdownForTokenRaw[];
|
2046
|
+
422: {
|
2047
|
+
type: "validation";
|
2048
|
+
on: string;
|
2049
|
+
summary?: string;
|
2050
|
+
message?: string;
|
2051
|
+
found?: unknown;
|
2052
|
+
property?: string;
|
2053
|
+
expected?: string;
|
2054
|
+
};
|
1697
2055
|
};
|
1698
2056
|
};
|
1699
2057
|
};
|
@@ -1716,6 +2074,15 @@ declare const app: Elysia<"", false, {
|
|
1716
2074
|
tokenId: string;
|
1717
2075
|
amount: bigint;
|
1718
2076
|
};
|
2077
|
+
422: {
|
2078
|
+
type: "validation";
|
2079
|
+
on: string;
|
2080
|
+
summary?: string;
|
2081
|
+
message?: string;
|
2082
|
+
found?: unknown;
|
2083
|
+
property?: string;
|
2084
|
+
expected?: string;
|
2085
|
+
};
|
1719
2086
|
};
|
1720
2087
|
};
|
1721
2088
|
};
|
@@ -1737,6 +2104,15 @@ declare const app: Elysia<"", false, {
|
|
1737
2104
|
200: {
|
1738
2105
|
count: number;
|
1739
2106
|
};
|
2107
|
+
422: {
|
2108
|
+
type: "validation";
|
2109
|
+
on: string;
|
2110
|
+
summary?: string;
|
2111
|
+
message?: string;
|
2112
|
+
found?: unknown;
|
2113
|
+
property?: string;
|
2114
|
+
expected?: string;
|
2115
|
+
};
|
1740
2116
|
};
|
1741
2117
|
};
|
1742
2118
|
};
|
@@ -1764,6 +2140,15 @@ declare const app: Elysia<"", false, {
|
|
1764
2140
|
200: {
|
1765
2141
|
count: number;
|
1766
2142
|
};
|
2143
|
+
422: {
|
2144
|
+
type: "validation";
|
2145
|
+
on: string;
|
2146
|
+
summary?: string;
|
2147
|
+
message?: string;
|
2148
|
+
found?: unknown;
|
2149
|
+
property?: string;
|
2150
|
+
expected?: string;
|
2151
|
+
};
|
1767
2152
|
};
|
1768
2153
|
};
|
1769
2154
|
};
|
@@ -1797,6 +2182,15 @@ declare const app: Elysia<"", false, {
|
|
1797
2182
|
200: {
|
1798
2183
|
count: number;
|
1799
2184
|
} | undefined;
|
2185
|
+
422: {
|
2186
|
+
type: "validation";
|
2187
|
+
on: string;
|
2188
|
+
summary?: string;
|
2189
|
+
message?: string;
|
2190
|
+
found?: unknown;
|
2191
|
+
property?: string;
|
2192
|
+
expected?: string;
|
2193
|
+
};
|
1800
2194
|
};
|
1801
2195
|
};
|
1802
2196
|
};
|
@@ -1818,6 +2212,15 @@ declare const app: Elysia<"", false, {
|
|
1818
2212
|
};
|
1819
2213
|
response: {
|
1820
2214
|
200: void;
|
2215
|
+
422: {
|
2216
|
+
type: "validation";
|
2217
|
+
on: string;
|
2218
|
+
summary?: string;
|
2219
|
+
message?: string;
|
2220
|
+
found?: unknown;
|
2221
|
+
property?: string;
|
2222
|
+
expected?: string;
|
2223
|
+
};
|
1821
2224
|
};
|
1822
2225
|
};
|
1823
2226
|
};
|
@@ -1849,6 +2252,15 @@ declare const app: Elysia<"", false, {
|
|
1849
2252
|
created: number;
|
1850
2253
|
updated: number;
|
1851
2254
|
};
|
2255
|
+
422: {
|
2256
|
+
type: "validation";
|
2257
|
+
on: string;
|
2258
|
+
summary?: string;
|
2259
|
+
message?: string;
|
2260
|
+
found?: unknown;
|
2261
|
+
property?: string;
|
2262
|
+
expected?: string;
|
2263
|
+
};
|
1852
2264
|
};
|
1853
2265
|
};
|
1854
2266
|
};
|
@@ -1872,6 +2284,15 @@ declare const app: Elysia<"", false, {
|
|
1872
2284
|
breakdownCount: number;
|
1873
2285
|
};
|
1874
2286
|
};
|
2287
|
+
422: {
|
2288
|
+
type: "validation";
|
2289
|
+
on: string;
|
2290
|
+
summary?: string;
|
2291
|
+
message?: string;
|
2292
|
+
found?: unknown;
|
2293
|
+
property?: string;
|
2294
|
+
expected?: string;
|
2295
|
+
};
|
1875
2296
|
};
|
1876
2297
|
};
|
1877
2298
|
};
|
@@ -1891,6 +2312,15 @@ declare const app: Elysia<"", false, {
|
|
1891
2312
|
200: {
|
1892
2313
|
[x: string]: string;
|
1893
2314
|
};
|
2315
|
+
422: {
|
2316
|
+
type: "validation";
|
2317
|
+
on: string;
|
2318
|
+
summary?: string;
|
2319
|
+
message?: string;
|
2320
|
+
found?: unknown;
|
2321
|
+
property?: string;
|
2322
|
+
expected?: string;
|
2323
|
+
};
|
1894
2324
|
};
|
1895
2325
|
};
|
1896
2326
|
};
|
@@ -1920,6 +2350,15 @@ declare const app: Elysia<"", false, {
|
|
1920
2350
|
chainId: number;
|
1921
2351
|
}[];
|
1922
2352
|
} | null;
|
2353
|
+
422: {
|
2354
|
+
type: "validation";
|
2355
|
+
on: string;
|
2356
|
+
summary?: string;
|
2357
|
+
message?: string;
|
2358
|
+
found?: unknown;
|
2359
|
+
property?: string;
|
2360
|
+
expected?: string;
|
2361
|
+
};
|
1923
2362
|
};
|
1924
2363
|
};
|
1925
2364
|
};
|
@@ -1946,6 +2385,15 @@ declare const app: Elysia<"", false, {
|
|
1946
2385
|
chainId: number;
|
1947
2386
|
}[];
|
1948
2387
|
}[];
|
2388
|
+
422: {
|
2389
|
+
type: "validation";
|
2390
|
+
on: string;
|
2391
|
+
summary?: string;
|
2392
|
+
message?: string;
|
2393
|
+
found?: unknown;
|
2394
|
+
property?: string;
|
2395
|
+
expected?: string;
|
2396
|
+
};
|
1949
2397
|
};
|
1950
2398
|
};
|
1951
2399
|
};
|
@@ -1962,6 +2410,15 @@ declare const app: Elysia<"", false, {
|
|
1962
2410
|
headers: unknown;
|
1963
2411
|
response: {
|
1964
2412
|
200: number;
|
2413
|
+
422: {
|
2414
|
+
type: "validation";
|
2415
|
+
on: string;
|
2416
|
+
summary?: string;
|
2417
|
+
message?: string;
|
2418
|
+
found?: unknown;
|
2419
|
+
property?: string;
|
2420
|
+
expected?: string;
|
2421
|
+
};
|
1965
2422
|
};
|
1966
2423
|
};
|
1967
2424
|
};
|
@@ -1986,6 +2443,15 @@ declare const app: Elysia<"", false, {
|
|
1986
2443
|
id: number;
|
1987
2444
|
icon: string;
|
1988
2445
|
};
|
2446
|
+
422: {
|
2447
|
+
type: "validation";
|
2448
|
+
on: string;
|
2449
|
+
summary?: string;
|
2450
|
+
message?: string;
|
2451
|
+
found?: unknown;
|
2452
|
+
property?: string;
|
2453
|
+
expected?: string;
|
2454
|
+
};
|
1989
2455
|
};
|
1990
2456
|
};
|
1991
2457
|
};
|
@@ -2034,6 +2500,15 @@ declare const app: Elysia<"", false, {
|
|
2034
2500
|
headers: unknown;
|
2035
2501
|
response: {
|
2036
2502
|
200: number;
|
2503
|
+
422: {
|
2504
|
+
type: "validation";
|
2505
|
+
on: string;
|
2506
|
+
summary?: string;
|
2507
|
+
message?: string;
|
2508
|
+
found?: unknown;
|
2509
|
+
property?: string;
|
2510
|
+
expected?: string;
|
2511
|
+
};
|
2037
2512
|
};
|
2038
2513
|
};
|
2039
2514
|
};
|
@@ -2075,6 +2550,15 @@ declare const app: Elysia<"", false, {
|
|
2075
2550
|
args: import("database/api/.generated/runtime/library").JsonValue | null;
|
2076
2551
|
id: number;
|
2077
2552
|
};
|
2553
|
+
422: {
|
2554
|
+
type: "validation";
|
2555
|
+
on: string;
|
2556
|
+
summary?: string;
|
2557
|
+
message?: string;
|
2558
|
+
found?: unknown;
|
2559
|
+
property?: string;
|
2560
|
+
expected?: string;
|
2561
|
+
};
|
2078
2562
|
};
|
2079
2563
|
};
|
2080
2564
|
};
|
@@ -2096,6 +2580,15 @@ declare const app: Elysia<"", false, {
|
|
2096
2580
|
};
|
2097
2581
|
response: {
|
2098
2582
|
200: number | undefined;
|
2583
|
+
422: {
|
2584
|
+
type: "validation";
|
2585
|
+
on: string;
|
2586
|
+
summary?: string;
|
2587
|
+
message?: string;
|
2588
|
+
found?: unknown;
|
2589
|
+
property?: string;
|
2590
|
+
expected?: string;
|
2591
|
+
};
|
2099
2592
|
};
|
2100
2593
|
};
|
2101
2594
|
};
|
@@ -2124,6 +2617,15 @@ declare const app: Elysia<"", false, {
|
|
2124
2617
|
args: import("database/api/.generated/runtime/library").JsonValue | null;
|
2125
2618
|
id: number;
|
2126
2619
|
};
|
2620
|
+
422: {
|
2621
|
+
type: "validation";
|
2622
|
+
on: string;
|
2623
|
+
summary?: string;
|
2624
|
+
message?: string;
|
2625
|
+
found?: unknown;
|
2626
|
+
property?: string;
|
2627
|
+
expected?: string;
|
2628
|
+
};
|
2127
2629
|
};
|
2128
2630
|
};
|
2129
2631
|
};
|
@@ -2149,6 +2651,15 @@ declare const app: Elysia<"", false, {
|
|
2149
2651
|
args: import("database/api/.generated/runtime/library").JsonValue | null;
|
2150
2652
|
id: number;
|
2151
2653
|
};
|
2654
|
+
422: {
|
2655
|
+
type: "validation";
|
2656
|
+
on: string;
|
2657
|
+
summary?: string;
|
2658
|
+
message?: string;
|
2659
|
+
found?: unknown;
|
2660
|
+
property?: string;
|
2661
|
+
expected?: string;
|
2662
|
+
};
|
2152
2663
|
};
|
2153
2664
|
};
|
2154
2665
|
};
|
@@ -2205,6 +2716,15 @@ declare const app: Elysia<"", false, {
|
|
2205
2716
|
headers: unknown;
|
2206
2717
|
response: {
|
2207
2718
|
200: boolean;
|
2719
|
+
422: {
|
2720
|
+
type: "validation";
|
2721
|
+
on: string;
|
2722
|
+
summary?: string;
|
2723
|
+
message?: string;
|
2724
|
+
found?: unknown;
|
2725
|
+
property?: string;
|
2726
|
+
expected?: string;
|
2727
|
+
};
|
2208
2728
|
};
|
2209
2729
|
};
|
2210
2730
|
};
|
@@ -2234,6 +2754,15 @@ declare const app: Elysia<"", false, {
|
|
2234
2754
|
arrestTimestamp: bigint;
|
2235
2755
|
arrestDetails: import("database/api/.generated/runtime/library").JsonValue;
|
2236
2756
|
};
|
2757
|
+
422: {
|
2758
|
+
type: "validation";
|
2759
|
+
on: string;
|
2760
|
+
summary?: string;
|
2761
|
+
message?: string;
|
2762
|
+
found?: unknown;
|
2763
|
+
property?: string;
|
2764
|
+
expected?: string;
|
2765
|
+
};
|
2237
2766
|
};
|
2238
2767
|
};
|
2239
2768
|
};
|
@@ -2253,6 +2782,15 @@ declare const app: Elysia<"", false, {
|
|
2253
2782
|
};
|
2254
2783
|
response: {
|
2255
2784
|
200: boolean;
|
2785
|
+
422: {
|
2786
|
+
type: "validation";
|
2787
|
+
on: string;
|
2788
|
+
summary?: string;
|
2789
|
+
message?: string;
|
2790
|
+
found?: unknown;
|
2791
|
+
property?: string;
|
2792
|
+
expected?: string;
|
2793
|
+
};
|
2256
2794
|
};
|
2257
2795
|
};
|
2258
2796
|
};
|
@@ -2279,6 +2817,15 @@ declare const app: Elysia<"", false, {
|
|
2279
2817
|
address: string;
|
2280
2818
|
creatorId: string | null;
|
2281
2819
|
}[];
|
2820
|
+
422: {
|
2821
|
+
type: "validation";
|
2822
|
+
on: string;
|
2823
|
+
summary?: string;
|
2824
|
+
message?: string;
|
2825
|
+
found?: unknown;
|
2826
|
+
property?: string;
|
2827
|
+
expected?: string;
|
2828
|
+
};
|
2282
2829
|
};
|
2283
2830
|
};
|
2284
2831
|
};
|
@@ -2299,6 +2846,15 @@ declare const app: Elysia<"", false, {
|
|
2299
2846
|
address: string;
|
2300
2847
|
creatorId: string | null;
|
2301
2848
|
}[];
|
2849
|
+
422: {
|
2850
|
+
type: "validation";
|
2851
|
+
on: string;
|
2852
|
+
summary?: string;
|
2853
|
+
message?: string;
|
2854
|
+
found?: unknown;
|
2855
|
+
property?: string;
|
2856
|
+
expected?: string;
|
2857
|
+
};
|
2302
2858
|
};
|
2303
2859
|
};
|
2304
2860
|
};
|
@@ -2319,6 +2875,15 @@ declare const app: Elysia<"", false, {
|
|
2319
2875
|
address: string;
|
2320
2876
|
creatorId: string | null;
|
2321
2877
|
} | null;
|
2878
|
+
422: {
|
2879
|
+
type: "validation";
|
2880
|
+
on: string;
|
2881
|
+
summary?: string;
|
2882
|
+
message?: string;
|
2883
|
+
found?: unknown;
|
2884
|
+
property?: string;
|
2885
|
+
expected?: string;
|
2886
|
+
};
|
2322
2887
|
};
|
2323
2888
|
};
|
2324
2889
|
};
|
@@ -2341,6 +2906,15 @@ declare const app: Elysia<"", false, {
|
|
2341
2906
|
addresses: string[];
|
2342
2907
|
icon?: string | undefined;
|
2343
2908
|
} | null;
|
2909
|
+
422: {
|
2910
|
+
type: "validation";
|
2911
|
+
on: string;
|
2912
|
+
summary?: string;
|
2913
|
+
message?: string;
|
2914
|
+
found?: unknown;
|
2915
|
+
property?: string;
|
2916
|
+
expected?: string;
|
2917
|
+
};
|
2344
2918
|
};
|
2345
2919
|
};
|
2346
2920
|
};
|
@@ -2403,24 +2977,24 @@ declare const app: Elysia<"", false, {
|
|
2403
2977
|
price: number | null;
|
2404
2978
|
}[];
|
2405
2979
|
Protocols: {
|
2980
|
+
description: string;
|
2406
2981
|
name: string;
|
2407
2982
|
url: string;
|
2408
|
-
description: string;
|
2409
2983
|
id: string;
|
2410
2984
|
tags: string[];
|
2411
2985
|
icon: string;
|
2412
2986
|
}[];
|
2413
2987
|
MainProtocol: {
|
2988
|
+
description: string;
|
2414
2989
|
name: string;
|
2415
2990
|
url: string;
|
2416
|
-
description: string;
|
2417
2991
|
id: string;
|
2418
2992
|
tags: string[];
|
2419
2993
|
icon: string;
|
2420
2994
|
} | null;
|
2421
2995
|
} & {
|
2422
|
-
name: string;
|
2423
2996
|
type: import("../database/api/.generated").$Enums.CampaignType;
|
2997
|
+
name: string;
|
2424
2998
|
id: string;
|
2425
2999
|
status: import("../database/api/.generated").$Enums.Status;
|
2426
3000
|
tags: string[];
|
@@ -2458,6 +3032,15 @@ declare const app: Elysia<"", false, {
|
|
2458
3032
|
})[];
|
2459
3033
|
distributor: string;
|
2460
3034
|
})[];
|
3035
|
+
422: {
|
3036
|
+
type: "validation";
|
3037
|
+
on: string;
|
3038
|
+
summary?: string;
|
3039
|
+
message?: string;
|
3040
|
+
found?: unknown;
|
3041
|
+
property?: string;
|
3042
|
+
expected?: string;
|
3043
|
+
};
|
2461
3044
|
};
|
2462
3045
|
};
|
2463
3046
|
};
|
@@ -2520,24 +3103,24 @@ declare const app: Elysia<"", false, {
|
|
2520
3103
|
price: number | null;
|
2521
3104
|
}[];
|
2522
3105
|
Protocols: {
|
3106
|
+
description: string;
|
2523
3107
|
name: string;
|
2524
3108
|
url: string;
|
2525
|
-
description: string;
|
2526
3109
|
id: string;
|
2527
3110
|
tags: string[];
|
2528
3111
|
icon: string;
|
2529
3112
|
}[];
|
2530
3113
|
MainProtocol: {
|
3114
|
+
description: string;
|
2531
3115
|
name: string;
|
2532
3116
|
url: string;
|
2533
|
-
description: string;
|
2534
3117
|
id: string;
|
2535
3118
|
tags: string[];
|
2536
3119
|
icon: string;
|
2537
3120
|
} | null;
|
2538
3121
|
} & {
|
2539
|
-
name: string;
|
2540
3122
|
type: import("../database/api/.generated").$Enums.CampaignType;
|
3123
|
+
name: string;
|
2541
3124
|
id: string;
|
2542
3125
|
status: import("../database/api/.generated").$Enums.Status;
|
2543
3126
|
tags: string[];
|
@@ -2575,6 +3158,15 @@ declare const app: Elysia<"", false, {
|
|
2575
3158
|
}[];
|
2576
3159
|
})[];
|
2577
3160
|
})[];
|
3161
|
+
422: {
|
3162
|
+
type: "validation";
|
3163
|
+
on: string;
|
3164
|
+
summary?: string;
|
3165
|
+
message?: string;
|
3166
|
+
found?: unknown;
|
3167
|
+
property?: string;
|
3168
|
+
expected?: string;
|
3169
|
+
};
|
2578
3170
|
};
|
2579
3171
|
};
|
2580
3172
|
};
|
@@ -2599,6 +3191,15 @@ declare const app: Elysia<"", false, {
|
|
2599
3191
|
address: string;
|
2600
3192
|
creatorId: string | null;
|
2601
3193
|
};
|
3194
|
+
422: {
|
3195
|
+
type: "validation";
|
3196
|
+
on: string;
|
3197
|
+
summary?: string;
|
3198
|
+
message?: string;
|
3199
|
+
found?: unknown;
|
3200
|
+
property?: string;
|
3201
|
+
expected?: string;
|
3202
|
+
};
|
2602
3203
|
};
|
2603
3204
|
};
|
2604
3205
|
};
|
@@ -2615,6 +3216,15 @@ declare const app: Elysia<"", false, {
|
|
2615
3216
|
};
|
2616
3217
|
response: {
|
2617
3218
|
200: void;
|
3219
|
+
422: {
|
3220
|
+
type: "validation";
|
3221
|
+
on: string;
|
3222
|
+
summary?: string;
|
3223
|
+
message?: string;
|
3224
|
+
found?: unknown;
|
3225
|
+
property?: string;
|
3226
|
+
expected?: string;
|
3227
|
+
};
|
2618
3228
|
};
|
2619
3229
|
};
|
2620
3230
|
};
|
@@ -2640,6 +3250,15 @@ declare const app: Elysia<"", false, {
|
|
2640
3250
|
address: string;
|
2641
3251
|
creatorId: string | null;
|
2642
3252
|
};
|
3253
|
+
422: {
|
3254
|
+
type: "validation";
|
3255
|
+
on: string;
|
3256
|
+
summary?: string;
|
3257
|
+
message?: string;
|
3258
|
+
found?: unknown;
|
3259
|
+
property?: string;
|
3260
|
+
expected?: string;
|
3261
|
+
};
|
2643
3262
|
};
|
2644
3263
|
};
|
2645
3264
|
};
|
@@ -2666,6 +3285,15 @@ declare const app: Elysia<"", false, {
|
|
2666
3285
|
root: string;
|
2667
3286
|
epoch: number;
|
2668
3287
|
}[];
|
3288
|
+
422: {
|
3289
|
+
type: "validation";
|
3290
|
+
on: string;
|
3291
|
+
summary?: string;
|
3292
|
+
message?: string;
|
3293
|
+
found?: unknown;
|
3294
|
+
property?: string;
|
3295
|
+
expected?: string;
|
3296
|
+
};
|
2669
3297
|
};
|
2670
3298
|
};
|
2671
3299
|
};
|
@@ -2712,6 +3340,15 @@ declare const app: Elysia<"", false, {
|
|
2712
3340
|
root: string;
|
2713
3341
|
epoch: number;
|
2714
3342
|
};
|
3343
|
+
422: {
|
3344
|
+
type: "validation";
|
3345
|
+
on: string;
|
3346
|
+
summary?: string;
|
3347
|
+
message?: string;
|
3348
|
+
found?: unknown;
|
3349
|
+
property?: string;
|
3350
|
+
expected?: string;
|
3351
|
+
};
|
2715
3352
|
};
|
2716
3353
|
};
|
2717
3354
|
};
|
@@ -2732,6 +3369,15 @@ declare const app: Elysia<"", false, {
|
|
2732
3369
|
headers: unknown;
|
2733
3370
|
response: {
|
2734
3371
|
200: import("./modules/v4/interaction/interaction.model").InteractionTarget[];
|
3372
|
+
422: {
|
3373
|
+
type: "validation";
|
3374
|
+
on: string;
|
3375
|
+
summary?: string;
|
3376
|
+
message?: string;
|
3377
|
+
found?: unknown;
|
3378
|
+
property?: string;
|
3379
|
+
expected?: string;
|
3380
|
+
};
|
2735
3381
|
};
|
2736
3382
|
};
|
2737
3383
|
};
|
@@ -2748,13 +3394,22 @@ declare const app: Elysia<"", false, {
|
|
2748
3394
|
headers: unknown;
|
2749
3395
|
response: {
|
2750
3396
|
200: ({
|
3397
|
+
description: string;
|
2751
3398
|
name: string;
|
2752
3399
|
url: string;
|
2753
|
-
description: string;
|
2754
3400
|
id: string;
|
2755
3401
|
tags: string[];
|
2756
3402
|
icon: string;
|
2757
3403
|
} & {})[];
|
3404
|
+
422: {
|
3405
|
+
type: "validation";
|
3406
|
+
on: string;
|
3407
|
+
summary?: string;
|
3408
|
+
message?: string;
|
3409
|
+
found?: unknown;
|
3410
|
+
property?: string;
|
3411
|
+
expected?: string;
|
3412
|
+
};
|
2758
3413
|
};
|
2759
3414
|
};
|
2760
3415
|
};
|
@@ -2783,6 +3438,15 @@ declare const app: Elysia<"", false, {
|
|
2783
3438
|
transaction: import("./modules/v4/interaction/interaction.model").UserTransaction;
|
2784
3439
|
approval: import("./modules/v4/interaction/interaction.model").UserTransaction;
|
2785
3440
|
} | undefined;
|
3441
|
+
422: {
|
3442
|
+
type: "validation";
|
3443
|
+
on: string;
|
3444
|
+
summary?: string;
|
3445
|
+
message?: string;
|
3446
|
+
found?: unknown;
|
3447
|
+
property?: string;
|
3448
|
+
expected?: string;
|
3449
|
+
};
|
2786
3450
|
};
|
2787
3451
|
};
|
2788
3452
|
};
|
@@ -2815,6 +3479,15 @@ declare const app: Elysia<"", false, {
|
|
2815
3479
|
amountOut: string;
|
2816
3480
|
datetime: Date;
|
2817
3481
|
}[];
|
3482
|
+
422: {
|
3483
|
+
type: "validation";
|
3484
|
+
on: string;
|
3485
|
+
summary?: string;
|
3486
|
+
message?: string;
|
3487
|
+
found?: unknown;
|
3488
|
+
property?: string;
|
3489
|
+
expected?: string;
|
3490
|
+
};
|
2818
3491
|
};
|
2819
3492
|
};
|
2820
3493
|
};
|
@@ -2837,6 +3510,15 @@ declare const app: Elysia<"", false, {
|
|
2837
3510
|
};
|
2838
3511
|
};
|
2839
3512
|
};
|
3513
|
+
422: {
|
3514
|
+
type: "validation";
|
3515
|
+
on: string;
|
3516
|
+
summary?: string;
|
3517
|
+
message?: string;
|
3518
|
+
found?: unknown;
|
3519
|
+
property?: string;
|
3520
|
+
expected?: string;
|
3521
|
+
};
|
2840
3522
|
};
|
2841
3523
|
};
|
2842
3524
|
};
|
@@ -2861,6 +3543,15 @@ declare const app: Elysia<"", false, {
|
|
2861
3543
|
from: string;
|
2862
3544
|
to: string;
|
2863
3545
|
};
|
3546
|
+
422: {
|
3547
|
+
type: "validation";
|
3548
|
+
on: string;
|
3549
|
+
summary?: string;
|
3550
|
+
message?: string;
|
3551
|
+
found?: unknown;
|
3552
|
+
property?: string;
|
3553
|
+
expected?: string;
|
3554
|
+
};
|
2864
3555
|
};
|
2865
3556
|
};
|
2866
3557
|
};
|
@@ -2884,6 +3575,15 @@ declare const app: Elysia<"", false, {
|
|
2884
3575
|
200: {
|
2885
3576
|
totalAmount: number;
|
2886
3577
|
};
|
3578
|
+
422: {
|
3579
|
+
type: "validation";
|
3580
|
+
on: string;
|
3581
|
+
summary?: string;
|
3582
|
+
message?: string;
|
3583
|
+
found?: unknown;
|
3584
|
+
property?: string;
|
3585
|
+
expected?: string;
|
3586
|
+
};
|
2887
3587
|
};
|
2888
3588
|
};
|
2889
3589
|
};
|
@@ -2913,6 +3613,15 @@ declare const app: Elysia<"", false, {
|
|
2913
3613
|
from: string;
|
2914
3614
|
to: string;
|
2915
3615
|
};
|
3616
|
+
422: {
|
3617
|
+
type: "validation";
|
3618
|
+
on: string;
|
3619
|
+
summary?: string;
|
3620
|
+
message?: string;
|
3621
|
+
found?: unknown;
|
3622
|
+
property?: string;
|
3623
|
+
expected?: string;
|
3624
|
+
};
|
2916
3625
|
};
|
2917
3626
|
};
|
2918
3627
|
};
|
@@ -2940,6 +3649,15 @@ declare const app: Elysia<"", false, {
|
|
2940
3649
|
totalAmount: number;
|
2941
3650
|
totalAmountUSD: number;
|
2942
3651
|
};
|
3652
|
+
422: {
|
3653
|
+
type: "validation";
|
3654
|
+
on: string;
|
3655
|
+
summary?: string;
|
3656
|
+
message?: string;
|
3657
|
+
found?: unknown;
|
3658
|
+
property?: string;
|
3659
|
+
expected?: string;
|
3660
|
+
};
|
2943
3661
|
};
|
2944
3662
|
};
|
2945
3663
|
};
|
@@ -2971,6 +3689,15 @@ declare const app: Elysia<"", false, {
|
|
2971
3689
|
from: string;
|
2972
3690
|
to: string;
|
2973
3691
|
};
|
3692
|
+
422: {
|
3693
|
+
type: "validation";
|
3694
|
+
on: string;
|
3695
|
+
summary?: string;
|
3696
|
+
message?: string;
|
3697
|
+
found?: unknown;
|
3698
|
+
property?: string;
|
3699
|
+
expected?: string;
|
3700
|
+
};
|
2974
3701
|
};
|
2975
3702
|
};
|
2976
3703
|
};
|
@@ -3005,6 +3732,15 @@ declare const app: Elysia<"", false, {
|
|
3005
3732
|
priceTargetToken: number;
|
3006
3733
|
type: string;
|
3007
3734
|
};
|
3735
|
+
422: {
|
3736
|
+
type: "validation";
|
3737
|
+
on: string;
|
3738
|
+
summary?: string;
|
3739
|
+
message?: string;
|
3740
|
+
found?: unknown;
|
3741
|
+
property?: string;
|
3742
|
+
expected?: string;
|
3743
|
+
};
|
3008
3744
|
};
|
3009
3745
|
};
|
3010
3746
|
};
|
@@ -3033,8 +3769,8 @@ declare const app: Elysia<"", false, {
|
|
3033
3769
|
rewardTokenAddress?: string | undefined;
|
3034
3770
|
distributionChain?: {} | undefined;
|
3035
3771
|
opportunityIdentifier?: string | undefined;
|
3036
|
-
type: "INVALID" | "ERC20" | "CLAMM" | "ERC20_SNAPSHOT" | "JSON_AIRDROP" | "SILO" | "RADIANT" | "MORPHO" | "DOLOMITE" | "BADGER" | "COMPOUND" | "AJNA" | "EULER" | "UNISWAP_V4" | "ION" | "EIGENLAYER" | "ERC20TRANSFERS" | "ERC20LOGPROCESSOR" | "ERC20REBASELOGPROCESSOR" | "VEST" | "ERC20_FIX_APR" | "HYPERDRIVELOGPROCESSOR" | "HYPERDRIVELOGFIXPROCESSOR";
|
3037
3772
|
params: {};
|
3773
|
+
type: "INVALID" | "ERC20" | "CLAMM" | "ERC20_SNAPSHOT" | "JSON_AIRDROP" | "SILO" | "RADIANT" | "MORPHO" | "DOLOMITE" | "BADGER" | "COMPOUND" | "AJNA" | "EULER" | "UNISWAP_V4" | "ION" | "EIGENLAYER" | "ERC20TRANSFERS" | "ERC20LOGPROCESSOR" | "ERC20REBASELOGPROCESSOR" | "VEST" | "ERC20_FIX_APR" | "HYPERDRIVELOGPROCESSOR" | "HYPERDRIVELOGFIXPROCESSOR";
|
3038
3774
|
computeChainId: number;
|
3039
3775
|
};
|
3040
3776
|
params: {};
|
@@ -3044,6 +3780,15 @@ declare const app: Elysia<"", false, {
|
|
3044
3780
|
};
|
3045
3781
|
response: {
|
3046
3782
|
200: any[];
|
3783
|
+
422: {
|
3784
|
+
type: "validation";
|
3785
|
+
on: string;
|
3786
|
+
summary?: string;
|
3787
|
+
message?: string;
|
3788
|
+
found?: unknown;
|
3789
|
+
property?: string;
|
3790
|
+
expected?: string;
|
3791
|
+
};
|
3047
3792
|
};
|
3048
3793
|
};
|
3049
3794
|
};
|
@@ -3077,6 +3822,15 @@ declare const app: Elysia<"", false, {
|
|
3077
3822
|
};
|
3078
3823
|
response: {
|
3079
3824
|
200: any[];
|
3825
|
+
422: {
|
3826
|
+
type: "validation";
|
3827
|
+
on: string;
|
3828
|
+
summary?: string;
|
3829
|
+
message?: string;
|
3830
|
+
found?: unknown;
|
3831
|
+
property?: string;
|
3832
|
+
expected?: string;
|
3833
|
+
};
|
3080
3834
|
};
|
3081
3835
|
};
|
3082
3836
|
};
|
@@ -3111,6 +3865,15 @@ declare const app: Elysia<"", false, {
|
|
3111
3865
|
};
|
3112
3866
|
response: {
|
3113
3867
|
200: void;
|
3868
|
+
422: {
|
3869
|
+
type: "validation";
|
3870
|
+
on: string;
|
3871
|
+
summary?: string;
|
3872
|
+
message?: string;
|
3873
|
+
found?: unknown;
|
3874
|
+
property?: string;
|
3875
|
+
expected?: string;
|
3876
|
+
};
|
3114
3877
|
};
|
3115
3878
|
};
|
3116
3879
|
};
|
@@ -3130,6 +3893,15 @@ declare const app: Elysia<"", false, {
|
|
3130
3893
|
};
|
3131
3894
|
response: {
|
3132
3895
|
200: boolean;
|
3896
|
+
422: {
|
3897
|
+
type: "validation";
|
3898
|
+
on: string;
|
3899
|
+
summary?: string;
|
3900
|
+
message?: string;
|
3901
|
+
found?: unknown;
|
3902
|
+
property?: string;
|
3903
|
+
expected?: string;
|
3904
|
+
};
|
3133
3905
|
};
|
3134
3906
|
};
|
3135
3907
|
};
|
@@ -3153,6 +3925,15 @@ declare const app: Elysia<"", false, {
|
|
3153
3925
|
computedUntil: bigint;
|
3154
3926
|
processingStarted: bigint;
|
3155
3927
|
}[];
|
3928
|
+
422: {
|
3929
|
+
type: "validation";
|
3930
|
+
on: string;
|
3931
|
+
summary?: string;
|
3932
|
+
message?: string;
|
3933
|
+
found?: unknown;
|
3934
|
+
property?: string;
|
3935
|
+
expected?: string;
|
3936
|
+
};
|
3156
3937
|
};
|
3157
3938
|
};
|
3158
3939
|
};
|
@@ -3181,6 +3962,15 @@ declare const app: Elysia<"", false, {
|
|
3181
3962
|
computedUntil: bigint;
|
3182
3963
|
processingStarted: bigint;
|
3183
3964
|
};
|
3965
|
+
422: {
|
3966
|
+
type: "validation";
|
3967
|
+
on: string;
|
3968
|
+
summary?: string;
|
3969
|
+
message?: string;
|
3970
|
+
found?: unknown;
|
3971
|
+
property?: string;
|
3972
|
+
expected?: string;
|
3973
|
+
};
|
3184
3974
|
};
|
3185
3975
|
};
|
3186
3976
|
};
|
@@ -3217,6 +4007,15 @@ declare const app: Elysia<"", false, {
|
|
3217
4007
|
processingStarted: bigint;
|
3218
4008
|
}[];
|
3219
4009
|
}[];
|
4010
|
+
422: {
|
4011
|
+
type: "validation";
|
4012
|
+
on: string;
|
4013
|
+
summary?: string;
|
4014
|
+
message?: string;
|
4015
|
+
found?: unknown;
|
4016
|
+
property?: string;
|
4017
|
+
expected?: string;
|
4018
|
+
};
|
3220
4019
|
};
|
3221
4020
|
};
|
3222
4021
|
};
|
@@ -3237,6 +4036,15 @@ declare const app: Elysia<"", false, {
|
|
3237
4036
|
headers: unknown;
|
3238
4037
|
response: {
|
3239
4038
|
200: import("./modules/v4/liquidity").PositionT[];
|
4039
|
+
422: {
|
4040
|
+
type: "validation";
|
4041
|
+
on: string;
|
4042
|
+
summary?: string;
|
4043
|
+
message?: string;
|
4044
|
+
found?: unknown;
|
4045
|
+
property?: string;
|
4046
|
+
expected?: string;
|
4047
|
+
};
|
3240
4048
|
};
|
3241
4049
|
};
|
3242
4050
|
};
|
@@ -3259,6 +4067,15 @@ declare const app: Elysia<"", false, {
|
|
3259
4067
|
200: (import("./modules/v4/claims").ClaimModel & {
|
3260
4068
|
token?: import("./modules/v4").Token["model"];
|
3261
4069
|
})[];
|
4070
|
+
422: {
|
4071
|
+
type: "validation";
|
4072
|
+
on: string;
|
4073
|
+
summary?: string;
|
4074
|
+
message?: string;
|
4075
|
+
found?: unknown;
|
4076
|
+
property?: string;
|
4077
|
+
expected?: string;
|
4078
|
+
};
|
3262
4079
|
};
|
3263
4080
|
};
|
3264
4081
|
};
|
@@ -3293,6 +4110,15 @@ declare const app: Elysia<"", false, {
|
|
3293
4110
|
};
|
3294
4111
|
transactions: import("./modules/v4/programPayload").transaction[];
|
3295
4112
|
};
|
4113
|
+
422: {
|
4114
|
+
type: "validation";
|
4115
|
+
on: string;
|
4116
|
+
summary?: string;
|
4117
|
+
message?: string;
|
4118
|
+
found?: unknown;
|
4119
|
+
property?: string;
|
4120
|
+
expected?: string;
|
4121
|
+
};
|
3296
4122
|
};
|
3297
4123
|
};
|
3298
4124
|
};
|
@@ -3317,6 +4143,15 @@ declare const app: Elysia<"", false, {
|
|
3317
4143
|
response: {
|
3318
4144
|
[x: string]: any;
|
3319
4145
|
200: any;
|
4146
|
+
422: {
|
4147
|
+
type: "validation";
|
4148
|
+
on: string;
|
4149
|
+
summary?: string;
|
4150
|
+
message?: string;
|
4151
|
+
found?: unknown;
|
4152
|
+
property?: string;
|
4153
|
+
expected?: string;
|
4154
|
+
};
|
3320
4155
|
};
|
3321
4156
|
};
|
3322
4157
|
};
|
@@ -3336,6 +4171,15 @@ declare const app: Elysia<"", false, {
|
|
3336
4171
|
200: {
|
3337
4172
|
[x: string]: string;
|
3338
4173
|
};
|
4174
|
+
422: {
|
4175
|
+
type: "validation";
|
4176
|
+
on: string;
|
4177
|
+
summary?: string;
|
4178
|
+
message?: string;
|
4179
|
+
found?: unknown;
|
4180
|
+
property?: string;
|
4181
|
+
expected?: string;
|
4182
|
+
};
|
3339
4183
|
};
|
3340
4184
|
};
|
3341
4185
|
};
|
@@ -3362,6 +4206,15 @@ declare const app: Elysia<"", false, {
|
|
3362
4206
|
200: {
|
3363
4207
|
args: any;
|
3364
4208
|
};
|
4209
|
+
422: {
|
4210
|
+
type: "validation";
|
4211
|
+
on: string;
|
4212
|
+
summary?: string;
|
4213
|
+
message?: string;
|
4214
|
+
found?: unknown;
|
4215
|
+
property?: string;
|
4216
|
+
expected?: string;
|
4217
|
+
};
|
3365
4218
|
};
|
3366
4219
|
};
|
3367
4220
|
};
|
@@ -3393,6 +4246,15 @@ declare const app: Elysia<"", false, {
|
|
3393
4246
|
};
|
3394
4247
|
transactions: import("./modules/v4/programPayload").transaction[];
|
3395
4248
|
} | null;
|
4249
|
+
422: {
|
4250
|
+
type: "validation";
|
4251
|
+
on: string;
|
4252
|
+
summary?: string;
|
4253
|
+
message?: string;
|
4254
|
+
found?: unknown;
|
4255
|
+
property?: string;
|
4256
|
+
expected?: string;
|
4257
|
+
};
|
3396
4258
|
};
|
3397
4259
|
};
|
3398
4260
|
};
|
@@ -3427,6 +4289,15 @@ declare const app: Elysia<"", false, {
|
|
3427
4289
|
};
|
3428
4290
|
transactions: import("./modules/v4/programPayload").transaction[];
|
3429
4291
|
} | null;
|
4292
|
+
422: {
|
4293
|
+
type: "validation";
|
4294
|
+
on: string;
|
4295
|
+
summary?: string;
|
4296
|
+
message?: string;
|
4297
|
+
found?: unknown;
|
4298
|
+
property?: string;
|
4299
|
+
expected?: string;
|
4300
|
+
};
|
3430
4301
|
};
|
3431
4302
|
};
|
3432
4303
|
};
|
@@ -3491,6 +4362,15 @@ declare const app: Elysia<"", false, {
|
|
3491
4362
|
safePayload: import("./modules/v4/programPayload").safePayload;
|
3492
4363
|
nonEncodedConfig: any;
|
3493
4364
|
};
|
4365
|
+
422: {
|
4366
|
+
type: "validation";
|
4367
|
+
on: string;
|
4368
|
+
summary?: string;
|
4369
|
+
message?: string;
|
4370
|
+
found?: unknown;
|
4371
|
+
property?: string;
|
4372
|
+
expected?: string;
|
4373
|
+
};
|
3494
4374
|
};
|
3495
4375
|
};
|
3496
4376
|
};
|
@@ -3521,6 +4401,15 @@ declare const app: Elysia<"", false, {
|
|
3521
4401
|
response: {
|
3522
4402
|
[x: string]: any;
|
3523
4403
|
200: any;
|
4404
|
+
422: {
|
4405
|
+
type: "validation";
|
4406
|
+
on: string;
|
4407
|
+
summary?: string;
|
4408
|
+
message?: string;
|
4409
|
+
found?: unknown;
|
4410
|
+
property?: string;
|
4411
|
+
expected?: string;
|
4412
|
+
};
|
3524
4413
|
};
|
3525
4414
|
};
|
3526
4415
|
};
|
@@ -3546,6 +4435,15 @@ declare const app: Elysia<"", false, {
|
|
3546
4435
|
address: string;
|
3547
4436
|
boost: string;
|
3548
4437
|
}[];
|
4438
|
+
422: {
|
4439
|
+
type: "validation";
|
4440
|
+
on: string;
|
4441
|
+
summary?: string;
|
4442
|
+
message?: string;
|
4443
|
+
found?: unknown;
|
4444
|
+
property?: string;
|
4445
|
+
expected?: string;
|
4446
|
+
};
|
3549
4447
|
};
|
3550
4448
|
};
|
3551
4449
|
};
|
@@ -3588,6 +4486,15 @@ declare const app: Elysia<"", false, {
|
|
3588
4486
|
totalDistributedInUSD: number | null;
|
3589
4487
|
forfeitingBoost: number | null;
|
3590
4488
|
} | null;
|
4489
|
+
422: {
|
4490
|
+
type: "validation";
|
4491
|
+
on: string;
|
4492
|
+
summary?: string;
|
4493
|
+
message?: string;
|
4494
|
+
found?: unknown;
|
4495
|
+
property?: string;
|
4496
|
+
expected?: string;
|
4497
|
+
};
|
3591
4498
|
};
|
3592
4499
|
};
|
3593
4500
|
};
|
@@ -3614,6 +4521,15 @@ declare const app: Elysia<"", false, {
|
|
3614
4521
|
campaignId: string;
|
3615
4522
|
boost: number | null;
|
3616
4523
|
}[];
|
4524
|
+
422: {
|
4525
|
+
type: "validation";
|
4526
|
+
on: string;
|
4527
|
+
summary?: string;
|
4528
|
+
message?: string;
|
4529
|
+
found?: unknown;
|
4530
|
+
property?: string;
|
4531
|
+
expected?: string;
|
4532
|
+
};
|
3617
4533
|
};
|
3618
4534
|
};
|
3619
4535
|
};
|
@@ -3637,6 +4553,15 @@ declare const app: Elysia<"", false, {
|
|
3637
4553
|
};
|
3638
4554
|
response: {
|
3639
4555
|
200: void;
|
4556
|
+
422: {
|
4557
|
+
type: "validation";
|
4558
|
+
on: string;
|
4559
|
+
summary?: string;
|
4560
|
+
message?: string;
|
4561
|
+
found?: unknown;
|
4562
|
+
property?: string;
|
4563
|
+
expected?: string;
|
4564
|
+
};
|
3640
4565
|
};
|
3641
4566
|
};
|
3642
4567
|
};
|
@@ -3661,6 +4586,15 @@ declare const app: Elysia<"", false, {
|
|
3661
4586
|
};
|
3662
4587
|
response: {
|
3663
4588
|
200: void;
|
4589
|
+
422: {
|
4590
|
+
type: "validation";
|
4591
|
+
on: string;
|
4592
|
+
summary?: string;
|
4593
|
+
message?: string;
|
4594
|
+
found?: unknown;
|
4595
|
+
property?: string;
|
4596
|
+
expected?: string;
|
4597
|
+
};
|
3664
4598
|
};
|
3665
4599
|
};
|
3666
4600
|
};
|
@@ -3688,6 +4622,15 @@ declare const app: Elysia<"", false, {
|
|
3688
4622
|
} & {
|
3689
4623
|
icon?: string | undefined;
|
3690
4624
|
})[];
|
4625
|
+
422: {
|
4626
|
+
type: "validation";
|
4627
|
+
on: string;
|
4628
|
+
summary?: string;
|
4629
|
+
message?: string;
|
4630
|
+
found?: unknown;
|
4631
|
+
property?: string;
|
4632
|
+
expected?: string;
|
4633
|
+
};
|
3691
4634
|
};
|
3692
4635
|
};
|
3693
4636
|
};
|
@@ -3709,6 +4652,15 @@ declare const app: Elysia<"", false, {
|
|
3709
4652
|
addresses: string[];
|
3710
4653
|
icon?: string | undefined;
|
3711
4654
|
};
|
4655
|
+
422: {
|
4656
|
+
type: "validation";
|
4657
|
+
on: string;
|
4658
|
+
summary?: string;
|
4659
|
+
message?: string;
|
4660
|
+
found?: unknown;
|
4661
|
+
property?: string;
|
4662
|
+
expected?: string;
|
4663
|
+
};
|
3712
4664
|
};
|
3713
4665
|
};
|
3714
4666
|
};
|
@@ -3734,6 +4686,15 @@ declare const app: Elysia<"", false, {
|
|
3734
4686
|
id: string;
|
3735
4687
|
icon: string | null;
|
3736
4688
|
};
|
4689
|
+
422: {
|
4690
|
+
type: "validation";
|
4691
|
+
on: string;
|
4692
|
+
summary?: string;
|
4693
|
+
message?: string;
|
4694
|
+
found?: unknown;
|
4695
|
+
property?: string;
|
4696
|
+
expected?: string;
|
4697
|
+
};
|
3737
4698
|
};
|
3738
4699
|
};
|
3739
4700
|
};
|
@@ -3760,6 +4721,15 @@ declare const app: Elysia<"", false, {
|
|
3760
4721
|
id: string;
|
3761
4722
|
icon: string | null;
|
3762
4723
|
};
|
4724
|
+
422: {
|
4725
|
+
type: "validation";
|
4726
|
+
on: string;
|
4727
|
+
summary?: string;
|
4728
|
+
message?: string;
|
4729
|
+
found?: unknown;
|
4730
|
+
property?: string;
|
4731
|
+
expected?: string;
|
4732
|
+
};
|
3763
4733
|
};
|
3764
4734
|
};
|
3765
4735
|
};
|
@@ -3776,6 +4746,15 @@ declare const app: Elysia<"", false, {
|
|
3776
4746
|
response: {
|
3777
4747
|
[x: string]: any;
|
3778
4748
|
200: any;
|
4749
|
+
422: {
|
4750
|
+
type: "validation";
|
4751
|
+
on: string;
|
4752
|
+
summary?: string;
|
4753
|
+
message?: string;
|
4754
|
+
found?: unknown;
|
4755
|
+
property?: string;
|
4756
|
+
expected?: string;
|
4757
|
+
};
|
3779
4758
|
};
|
3780
4759
|
};
|
3781
4760
|
};
|
@@ -3794,6 +4773,15 @@ declare const app: Elysia<"", false, {
|
|
3794
4773
|
200: {
|
3795
4774
|
isBlacklisted: boolean;
|
3796
4775
|
};
|
4776
|
+
422: {
|
4777
|
+
type: "validation";
|
4778
|
+
on: string;
|
4779
|
+
summary?: string;
|
4780
|
+
message?: string;
|
4781
|
+
found?: unknown;
|
4782
|
+
property?: string;
|
4783
|
+
expected?: string;
|
4784
|
+
};
|
3797
4785
|
};
|
3798
4786
|
};
|
3799
4787
|
};
|
@@ -3812,6 +4800,15 @@ declare const app: Elysia<"", false, {
|
|
3812
4800
|
headers: unknown;
|
3813
4801
|
response: {
|
3814
4802
|
200: unknown;
|
4803
|
+
422: {
|
4804
|
+
type: "validation";
|
4805
|
+
on: string;
|
4806
|
+
summary?: string;
|
4807
|
+
message?: string;
|
4808
|
+
found?: unknown;
|
4809
|
+
property?: string;
|
4810
|
+
expected?: string;
|
4811
|
+
};
|
3815
4812
|
};
|
3816
4813
|
};
|
3817
4814
|
};
|
@@ -3829,6 +4826,15 @@ declare const app: Elysia<"", false, {
|
|
3829
4826
|
headers: unknown;
|
3830
4827
|
response: {
|
3831
4828
|
200: import("./utils/queries/rewardsAmount").RewardsAmountQueryOutput;
|
4829
|
+
422: {
|
4830
|
+
type: "validation";
|
4831
|
+
on: string;
|
4832
|
+
summary?: string;
|
4833
|
+
message?: string;
|
4834
|
+
found?: unknown;
|
4835
|
+
property?: string;
|
4836
|
+
expected?: string;
|
4837
|
+
};
|
3832
4838
|
};
|
3833
4839
|
};
|
3834
4840
|
};
|
@@ -3850,6 +4856,15 @@ declare const app: Elysia<"", false, {
|
|
3850
4856
|
response: {
|
3851
4857
|
[x: string]: any;
|
3852
4858
|
200: any;
|
4859
|
+
422: {
|
4860
|
+
type: "validation";
|
4861
|
+
on: string;
|
4862
|
+
summary?: string;
|
4863
|
+
message?: string;
|
4864
|
+
found?: unknown;
|
4865
|
+
property?: string;
|
4866
|
+
expected?: string;
|
4867
|
+
};
|
3853
4868
|
};
|
3854
4869
|
};
|
3855
4870
|
};
|
@@ -3867,6 +4882,15 @@ declare const app: Elysia<"", false, {
|
|
3867
4882
|
headers: unknown;
|
3868
4883
|
response: {
|
3869
4884
|
200: import("./types/returnTypes").CampaignsForMainParameterReturnType;
|
4885
|
+
422: {
|
4886
|
+
type: "validation";
|
4887
|
+
on: string;
|
4888
|
+
summary?: string;
|
4889
|
+
message?: string;
|
4890
|
+
found?: unknown;
|
4891
|
+
property?: string;
|
4892
|
+
expected?: string;
|
4893
|
+
};
|
3870
4894
|
};
|
3871
4895
|
};
|
3872
4896
|
};
|
@@ -3887,6 +4911,15 @@ declare const app: Elysia<"", false, {
|
|
3887
4911
|
} | {
|
3888
4912
|
error: string;
|
3889
4913
|
};
|
4914
|
+
422: {
|
4915
|
+
type: "validation";
|
4916
|
+
on: string;
|
4917
|
+
summary?: string;
|
4918
|
+
message?: string;
|
4919
|
+
found?: unknown;
|
4920
|
+
property?: string;
|
4921
|
+
expected?: string;
|
4922
|
+
};
|
3890
4923
|
};
|
3891
4924
|
};
|
3892
4925
|
};
|
@@ -3905,6 +4938,15 @@ declare const app: Elysia<"", false, {
|
|
3905
4938
|
headers: unknown;
|
3906
4939
|
response: {
|
3907
4940
|
200: any[];
|
4941
|
+
422: {
|
4942
|
+
type: "validation";
|
4943
|
+
on: string;
|
4944
|
+
summary?: string;
|
4945
|
+
message?: string;
|
4946
|
+
found?: unknown;
|
4947
|
+
property?: string;
|
4948
|
+
expected?: string;
|
4949
|
+
};
|
3908
4950
|
};
|
3909
4951
|
};
|
3910
4952
|
};
|
@@ -3924,6 +4966,15 @@ declare const app: Elysia<"", false, {
|
|
3924
4966
|
200: {
|
3925
4967
|
[x: string]: string;
|
3926
4968
|
};
|
4969
|
+
422: {
|
4970
|
+
type: "validation";
|
4971
|
+
on: string;
|
4972
|
+
summary?: string;
|
4973
|
+
message?: string;
|
4974
|
+
found?: unknown;
|
4975
|
+
property?: string;
|
4976
|
+
expected?: string;
|
4977
|
+
};
|
3927
4978
|
};
|
3928
4979
|
};
|
3929
4980
|
};
|
@@ -3943,6 +4994,15 @@ declare const app: Elysia<"", false, {
|
|
3943
4994
|
headers: unknown;
|
3944
4995
|
response: {
|
3945
4996
|
200: unknown;
|
4997
|
+
422: {
|
4998
|
+
type: "validation";
|
4999
|
+
on: string;
|
5000
|
+
summary?: string;
|
5001
|
+
message?: string;
|
5002
|
+
found?: unknown;
|
5003
|
+
property?: string;
|
5004
|
+
expected?: string;
|
5005
|
+
};
|
3946
5006
|
};
|
3947
5007
|
};
|
3948
5008
|
};
|
@@ -3966,6 +5026,15 @@ declare const app: Elysia<"", false, {
|
|
3966
5026
|
decimalsUnderlying: number;
|
3967
5027
|
}[];
|
3968
5028
|
};
|
5029
|
+
422: {
|
5030
|
+
type: "validation";
|
5031
|
+
on: string;
|
5032
|
+
summary?: string;
|
5033
|
+
message?: string;
|
5034
|
+
found?: unknown;
|
5035
|
+
property?: string;
|
5036
|
+
expected?: string;
|
5037
|
+
};
|
3969
5038
|
};
|
3970
5039
|
};
|
3971
5040
|
};
|
@@ -3988,6 +5057,15 @@ declare const app: Elysia<"", false, {
|
|
3988
5057
|
signed: boolean | undefined;
|
3989
5058
|
validRewardTokens: any;
|
3990
5059
|
};
|
5060
|
+
422: {
|
5061
|
+
type: "validation";
|
5062
|
+
on: string;
|
5063
|
+
summary?: string;
|
5064
|
+
message?: string;
|
5065
|
+
found?: unknown;
|
5066
|
+
property?: string;
|
5067
|
+
expected?: string;
|
5068
|
+
};
|
3991
5069
|
};
|
3992
5070
|
};
|
3993
5071
|
};
|
@@ -4003,6 +5081,15 @@ declare const app: Elysia<"", false, {
|
|
4003
5081
|
response: {
|
4004
5082
|
[x: string]: any;
|
4005
5083
|
200: any;
|
5084
|
+
422: {
|
5085
|
+
type: "validation";
|
5086
|
+
on: string;
|
5087
|
+
summary?: string;
|
5088
|
+
message?: string;
|
5089
|
+
found?: unknown;
|
5090
|
+
property?: string;
|
5091
|
+
expected?: string;
|
5092
|
+
};
|
4006
5093
|
};
|
4007
5094
|
};
|
4008
5095
|
};
|
@@ -4017,6 +5104,15 @@ declare const app: Elysia<"", false, {
|
|
4017
5104
|
headers: unknown;
|
4018
5105
|
response: {
|
4019
5106
|
200: import("./libs/campaigns/utils/getEulerV2Vaults").EulerVaultType[];
|
5107
|
+
422: {
|
5108
|
+
type: "validation";
|
5109
|
+
on: string;
|
5110
|
+
summary?: string;
|
5111
|
+
message?: string;
|
5112
|
+
found?: unknown;
|
5113
|
+
property?: string;
|
5114
|
+
expected?: string;
|
5115
|
+
};
|
4020
5116
|
};
|
4021
5117
|
};
|
4022
5118
|
};
|
@@ -4037,6 +5133,15 @@ declare const app: Elysia<"", false, {
|
|
4037
5133
|
message: string;
|
4038
5134
|
name: string;
|
4039
5135
|
};
|
5136
|
+
422: {
|
5137
|
+
type: "validation";
|
5138
|
+
on: string;
|
5139
|
+
summary?: string;
|
5140
|
+
message?: string;
|
5141
|
+
found?: unknown;
|
5142
|
+
property?: string;
|
5143
|
+
expected?: string;
|
5144
|
+
};
|
4040
5145
|
};
|
4041
5146
|
};
|
4042
5147
|
};
|
@@ -4053,6 +5158,15 @@ declare const app: Elysia<"", false, {
|
|
4053
5158
|
200: {
|
4054
5159
|
success: boolean;
|
4055
5160
|
};
|
5161
|
+
422: {
|
5162
|
+
type: "validation";
|
5163
|
+
on: string;
|
5164
|
+
summary?: string;
|
5165
|
+
message?: string;
|
5166
|
+
found?: unknown;
|
5167
|
+
property?: string;
|
5168
|
+
expected?: string;
|
5169
|
+
};
|
4056
5170
|
};
|
4057
5171
|
};
|
4058
5172
|
};
|
@@ -4070,6 +5184,15 @@ declare const app: Elysia<"", false, {
|
|
4070
5184
|
response: {
|
4071
5185
|
[x: string]: any;
|
4072
5186
|
200: any;
|
5187
|
+
422: {
|
5188
|
+
type: "validation";
|
5189
|
+
on: string;
|
5190
|
+
summary?: string;
|
5191
|
+
message?: string;
|
5192
|
+
found?: unknown;
|
5193
|
+
property?: string;
|
5194
|
+
expected?: string;
|
5195
|
+
};
|
4073
5196
|
};
|
4074
5197
|
};
|
4075
5198
|
};
|
@@ -4103,6 +5226,15 @@ declare const app: Elysia<"", false, {
|
|
4103
5226
|
response: {
|
4104
5227
|
[x: string]: any;
|
4105
5228
|
200: any;
|
5229
|
+
422: {
|
5230
|
+
type: "validation";
|
5231
|
+
on: string;
|
5232
|
+
summary?: string;
|
5233
|
+
message?: string;
|
5234
|
+
found?: unknown;
|
5235
|
+
property?: string;
|
5236
|
+
expected?: string;
|
5237
|
+
};
|
4106
5238
|
};
|
4107
5239
|
};
|
4108
5240
|
};
|
@@ -4121,6 +5253,15 @@ declare const app: Elysia<"", false, {
|
|
4121
5253
|
response: {
|
4122
5254
|
[x: string]: any;
|
4123
5255
|
200: any;
|
5256
|
+
422: {
|
5257
|
+
type: "validation";
|
5258
|
+
on: string;
|
5259
|
+
summary?: string;
|
5260
|
+
message?: string;
|
5261
|
+
found?: unknown;
|
5262
|
+
property?: string;
|
5263
|
+
expected?: string;
|
5264
|
+
};
|
4124
5265
|
};
|
4125
5266
|
};
|
4126
5267
|
};
|
@@ -4140,6 +5281,15 @@ declare const app: Elysia<"", false, {
|
|
4140
5281
|
response: {
|
4141
5282
|
[x: string]: any;
|
4142
5283
|
200: any;
|
5284
|
+
422: {
|
5285
|
+
type: "validation";
|
5286
|
+
on: string;
|
5287
|
+
summary?: string;
|
5288
|
+
message?: string;
|
5289
|
+
found?: unknown;
|
5290
|
+
property?: string;
|
5291
|
+
expected?: string;
|
5292
|
+
};
|
4143
5293
|
};
|
4144
5294
|
};
|
4145
5295
|
};
|
@@ -4162,6 +5312,15 @@ declare const app: Elysia<"", false, {
|
|
4162
5312
|
headers: unknown;
|
4163
5313
|
response: {
|
4164
5314
|
200: {};
|
5315
|
+
422: {
|
5316
|
+
type: "validation";
|
5317
|
+
on: string;
|
5318
|
+
summary?: string;
|
5319
|
+
message?: string;
|
5320
|
+
found?: unknown;
|
5321
|
+
property?: string;
|
5322
|
+
expected?: string;
|
5323
|
+
};
|
4165
5324
|
};
|
4166
5325
|
};
|
4167
5326
|
};
|
@@ -4196,6 +5355,15 @@ declare const app: Elysia<"", false, {
|
|
4196
5355
|
}[];
|
4197
5356
|
};
|
4198
5357
|
};
|
5358
|
+
422: {
|
5359
|
+
type: "validation";
|
5360
|
+
on: string;
|
5361
|
+
summary?: string;
|
5362
|
+
message?: string;
|
5363
|
+
found?: unknown;
|
5364
|
+
property?: string;
|
5365
|
+
expected?: string;
|
5366
|
+
};
|
4199
5367
|
};
|
4200
5368
|
};
|
4201
5369
|
};
|
@@ -4217,6 +5385,15 @@ declare const app: Elysia<"", false, {
|
|
4217
5385
|
message: string;
|
4218
5386
|
name: string;
|
4219
5387
|
};
|
5388
|
+
422: {
|
5389
|
+
type: "validation";
|
5390
|
+
on: string;
|
5391
|
+
summary?: string;
|
5392
|
+
message?: string;
|
5393
|
+
found?: unknown;
|
5394
|
+
property?: string;
|
5395
|
+
expected?: string;
|
5396
|
+
};
|
4220
5397
|
};
|
4221
5398
|
};
|
4222
5399
|
};
|
@@ -4249,6 +5426,15 @@ declare const app: Elysia<"", false, {
|
|
4249
5426
|
message?: undefined;
|
4250
5427
|
name?: undefined;
|
4251
5428
|
};
|
5429
|
+
422: {
|
5430
|
+
type: "validation";
|
5431
|
+
on: string;
|
5432
|
+
summary?: string;
|
5433
|
+
message?: string;
|
5434
|
+
found?: unknown;
|
5435
|
+
property?: string;
|
5436
|
+
expected?: string;
|
5437
|
+
};
|
4252
5438
|
};
|
4253
5439
|
};
|
4254
5440
|
};
|
@@ -4267,6 +5453,15 @@ declare const app: Elysia<"", false, {
|
|
4267
5453
|
response: {
|
4268
5454
|
[x: string]: any;
|
4269
5455
|
200: any;
|
5456
|
+
422: {
|
5457
|
+
type: "validation";
|
5458
|
+
on: string;
|
5459
|
+
summary?: string;
|
5460
|
+
message?: string;
|
5461
|
+
found?: unknown;
|
5462
|
+
property?: string;
|
5463
|
+
expected?: string;
|
5464
|
+
};
|
4270
5465
|
};
|
4271
5466
|
};
|
4272
5467
|
};
|
@@ -4285,6 +5480,15 @@ declare const app: Elysia<"", false, {
|
|
4285
5480
|
response: {
|
4286
5481
|
[x: string]: any;
|
4287
5482
|
200: any;
|
5483
|
+
422: {
|
5484
|
+
type: "validation";
|
5485
|
+
on: string;
|
5486
|
+
summary?: string;
|
5487
|
+
message?: string;
|
5488
|
+
found?: unknown;
|
5489
|
+
property?: string;
|
5490
|
+
expected?: string;
|
5491
|
+
};
|
4288
5492
|
};
|
4289
5493
|
};
|
4290
5494
|
};
|
@@ -4303,6 +5507,15 @@ declare const app: Elysia<"", false, {
|
|
4303
5507
|
response: {
|
4304
5508
|
[x: string]: any;
|
4305
5509
|
200: any;
|
5510
|
+
422: {
|
5511
|
+
type: "validation";
|
5512
|
+
on: string;
|
5513
|
+
summary?: string;
|
5514
|
+
message?: string;
|
5515
|
+
found?: unknown;
|
5516
|
+
property?: string;
|
5517
|
+
expected?: string;
|
5518
|
+
};
|
4306
5519
|
};
|
4307
5520
|
};
|
4308
5521
|
};
|
@@ -4325,6 +5538,15 @@ declare const app: Elysia<"", false, {
|
|
4325
5538
|
rewardToken: string;
|
4326
5539
|
amount: string;
|
4327
5540
|
}[];
|
5541
|
+
422: {
|
5542
|
+
type: "validation";
|
5543
|
+
on: string;
|
5544
|
+
summary?: string;
|
5545
|
+
message?: string;
|
5546
|
+
found?: unknown;
|
5547
|
+
property?: string;
|
5548
|
+
expected?: string;
|
5549
|
+
};
|
4328
5550
|
};
|
4329
5551
|
};
|
4330
5552
|
};
|
@@ -4371,6 +5593,15 @@ declare const app: Elysia<"", false, {
|
|
4371
5593
|
};
|
4372
5594
|
};
|
4373
5595
|
};
|
5596
|
+
422: {
|
5597
|
+
type: "validation";
|
5598
|
+
on: string;
|
5599
|
+
summary?: string;
|
5600
|
+
message?: string;
|
5601
|
+
found?: unknown;
|
5602
|
+
property?: string;
|
5603
|
+
expected?: string;
|
5604
|
+
};
|
4374
5605
|
};
|
4375
5606
|
};
|
4376
5607
|
};
|
@@ -4396,6 +5627,15 @@ declare const app: Elysia<"", false, {
|
|
4396
5627
|
rewardToken: string;
|
4397
5628
|
amount: string;
|
4398
5629
|
}[];
|
5630
|
+
422: {
|
5631
|
+
type: "validation";
|
5632
|
+
on: string;
|
5633
|
+
summary?: string;
|
5634
|
+
message?: string;
|
5635
|
+
found?: unknown;
|
5636
|
+
property?: string;
|
5637
|
+
expected?: string;
|
5638
|
+
};
|
4399
5639
|
};
|
4400
5640
|
};
|
4401
5641
|
};
|
@@ -4414,6 +5654,15 @@ declare const app: Elysia<"", false, {
|
|
4414
5654
|
response: {
|
4415
5655
|
[x: string]: any;
|
4416
5656
|
200: any;
|
5657
|
+
422: {
|
5658
|
+
type: "validation";
|
5659
|
+
on: string;
|
5660
|
+
summary?: string;
|
5661
|
+
message?: string;
|
5662
|
+
found?: unknown;
|
5663
|
+
property?: string;
|
5664
|
+
expected?: string;
|
5665
|
+
};
|
4417
5666
|
};
|
4418
5667
|
};
|
4419
5668
|
};
|
@@ -4435,6 +5684,15 @@ declare const app: Elysia<"", false, {
|
|
4435
5684
|
symbol: string;
|
4436
5685
|
decimals: number;
|
4437
5686
|
};
|
5687
|
+
422: {
|
5688
|
+
type: "validation";
|
5689
|
+
on: string;
|
5690
|
+
summary?: string;
|
5691
|
+
message?: string;
|
5692
|
+
found?: unknown;
|
5693
|
+
property?: string;
|
5694
|
+
expected?: string;
|
5695
|
+
};
|
4438
5696
|
};
|
4439
5697
|
};
|
4440
5698
|
};
|
@@ -4454,6 +5712,15 @@ declare const app: Elysia<"", false, {
|
|
4454
5712
|
200: {
|
4455
5713
|
message: string;
|
4456
5714
|
};
|
5715
|
+
422: {
|
5716
|
+
type: "validation";
|
5717
|
+
on: string;
|
5718
|
+
summary?: string;
|
5719
|
+
message?: string;
|
5720
|
+
found?: unknown;
|
5721
|
+
property?: string;
|
5722
|
+
expected?: string;
|
5723
|
+
};
|
4457
5724
|
};
|
4458
5725
|
};
|
4459
5726
|
};
|
@@ -4476,6 +5743,15 @@ declare const app: Elysia<"", false, {
|
|
4476
5743
|
message?: string | undefined;
|
4477
5744
|
error: string;
|
4478
5745
|
};
|
5746
|
+
422: {
|
5747
|
+
type: "validation";
|
5748
|
+
on: string;
|
5749
|
+
summary?: string;
|
5750
|
+
message?: string;
|
5751
|
+
found?: unknown;
|
5752
|
+
property?: string;
|
5753
|
+
expected?: string;
|
5754
|
+
};
|
4479
5755
|
};
|
4480
5756
|
};
|
4481
5757
|
};
|
@@ -4513,6 +5789,15 @@ declare const app: Elysia<"", false, {
|
|
4513
5789
|
};
|
4514
5790
|
};
|
4515
5791
|
};
|
5792
|
+
422: {
|
5793
|
+
type: "validation";
|
5794
|
+
on: string;
|
5795
|
+
summary?: string;
|
5796
|
+
message?: string;
|
5797
|
+
found?: unknown;
|
5798
|
+
property?: string;
|
5799
|
+
expected?: string;
|
5800
|
+
};
|
4516
5801
|
};
|
4517
5802
|
};
|
4518
5803
|
};
|
@@ -4531,6 +5816,15 @@ declare const app: Elysia<"", false, {
|
|
4531
5816
|
[poolId: string]: UniswapV4PoolType;
|
4532
5817
|
} | undefined;
|
4533
5818
|
};
|
5819
|
+
422: {
|
5820
|
+
type: "validation";
|
5821
|
+
on: string;
|
5822
|
+
summary?: string;
|
5823
|
+
message?: string;
|
5824
|
+
found?: unknown;
|
5825
|
+
property?: string;
|
5826
|
+
expected?: string;
|
5827
|
+
};
|
4534
5828
|
};
|
4535
5829
|
};
|
4536
5830
|
};
|