@stigmer/runner-slim 3.2.2 → 3.3.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/main.js +48 -23
- package/package.json +6 -6
- package/workflow-bundle.js +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stigmer/runner-slim",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"description": "Self-contained Stigmer runner build for embedding in desktop apps — the bundle-friendly @stigmer/runner",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"engines": {
|
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
"jq-wasm": "^1.1.0-jq-1.8.1"
|
|
17
17
|
},
|
|
18
18
|
"optionalDependencies": {
|
|
19
|
-
"@stigmer/runner-slim-darwin-arm64": "3.
|
|
20
|
-
"@stigmer/runner-slim-darwin-x64": "3.
|
|
21
|
-
"@stigmer/runner-slim-linux-x64": "3.
|
|
22
|
-
"@stigmer/runner-slim-linux-arm64": "3.
|
|
23
|
-
"@stigmer/runner-slim-win32-x64": "3.
|
|
19
|
+
"@stigmer/runner-slim-darwin-arm64": "3.3.0",
|
|
20
|
+
"@stigmer/runner-slim-darwin-x64": "3.3.0",
|
|
21
|
+
"@stigmer/runner-slim-linux-x64": "3.3.0",
|
|
22
|
+
"@stigmer/runner-slim-linux-arm64": "3.3.0",
|
|
23
|
+
"@stigmer/runner-slim-win32-x64": "3.3.0"
|
|
24
24
|
},
|
|
25
25
|
"keywords": [
|
|
26
26
|
"stigmer",
|
package/workflow-bundle.js
CHANGED
|
@@ -26912,6 +26912,7 @@ async function executeHumanInputTask(taskDef, taskName, state, ctx) {
|
|
|
26912
26912
|
occurredAt: new Date().toISOString(),
|
|
26913
26913
|
outcome: result.outcome,
|
|
26914
26914
|
resolvedBy: result.reviewer ?? "",
|
|
26915
|
+
resolvedByActor: result.reviewer_actor,
|
|
26915
26916
|
comment: "",
|
|
26916
26917
|
waitDurationMs: Date.now() - approvalRequestedAt,
|
|
26917
26918
|
autoResolved: result.auto_resolved ?? false,
|
|
@@ -28802,7 +28803,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
28802
28803
|
* - "approve": returns auto-approved output
|
|
28803
28804
|
* - "deny": returns auto-denied output
|
|
28804
28805
|
*
|
|
28805
|
-
* Signal payload shape:
|
|
28806
|
+
* Signal payload shape:
|
|
28807
|
+
* { outcome, form_data?, reviewer, reviewer_actor?, responded_at }
|
|
28806
28808
|
*
|
|
28807
28809
|
* TEMPORAL SANDBOX: This file runs inside the deterministic workflow isolate.
|
|
28808
28810
|
*/
|