hevy-mcp 3.4.0 → 3.4.1
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/cli.d.mts +1 -1
- package/dist/cli.mjs +7 -4
- package/dist/cli.mjs.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/{src-86dub6ti.mjs → src-Ch2aS5wP.mjs} +627 -215
- package/dist/src-Ch2aS5wP.mjs.map +1 -0
- package/package.json +4 -3
- package/server.json +2 -2
- package/dist/src-86dub6ti.mjs.map +0 -1
package/dist/cli.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
|
|
2
|
-
export {
|
|
2
|
+
export {}
|
package/dist/cli.mjs
CHANGED
|
@@ -4,15 +4,18 @@
|
|
|
4
4
|
(function() {
|
|
5
5
|
try {
|
|
6
6
|
var e = "undefined" != typeof window ? window : "undefined" != typeof global ? global : "undefined" != typeof globalThis ? globalThis : "undefined" != typeof self ? self : {};
|
|
7
|
-
e.SENTRY_RELEASE = { id: "hevy-mcp@3.4.
|
|
7
|
+
e.SENTRY_RELEASE = { id: "hevy-mcp@3.4.1" };
|
|
8
8
|
var n = new e.Error().stack;
|
|
9
|
-
n && (e._sentryDebugIds = e._sentryDebugIds || {}, e._sentryDebugIds[n] = "
|
|
9
|
+
n && (e._sentryDebugIds = e._sentryDebugIds || {}, e._sentryDebugIds[n] = "70926e8e-f4a5-4145-a01e-027bb707b27d", e._sentryDebugIdIdentifier = "sentry-dbid-70926e8e-f4a5-4145-a01e-027bb707b27d");
|
|
10
10
|
} catch (e) {}
|
|
11
11
|
})();
|
|
12
|
-
import { i as createSafeErrorDiagnostic, r as runServer } from "./src-
|
|
12
|
+
import { a as flushTelemetry, i as createSafeErrorDiagnostic, r as runServer } from "./src-Ch2aS5wP.mjs";
|
|
13
13
|
//#region src/cli.ts
|
|
14
|
-
runServer().catch((error) => {
|
|
14
|
+
runServer().catch(async (error) => {
|
|
15
15
|
console.error("Fatal error in main()", createSafeErrorDiagnostic(error));
|
|
16
|
+
try {
|
|
17
|
+
await flushTelemetry();
|
|
18
|
+
} catch {}
|
|
16
19
|
process.exit(1);
|
|
17
20
|
});
|
|
18
21
|
//#endregion
|
package/dist/cli.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.mjs","names":[],"sources":["../src/cli.ts"],"sourcesContent":["import { runServer } from \"./index.js\";\nimport { createSafeErrorDiagnostic } from \"./utils/safe-error-diagnostic.js\";\n\nvoid runServer().catch((error) => {\n\tconsole.error(\"Fatal error in main()\", createSafeErrorDiagnostic(error));\n\tprocess.exit(1);\n});\n"],"mappings":";;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"cli.mjs","names":[],"sources":["../src/cli.ts"],"sourcesContent":["import { runServer } from \"./index.js\";\nimport { createSafeErrorDiagnostic } from \"./utils/safe-error-diagnostic.js\";\nimport { flushTelemetry } from \"./utils/telemetry.js\";\n\nvoid runServer().catch(async (error) => {\n\tconsole.error(\"Fatal error in main()\", createSafeErrorDiagnostic(error));\n\ttry {\n\t\tawait flushTelemetry();\n\t} catch {\n\t\t// Preserve the original fatal exit when telemetry flushing fails.\n\t}\n\tprocess.exit(1);\n});\n"],"mappings":";;;;;;;;;;;;;AAIK,UAAU,CAAC,CAAC,MAAM,OAAO,UAAU;CACvC,QAAQ,MAAM,yBAAyB,0BAA0B,KAAK,CAAC;CACvE,IAAI;EACH,MAAM,eAAe;CACtB,QAAQ,CAER;CACA,QAAQ,KAAK,CAAC;AACf,CAAC"}
|
package/dist/index.mjs
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
4
4
|
(function() {
|
|
5
5
|
try {
|
|
6
6
|
var e = "undefined" != typeof window ? window : "undefined" != typeof global ? global : "undefined" != typeof globalThis ? globalThis : "undefined" != typeof self ? self : {};
|
|
7
|
-
e.SENTRY_RELEASE = { id: "hevy-mcp@3.4.
|
|
7
|
+
e.SENTRY_RELEASE = { id: "hevy-mcp@3.4.1" };
|
|
8
8
|
var n = new e.Error().stack;
|
|
9
9
|
n && (e._sentryDebugIds = e._sentryDebugIds || {}, e._sentryDebugIds[n] = "5b077b94-9ef8-4f24-a0b0-8dcfbf491be1", e._sentryDebugIdIdentifier = "sentry-dbid-5b077b94-9ef8-4f24-a0b0-8dcfbf491be1");
|
|
10
10
|
} catch (e) {}
|
|
11
11
|
})();
|
|
12
|
-
import { n as createServer, r as runServer, t as configSchema } from "./src-
|
|
12
|
+
import { n as createServer, r as runServer, t as configSchema } from "./src-Ch2aS5wP.mjs";
|
|
13
13
|
export { configSchema, createServer, createServer as default, runServer };
|