@inkeep/agents-work-apps 0.53.4 → 0.53.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,11 +1,11 @@
1
1
  import { Hono } from "hono";
2
- import * as hono_types0 from "hono/types";
2
+ import * as hono_types5 from "hono/types";
3
3
 
4
4
  //#region src/github/mcp/index.d.ts
5
5
  declare const app: Hono<{
6
6
  Variables: {
7
7
  toolId: string;
8
8
  };
9
- }, hono_types0.BlankSchema, "/">;
9
+ }, hono_types5.BlankSchema, "/">;
10
10
  //#endregion
11
11
  export { app as default };
@@ -1,7 +1,7 @@
1
1
  import { Hono } from "hono";
2
- import * as hono_types8 from "hono/types";
2
+ import * as hono_types3 from "hono/types";
3
3
 
4
4
  //#region src/github/routes/tokenExchange.d.ts
5
- declare const app: Hono<hono_types8.BlankEnv, hono_types8.BlankSchema, "/">;
5
+ declare const app: Hono<hono_types3.BlankEnv, hono_types3.BlankSchema, "/">;
6
6
  //#endregion
7
7
  export { app as default };
@@ -1,5 +1,5 @@
1
1
  import { Hono } from "hono";
2
- import * as hono_types4 from "hono/types";
2
+ import * as hono_types8 from "hono/types";
3
3
 
4
4
  //#region src/github/routes/webhooks.d.ts
5
5
  interface WebhookVerificationResult {
@@ -7,6 +7,6 @@ interface WebhookVerificationResult {
7
7
  error?: string;
8
8
  }
9
9
  declare function verifyWebhookSignature(payload: string, signature: string | undefined, secret: string): WebhookVerificationResult;
10
- declare const app: Hono<hono_types4.BlankEnv, hono_types4.BlankSchema, "/">;
10
+ declare const app: Hono<hono_types8.BlankEnv, hono_types8.BlankSchema, "/">;
11
11
  //#endregion
12
12
  export { WebhookVerificationResult, app as default, verifyWebhookSignature };
@@ -217,6 +217,7 @@ async function streamAgentResponse(params) {
217
217
  const toolCallIdToName = /* @__PURE__ */ new Map();
218
218
  const toolCallIdToInput = /* @__PURE__ */ new Map();
219
219
  const toolErrors = [];
220
+ const successfulToolNames = /* @__PURE__ */ new Set();
220
221
  const citations = [];
221
222
  const summaryLabels = [];
222
223
  let richMessageCount = 0;
@@ -299,6 +300,11 @@ async function streamAgentResponse(params) {
299
300
  });
300
301
  continue;
301
302
  }
303
+ if (data.type === "tool-output-available" && data.toolCallId) {
304
+ const toolName = toolCallIdToName.get(String(data.toolCallId));
305
+ if (toolName) successfulToolNames.add(toolName);
306
+ continue;
307
+ }
302
308
  if (data.type === "data-component" && data.data && typeof data.data === "object") {
303
309
  if (richMessageCount < MAX_RICH_MESSAGES) {
304
310
  const { blocks, overflowJson, componentType } = buildDataComponentBlocks({
@@ -405,7 +411,10 @@ async function streamAgentResponse(params) {
405
411
  }
406
412
  clearTimeout(timeoutId);
407
413
  const stopBlocks = [];
408
- for (const { toolName, errorText } of toolErrors) stopBlocks.push(buildToolOutputErrorBlock(toolName, errorText));
414
+ for (const { toolName, errorText } of toolErrors) {
415
+ if (successfulToolNames.has(toolName)) continue;
416
+ stopBlocks.push(buildToolOutputErrorBlock(toolName, errorText));
417
+ }
409
418
  if (summaryLabels.length > 0) stopBlocks.push(buildSummaryBreadcrumbBlock(summaryLabels));
410
419
  if (citations.length > 0) {
411
420
  const citationBlocks = buildCitationsBlock(citations);
@@ -8,12 +8,12 @@ import { AgentOption } from "../modals.js";
8
8
  * Called on every @mention and /inkeep command — caching avoids redundant DB queries.
9
9
  */
10
10
  declare function findCachedUserMapping(tenantId: string, slackUserId: string, teamId: string, clientId?: string): Promise<{
11
+ slackUserId: string;
11
12
  id: string;
12
13
  createdAt: string;
13
14
  updatedAt: string;
14
15
  tenantId: string;
15
16
  clientId: string;
16
- slackUserId: string;
17
17
  slackTeamId: string;
18
18
  slackEnterpriseId: string | null;
19
19
  inkeepUserId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/agents-work-apps",
3
- "version": "0.53.4",
3
+ "version": "0.53.6",
4
4
  "description": "First party integrations for Inkeep Agents",
5
5
  "type": "module",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
@@ -33,7 +33,7 @@
33
33
  "jose": "^6.1.0",
34
34
  "minimatch": "^10.1.1",
35
35
  "slack-block-builder": "^2.8.0",
36
- "@inkeep/agents-core": "0.53.4"
36
+ "@inkeep/agents-core": "0.53.6"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "@hono/zod-openapi": "^1.1.5",