@inkeep/agents-run-api 0.0.0-dev-20250913015248 → 0.0.0-dev-20250913024156

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/index.cjs CHANGED
@@ -22,8 +22,6 @@ var api = require('@opentelemetry/api');
22
22
  var cors = require('hono/cors');
23
23
  var httpException = require('hono/http-exception');
24
24
  var requestId = require('hono/request-id');
25
- var honoPino = require('hono-pino');
26
- var pino = require('pino');
27
25
  var factory = require('hono/factory');
28
26
  var swaggerUi = require('@hono/swagger-ui');
29
27
  var streaming = require('hono/streaming');
@@ -361,8 +359,6 @@ var sdk = new sdkNode.NodeSDK({
361
359
  ]
362
360
  });
363
361
  sdk.start();
364
-
365
- // src/middleware/api-key-auth.ts
366
362
  init_dbClient();
367
363
  init_env();
368
364
 
@@ -8856,19 +8852,6 @@ function createExecutionHono(serverConfig, credentialStores) {
8856
8852
  }
8857
8853
  return next();
8858
8854
  });
8859
- app6.use(
8860
- honoPino.pinoLogger({
8861
- pino: logger22 || pino.pino({ level: "debug" }),
8862
- http: {
8863
- onResLevel(c) {
8864
- if (c.res.status >= 500) {
8865
- return "error";
8866
- }
8867
- return "info";
8868
- }
8869
- }
8870
- })
8871
- );
8872
8855
  app6.onError(async (err, c) => {
8873
8856
  const isExpectedError = err instanceof httpException.HTTPException;
8874
8857
  const status = isExpectedError ? err.status : 500;
package/dist/index.js CHANGED
@@ -14,8 +14,6 @@ import { trace, propagation, context, SpanStatusCode } from '@opentelemetry/api'
14
14
  import { cors } from 'hono/cors';
15
15
  import { HTTPException } from 'hono/http-exception';
16
16
  import { requestId } from 'hono/request-id';
17
- import { pinoLogger } from 'hono-pino';
18
- import { pino } from 'pino';
19
17
  import { createMiddleware } from 'hono/factory';
20
18
  import { swaggerUI } from '@hono/swagger-ui';
21
19
  import z4, { z } from 'zod';
@@ -8516,19 +8514,6 @@ function createExecutionHono(serverConfig, credentialStores) {
8516
8514
  }
8517
8515
  return next();
8518
8516
  });
8519
- app6.use(
8520
- pinoLogger({
8521
- pino: logger22 || pino({ level: "debug" }),
8522
- http: {
8523
- onResLevel(c) {
8524
- if (c.res.status >= 500) {
8525
- return "error";
8526
- }
8527
- return "info";
8528
- }
8529
- }
8530
- })
8531
- );
8532
8517
  app6.onError(async (err, c) => {
8533
8518
  const isExpectedError = err instanceof HTTPException;
8534
8519
  const status = isExpectedError ? err.status : 500;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-run-api",
3
- "version": "0.0.0-dev-20250913015248",
3
+ "version": "0.0.0-dev-20250913024156",
4
4
  "description": "Agents Run API for Inkeep Agent Framework - handles chat, agent execution, and streaming",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -37,14 +37,12 @@
37
37
  "exit-hook": "^4.0.0",
38
38
  "fetch-to-node": "^2.1.0",
39
39
  "hono": "^4.8.10",
40
- "hono-pino": "^0.10.1",
41
40
  "jmespath": "^0.16.0",
42
41
  "nanoid": "^5.1.5",
43
- "pino": "^9.7.0",
44
42
  "traverse": "^0.6.11",
45
43
  "ts-pattern": "^5.7.1",
46
44
  "zod": "^4.1.5",
47
- "@inkeep/agents-core": "^0.0.0-dev-20250913015248"
45
+ "@inkeep/agents-core": "^0.0.0-dev-20250913024156"
48
46
  },
49
47
  "devDependencies": {
50
48
  "@hono/vite-dev-server": "^0.20.1",
@@ -56,7 +54,6 @@
56
54
  "@types/traverse": "^0.6.37",
57
55
  "@vitest/coverage-v8": "^2.0.0",
58
56
  "nodemon": "^3.1.0",
59
- "pino-pretty": "^13.1.1",
60
57
  "tsx": "^4.7.1",
61
58
  "typescript": "^5.3.3",
62
59
  "vite": "^7.1.4",