@compass-labs/api-sdk 0.5.12 → 0.5.13
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/bin/mcp-server.js +7 -7
- package/bin/mcp-server.js.map +5 -5
- package/dist/commonjs/lib/config.d.ts +2 -2
- package/dist/commonjs/lib/config.js +2 -2
- package/dist/commonjs/mcp-server/mcp-server.js +1 -1
- package/dist/commonjs/mcp-server/server.js +1 -1
- package/dist/commonjs/models/operations/tokenprice.js +2 -2
- package/dist/esm/lib/config.d.ts +2 -2
- package/dist/esm/lib/config.js +2 -2
- package/dist/esm/mcp-server/mcp-server.js +1 -1
- package/dist/esm/mcp-server/server.js +1 -1
- package/dist/esm/models/operations/tokenprice.js +2 -2
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/tokenprice.ts +2 -2
package/bin/mcp-server.js
CHANGED
|
@@ -34205,9 +34205,9 @@ var init_config = __esm(() => {
|
|
|
34205
34205
|
SDK_METADATA = {
|
|
34206
34206
|
language: "typescript",
|
|
34207
34207
|
openapiDocVersion: "0.0.1",
|
|
34208
|
-
sdkVersion: "0.5.
|
|
34208
|
+
sdkVersion: "0.5.13",
|
|
34209
34209
|
genVersion: "2.623.2",
|
|
34210
|
-
userAgent: "speakeasy-sdk/typescript 0.5.
|
|
34210
|
+
userAgent: "speakeasy-sdk/typescript 0.5.13 2.623.2 0.0.1 @compass-labs/api-sdk"
|
|
34211
34211
|
};
|
|
34212
34212
|
});
|
|
34213
34213
|
|
|
@@ -44263,11 +44263,11 @@ var init_tokenprice = __esm(() => {
|
|
|
44263
44263
|
})(TokenPriceToken$ ||= {});
|
|
44264
44264
|
TokenPriceRequest$inboundSchema = objectType({
|
|
44265
44265
|
chain: TokenPriceChain$inboundSchema.default("ethereum:mainnet"),
|
|
44266
|
-
token: TokenPriceToken$inboundSchema.default("
|
|
44266
|
+
token: TokenPriceToken$inboundSchema.default("AAVE")
|
|
44267
44267
|
});
|
|
44268
44268
|
TokenPriceRequest$outboundSchema = objectType({
|
|
44269
44269
|
chain: TokenPriceChain$outboundSchema.default("ethereum:mainnet"),
|
|
44270
|
-
token: TokenPriceToken$outboundSchema.default("
|
|
44270
|
+
token: TokenPriceToken$outboundSchema.default("AAVE")
|
|
44271
44271
|
});
|
|
44272
44272
|
((TokenPriceRequest$) => {
|
|
44273
44273
|
TokenPriceRequest$.inboundSchema = TokenPriceRequest$inboundSchema;
|
|
@@ -52965,7 +52965,7 @@ it to be traded on DeFi protocols.`,
|
|
|
52965
52965
|
function createMCPServer(deps) {
|
|
52966
52966
|
const server = new McpServer({
|
|
52967
52967
|
name: "CompassApiSDK",
|
|
52968
|
-
version: "0.5.
|
|
52968
|
+
version: "0.5.13"
|
|
52969
52969
|
});
|
|
52970
52970
|
const client = new CompassApiSDKCore({
|
|
52971
52971
|
apiKeyAuth: deps.apiKeyAuth,
|
|
@@ -54322,7 +54322,7 @@ var routes = an({
|
|
|
54322
54322
|
var app = He(routes, {
|
|
54323
54323
|
name: "mcp",
|
|
54324
54324
|
versionInfo: {
|
|
54325
|
-
currentVersion: "0.5.
|
|
54325
|
+
currentVersion: "0.5.13"
|
|
54326
54326
|
}
|
|
54327
54327
|
});
|
|
54328
54328
|
zt(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -54330,5 +54330,5 @@ export {
|
|
|
54330
54330
|
app
|
|
54331
54331
|
};
|
|
54332
54332
|
|
|
54333
|
-
//# debugId=
|
|
54333
|
+
//# debugId=A09AEF55DB6A972464756E2164756E21
|
|
54334
54334
|
//# sourceMappingURL=mcp-server.js.map
|