rol-websocket-channel 1.3.8 → 1.4.2
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.js +4 -0
- package/index.ts +4 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -393,6 +393,10 @@ async function handleIncomingMessage(payload, account, cfg, runtime, log, mqttTo
|
|
|
393
393
|
type: "receiver",
|
|
394
394
|
trace_id: traceId,
|
|
395
395
|
source: "ai",
|
|
396
|
+
meta: {
|
|
397
|
+
'agentId': resolvedAccountId,
|
|
398
|
+
'sessionKey': resolvedSessionKey
|
|
399
|
+
},
|
|
396
400
|
data: payload,
|
|
397
401
|
timestamp: Date.now(),
|
|
398
402
|
};
|
package/index.ts
CHANGED