@alfe.ai/openclaw-chat 0.9.15 → 0.9.16
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/plugin.d.cts +4 -0
- package/dist/plugin.d.ts +4 -0
- package/dist/plugin2.cjs +4 -0
- package/dist/plugin2.js +4 -0
- package/package.json +2 -2
package/dist/plugin.d.cts
CHANGED
|
@@ -472,6 +472,10 @@ interface RunEventGate {
|
|
|
472
472
|
* Isolation is preserved: turns to a daemon are serialised
|
|
473
473
|
* (`enqueueAgentTurn`) and the listener is torn down before the next turn
|
|
474
474
|
* dispatches, so the first relevant event locks onto THIS turn's main run.
|
|
475
|
+
* For callers that supply an idempotency key the gate is instead PRE-ARMED
|
|
476
|
+
* with that service run id (see `resolveRequestedRunId` / `withReplyRunId`,
|
|
477
|
+
* which seed the same value as the runtime's own run id), so no lock-on step
|
|
478
|
+
* is needed and only the service-owned run is ever admitted.
|
|
475
479
|
* Concurrent heartbeat/cron runs and subagent / side-question runs carry a
|
|
476
480
|
* different `runId` and are excluded — exactly the leakage the gate exists to
|
|
477
481
|
* prevent. When a run IS control-UI-visible and both keys are present, a
|
package/dist/plugin.d.ts
CHANGED
|
@@ -472,6 +472,10 @@ interface RunEventGate {
|
|
|
472
472
|
* Isolation is preserved: turns to a daemon are serialised
|
|
473
473
|
* (`enqueueAgentTurn`) and the listener is torn down before the next turn
|
|
474
474
|
* dispatches, so the first relevant event locks onto THIS turn's main run.
|
|
475
|
+
* For callers that supply an idempotency key the gate is instead PRE-ARMED
|
|
476
|
+
* with that service run id (see `resolveRequestedRunId` / `withReplyRunId`,
|
|
477
|
+
* which seed the same value as the runtime's own run id), so no lock-on step
|
|
478
|
+
* is needed and only the service-owned run is ever admitted.
|
|
475
479
|
* Concurrent heartbeat/cron runs and subagent / side-question runs carry a
|
|
476
480
|
* different `runId` and are excluded — exactly the leakage the gate exists to
|
|
477
481
|
* prevent. When a run IS control-UI-visible and both keys are present, a
|
package/dist/plugin2.cjs
CHANGED
|
@@ -2284,6 +2284,10 @@ function getAgentApiClient(apiKeyOverride) {
|
|
|
2284
2284
|
* Isolation is preserved: turns to a daemon are serialised
|
|
2285
2285
|
* (`enqueueAgentTurn`) and the listener is torn down before the next turn
|
|
2286
2286
|
* dispatches, so the first relevant event locks onto THIS turn's main run.
|
|
2287
|
+
* For callers that supply an idempotency key the gate is instead PRE-ARMED
|
|
2288
|
+
* with that service run id (see `resolveRequestedRunId` / `withReplyRunId`,
|
|
2289
|
+
* which seed the same value as the runtime's own run id), so no lock-on step
|
|
2290
|
+
* is needed and only the service-owned run is ever admitted.
|
|
2287
2291
|
* Concurrent heartbeat/cron runs and subagent / side-question runs carry a
|
|
2288
2292
|
* different `runId` and are excluded — exactly the leakage the gate exists to
|
|
2289
2293
|
* prevent. When a run IS control-UI-visible and both keys are present, a
|
package/dist/plugin2.js
CHANGED
|
@@ -2284,6 +2284,10 @@ function getAgentApiClient(apiKeyOverride) {
|
|
|
2284
2284
|
* Isolation is preserved: turns to a daemon are serialised
|
|
2285
2285
|
* (`enqueueAgentTurn`) and the listener is torn down before the next turn
|
|
2286
2286
|
* dispatches, so the first relevant event locks onto THIS turn's main run.
|
|
2287
|
+
* For callers that supply an idempotency key the gate is instead PRE-ARMED
|
|
2288
|
+
* with that service run id (see `resolveRequestedRunId` / `withReplyRunId`,
|
|
2289
|
+
* which seed the same value as the runtime's own run id), so no lock-on step
|
|
2290
|
+
* is needed and only the service-owned run is ever admitted.
|
|
2287
2291
|
* Concurrent heartbeat/cron runs and subagent / side-question runs carry a
|
|
2288
2292
|
* different `runId` and are excluded — exactly the leakage the gate exists to
|
|
2289
2293
|
* prevent. When a run IS control-UI-visible and both keys are present, a
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfe.ai/openclaw-chat",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.16",
|
|
4
4
|
"description": "OpenClaw chat plugin for Alfe — web widget and mobile app channels",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/plugin.js",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
],
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@alfe.ai/agent-api-client": "^0.17.1",
|
|
31
|
-
"@alfe.ai/chat": "^0.0.
|
|
31
|
+
"@alfe.ai/chat": "^0.0.19",
|
|
32
32
|
"@alfe.ai/config": "^0.4.1",
|
|
33
33
|
"@alfe.ai/openclaw-plugin-kit": "0.2.0"
|
|
34
34
|
},
|