@vellumai/assistant 0.10.4-dev.202607010119.ad15dbb → 0.10.4-dev.202607010146.a37a2fa

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/Dockerfile CHANGED
@@ -24,7 +24,6 @@ COPY packages/egress-proxy ./packages/egress-proxy
24
24
  COPY packages/environments ./packages/environments
25
25
  COPY packages/gateway-client ./packages/gateway-client
26
26
  COPY packages/ipc-server-utils ./packages/ipc-server-utils
27
- COPY packages/skill-host-contracts ./packages/skill-host-contracts
28
27
  COPY packages/slack-text ./packages/slack-text
29
28
  COPY packages/twilio-client ./packages/twilio-client
30
29
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vellumai/assistant",
3
- "version": "0.10.4-dev.202607010119.ad15dbb",
3
+ "version": "0.10.4-dev.202607010146.a37a2fa",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "exports": {
@@ -827,6 +827,13 @@ describe("Conversation message queue", () => {
827
827
  (e) => e.type === "conversation_error",
828
828
  );
829
829
  expect(conversationErr3).toBeUndefined();
830
+
831
+ // Settle the aborted in-flight run so its abort watchdog clears the
832
+ // real-time timer it armed. A leaked ~5s timer otherwise fires during a
833
+ // later test and drives this stale turn into commitTurnChanges, inflating
834
+ // the shared turnCommitCalls counter that other tests assert against.
835
+ await resolveRun(0);
836
+ await new Promise((r) => setTimeout(r, 10));
830
837
  });
831
838
 
832
839
  test("conversation-scoped errors emit both conversation_error and generic error", async () => {
@@ -2801,6 +2808,13 @@ describe("Regression: cancel semantics and error channel split", () => {
2801
2808
  );
2802
2809
  expect(conversationErr).toBeUndefined();
2803
2810
  }
2811
+
2812
+ // Settle the aborted in-flight run so its abort watchdog clears the
2813
+ // real-time timer it armed. A leaked ~5s timer otherwise fires during a
2814
+ // later test and drives this stale turn into commitTurnChanges, inflating
2815
+ // the shared turnCommitCalls counter that other tests assert against.
2816
+ await resolveRun(0);
2817
+ await new Promise((r) => setTimeout(r, 10));
2804
2818
  });
2805
2819
 
2806
2820
  test("commitTurnChanges never resolving within budget -> turn still completes and drains queue", async () => {