chatroom-cli 1.59.0 → 1.59.1
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 -3
- package/dist/index.js.map +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -104460,6 +104460,7 @@ var init_assigned_task_monitor_contract = __esm(() => {
|
|
|
104460
104460
|
workingDir: exports_external.string().optional(),
|
|
104461
104461
|
assignedTo: exports_external.string().optional(),
|
|
104462
104462
|
lastSeenAction: exports_external.string().nullable().optional(),
|
|
104463
|
+
lastStatus: exports_external.string().nullable().optional(),
|
|
104463
104464
|
spawnedAgentPid: exports_external.number().optional(),
|
|
104464
104465
|
desiredState: exports_external.string().optional(),
|
|
104465
104466
|
sessionAugmentation: sessionAugmentationSchema.optional()
|
|
@@ -104621,7 +104622,7 @@ function bootstrapMonitorRowFromSignal(signal) {
|
|
|
104621
104622
|
participant: {
|
|
104622
104623
|
lastSeenAction: signal.lastSeenAction ?? null,
|
|
104623
104624
|
lastSeenAt: null,
|
|
104624
|
-
lastStatus: null
|
|
104625
|
+
lastStatus: signal.lastStatus ?? null
|
|
104625
104626
|
}
|
|
104626
104627
|
};
|
|
104627
104628
|
}
|
|
@@ -104637,7 +104638,7 @@ function patchMonitorRowFromSignal(existing, signal) {
|
|
|
104637
104638
|
participant: {
|
|
104638
104639
|
lastSeenAction: signal.lastSeenAction ?? existing.participant?.lastSeenAction ?? null,
|
|
104639
104640
|
lastSeenAt: existing.participant?.lastSeenAt ?? null,
|
|
104640
|
-
lastStatus: existing.participant?.lastStatus ?? null
|
|
104641
|
+
lastStatus: signal.lastStatus ?? existing.participant?.lastStatus ?? null
|
|
104641
104642
|
}
|
|
104642
104643
|
};
|
|
104643
104644
|
}
|
|
@@ -106888,4 +106889,4 @@ program2.hook("preAction", async (_thisCommand, actionCommand) => {
|
|
|
106888
106889
|
});
|
|
106889
106890
|
program2.parse();
|
|
106890
106891
|
|
|
106891
|
-
//# debugId=
|
|
106892
|
+
//# debugId=8C344CD05121AB9864756E2164756E21
|