@poncho-ai/messaging 0.7.1 → 0.7.3

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,5 +1,5 @@
1
1
 
2
- > @poncho-ai/messaging@0.7.1 build /home/runner/work/poncho-ai/poncho-ai/packages/messaging
2
+ > @poncho-ai/messaging@0.7.3 build /Users/cesar/Dev/latitude/poncho-ai/packages/messaging
3
3
  > tsup src/index.ts --format esm --dts
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -8,7 +8,7 @@
8
8
  CLI Target: es2022
9
9
  ESM Build start
10
10
  ESM dist/index.js 51.09 KB
11
- ESM ⚡️ Build success in 67ms
11
+ ESM ⚡️ Build success in 63ms
12
12
  DTS Build start
13
- DTS ⚡️ Build success in 5004ms
13
+ DTS ⚡️ Build success in 2440ms
14
14
  DTS dist/index.d.ts 11.24 KB
@@ -0,0 +1,53 @@
1
+
2
+ > @poncho-ai/messaging@0.7.2 test /Users/cesar/Dev/latitude/poncho-ai/packages/messaging
3
+ > vitest
4
+
5
+
6
+  RUN  v1.6.1 /Users/cesar/Dev/latitude/poncho-ai/packages/messaging
7
+
8
+ ✓ test/adapters/resend.test.ts  (13 tests) 4ms
9
+ ✓ test/adapters/email-utils.test.ts  (44 tests) 6ms
10
+ stderr | test/bridge.test.ts > AgentBridge > posts an error message and cleans up on runner failure
11
+ [agent-bridge] handleMessage error: Model overloaded
12
+
13
+ stderr | test/bridge.test.ts > AgentBridge > skips sendReply when autoReply is false
14
+ [agent-bridge] tool mode completed without send_email being called; no reply sent
15
+
16
+ stderr | test/bridge.test.ts > AgentBridge > suppresses error reply when hasSentInCurrentRequest is true
17
+ [agent-bridge] handleMessage error: Oops
18
+
19
+ stderr | test/bridge.test.ts > AgentBridge > calls resetRequestState before handling each message
20
+ [agent-bridge] tool mode completed without send_email being called; no reply sent
21
+
22
+ ❯ test/bridge.test.ts  (15 tests | 1 failed) 12ms
23
+  ❯ test/bridge.test.ts > AgentBridge > derives deterministic conversation IDs from ThreadRef
24
+  → expected 'c61bdca0-71e1-4785-869c-5552b90054c5' to be 'test:C001:ts_123' // Object.is equality
25
+ ✓ test/adapters/slack.test.ts  (17 tests) 58ms
26
+
27
+ ⎯⎯⎯⎯⎯⎯⎯ Failed Tests 1 ⎯⎯⎯⎯⎯⎯⎯
28
+
29
+  FAIL  test/bridge.test.ts > AgentBridge > derives deterministic conversation IDs from ThreadRef
30
+ AssertionError: expected 'c61bdca0-71e1-4785-869c-5552b90054c5' to be 'test:C001:ts_123' // Object.is equality
31
+
32
+ - Expected
33
+ + Received
34
+
35
+ - test:C001:ts_123
36
+ + c61bdca0-71e1-4785-869c-5552b90054c5
37
+
38
+  ❯ test/bridge.test.ts:88:33
39
+  86| 
40
+  87|  expect(runner._runs).toHaveLength(1);
41
+  88|  expect(runner._runs[0]!.id).toBe("test:C001:ts_123");
42
+  |  ^
43
+  89|  });
44
+  90| 
45
+
46
+ ⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯[1/1]⎯
47
+
48
+  Test Files  1 failed | 3 passed (4)
49
+  Tests  1 failed | 88 passed (89)
50
+  Start at  15:57:53
51
+  Duration  398ms (transform 198ms, setup 0ms, collect 290ms, tests 80ms, environment 0ms, prepare 309ms)
52
+
53
+  ELIFECYCLE  Test failed. See above for more details.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @poncho-ai/messaging
2
2
 
3
+ ## 0.7.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`eb661a5`](https://github.com/cesr/poncho-ai/commit/eb661a554da6839702651671db8a8820ceb13f35)]:
8
+ - @poncho-ai/sdk@1.6.2
9
+
10
+ ## 0.7.2
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [[`4d50ad9`](https://github.com/cesr/poncho-ai/commit/4d50ad970886c9d3635ec36a407514c91ce6a71a)]:
15
+ - @poncho-ai/sdk@1.6.1
16
+
3
17
  ## 0.7.1
4
18
 
5
19
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poncho-ai/messaging",
3
- "version": "0.7.1",
3
+ "version": "0.7.3",
4
4
  "description": "Messaging platform adapters for Poncho agents (Slack, Telegram, etc.)",
5
5
  "repository": {
6
6
  "type": "git",
@@ -20,7 +20,7 @@
20
20
  }
21
21
  },
22
22
  "dependencies": {
23
- "@poncho-ai/sdk": "1.6.0"
23
+ "@poncho-ai/sdk": "1.6.2"
24
24
  },
25
25
  "peerDependencies": {
26
26
  "resend": ">=4.0.0"