@ekairos/events 1.22.8-beta.development.0 → 1.22.10-beta.development.0
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/context.engine.js +1 -2
- package/package.json +6 -6
package/dist/context.engine.js
CHANGED
|
@@ -817,9 +817,8 @@ export class ContextEngine {
|
|
|
817
817
|
const { createHook, createWebhook } = await import("workflow");
|
|
818
818
|
const toolCallId = String(actionRequest.actionRef);
|
|
819
819
|
const hookToken = toolApprovalHookToken({ executionId, toolCallId });
|
|
820
|
-
const webhookToken = toolApprovalWebhookToken({ executionId, toolCallId });
|
|
821
820
|
const hook = createHook({ token: hookToken });
|
|
822
|
-
const webhook = createWebhook(
|
|
821
|
+
const webhook = createWebhook();
|
|
823
822
|
const approvalOrRequest = await Promise.race([
|
|
824
823
|
hook.then((approval) => ({ source: "hook", approval })),
|
|
825
824
|
webhook.then((request) => ({ source: "webhook", request })),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ekairos/events",
|
|
3
|
-
"version": "1.22.
|
|
3
|
+
"version": "1.22.10-beta.development.0",
|
|
4
4
|
"description": "Ekairos Events - Context-first workflow runtime",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -117,7 +117,7 @@
|
|
|
117
117
|
},
|
|
118
118
|
"dependencies": {
|
|
119
119
|
"@ai-sdk/openai": "^2.0.52",
|
|
120
|
-
"@ekairos/domain": "^1.22.
|
|
120
|
+
"@ekairos/domain": "^1.22.10-beta.development.0",
|
|
121
121
|
"@instantdb/admin": "0.22.158",
|
|
122
122
|
"@instantdb/core": "0.22.142",
|
|
123
123
|
"@vercel/mcp-adapter": "^1.0.0",
|
|
@@ -127,15 +127,15 @@
|
|
|
127
127
|
"jose": "^6.1.3",
|
|
128
128
|
"llamaindex": "^0.12.0",
|
|
129
129
|
"react": "^19.2.0",
|
|
130
|
-
"workflow": "
|
|
130
|
+
"workflow": "5.0.0-beta.1",
|
|
131
131
|
"xmlbuilder2": "^3.1.1",
|
|
132
|
-
"zod": "^4.
|
|
132
|
+
"zod": "^4.3.6"
|
|
133
133
|
},
|
|
134
134
|
"devDependencies": {
|
|
135
135
|
"@ekairos/testing": "workspace:*",
|
|
136
136
|
"@ekairos/tsconfig": "workspace:*",
|
|
137
|
-
"@workflow/serde": "
|
|
138
|
-
"@workflow/vitest": "
|
|
137
|
+
"@workflow/serde": "5.0.0-beta.0",
|
|
138
|
+
"@workflow/vitest": "5.0.0-beta.1",
|
|
139
139
|
"@types/node": "^24.5.0",
|
|
140
140
|
"@types/react": "^19.2.2",
|
|
141
141
|
"dotenv": "^17.2.3",
|