@akagilnc/pi-workflow-roles 0.1.4700 → 0.1.4721
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.
|
@@ -19081,7 +19081,11 @@ async function dispatchPostAdmissionTurn(input) {
|
|
|
19081
19081
|
return { ...settled2, ...deferredPersist };
|
|
19082
19082
|
}
|
|
19083
19083
|
}
|
|
19084
|
-
let turnRequest =
|
|
19084
|
+
let turnRequest = {
|
|
19085
|
+
...env.signal === void 0 ? request : { ...request, signal: env.signal },
|
|
19086
|
+
principal: admitted.principal,
|
|
19087
|
+
runDirectory: admitted.runDirectory
|
|
19088
|
+
};
|
|
19085
19089
|
if (env.stationChild !== void 0) {
|
|
19086
19090
|
turnRequest = { ...turnRequest, stationChild: env.stationChild };
|
|
19087
19091
|
}
|
|
@@ -18544,7 +18544,11 @@ async function dispatchPostAdmissionTurn(input) {
|
|
|
18544
18544
|
return { ...settled2, ...deferredPersist };
|
|
18545
18545
|
}
|
|
18546
18546
|
}
|
|
18547
|
-
let turnRequest =
|
|
18547
|
+
let turnRequest = {
|
|
18548
|
+
...env.signal === void 0 ? request : { ...request, signal: env.signal },
|
|
18549
|
+
principal: admitted.principal,
|
|
18550
|
+
runDirectory: admitted.runDirectory
|
|
18551
|
+
};
|
|
18548
18552
|
if (env.stationChild !== void 0) {
|
|
18549
18553
|
turnRequest = { ...turnRequest, stationChild: env.stationChild };
|
|
18550
18554
|
}
|
package/dist/public-cli/main.js
CHANGED
|
@@ -28634,7 +28634,11 @@ async function dispatchPostAdmissionTurn(input) {
|
|
|
28634
28634
|
return { ...settled2, ...deferredPersist };
|
|
28635
28635
|
}
|
|
28636
28636
|
}
|
|
28637
|
-
let turnRequest =
|
|
28637
|
+
let turnRequest = {
|
|
28638
|
+
...env.signal === void 0 ? request : { ...request, signal: env.signal },
|
|
28639
|
+
principal: admitted.principal,
|
|
28640
|
+
runDirectory: admitted.runDirectory
|
|
28641
|
+
};
|
|
28638
28642
|
if (env.stationChild !== void 0) {
|
|
28639
28643
|
turnRequest = { ...turnRequest, stationChild: env.stationChild };
|
|
28640
28644
|
}
|
|
@@ -424,7 +424,13 @@ export async function dispatchPostAdmissionTurn(input) {
|
|
|
424
424
|
// (station-child and ordinary share one seam). Dialogue continuation stays
|
|
425
425
|
// caller/peer opaque — never splice system path sections into user dialogue.
|
|
426
426
|
// No package-resume parallel face or typed resume identity.
|
|
427
|
-
|
|
427
|
+
// #990: one-shot / auto-resume may freeze principal+runDirectory before
|
|
428
|
+
// relocate; always take durable identity from the live admitted object.
|
|
429
|
+
let turnRequest = {
|
|
430
|
+
...(env.signal === undefined ? request : { ...request, signal: env.signal }),
|
|
431
|
+
principal: admitted.principal,
|
|
432
|
+
runDirectory: admitted.runDirectory,
|
|
433
|
+
};
|
|
428
434
|
if (env.stationChild !== undefined) {
|
|
429
435
|
turnRequest = { ...turnRequest, stationChild: env.stationChild };
|
|
430
436
|
}
|
package/package.json
CHANGED
|
@@ -839,8 +839,13 @@ export async function dispatchPostAdmissionTurn<
|
|
|
839
839
|
// (station-child and ordinary share one seam). Dialogue continuation stays
|
|
840
840
|
// caller/peer opaque — never splice system path sections into user dialogue.
|
|
841
841
|
// No package-resume parallel face or typed resume identity.
|
|
842
|
-
|
|
843
|
-
|
|
842
|
+
// #990: one-shot / auto-resume may freeze principal+runDirectory before
|
|
843
|
+
// relocate; always take durable identity from the live admitted object.
|
|
844
|
+
let turnRequest: RoleTurnRequest = {
|
|
845
|
+
...(env.signal === undefined ? request : { ...request, signal: env.signal }),
|
|
846
|
+
principal: admitted.principal,
|
|
847
|
+
runDirectory: admitted.runDirectory,
|
|
848
|
+
};
|
|
844
849
|
if (env.stationChild !== undefined) {
|
|
845
850
|
turnRequest = { ...turnRequest, stationChild: env.stationChild };
|
|
846
851
|
}
|