replicas-cli 0.2.507 → 0.2.508
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.mjs +10 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -9813,7 +9813,7 @@ function formatTurnElapsed(ms) {
|
|
|
9813
9813
|
}
|
|
9814
9814
|
|
|
9815
9815
|
// ../shared/src/cli-version.ts
|
|
9816
|
-
var CLI_VERSION = "0.2.
|
|
9816
|
+
var CLI_VERSION = "0.2.508";
|
|
9817
9817
|
|
|
9818
9818
|
// ../shared/src/version.ts
|
|
9819
9819
|
function compareVersions(v1, v2) {
|
|
@@ -24538,7 +24538,15 @@ var ONE_DAY_MS = 24 * 60 * 60 * 1e3;
|
|
|
24538
24538
|
|
|
24539
24539
|
// ../shared/src/routes/workspace-events.ts
|
|
24540
24540
|
var workspaceChangedEventSchema = external_exports.discriminatedUnion("type", [
|
|
24541
|
-
external_exports.object({
|
|
24541
|
+
external_exports.object({
|
|
24542
|
+
type: external_exports.literal("workspace.changed"),
|
|
24543
|
+
workspaceId: external_exports.string(),
|
|
24544
|
+
completion: external_exports.object({
|
|
24545
|
+
workspaceName: external_exports.string(),
|
|
24546
|
+
completedAt: external_exports.string()
|
|
24547
|
+
}).optional(),
|
|
24548
|
+
ts: external_exports.string()
|
|
24549
|
+
}),
|
|
24542
24550
|
external_exports.object({
|
|
24543
24551
|
type: external_exports.literal("workspace.chat.changed"),
|
|
24544
24552
|
workspaceId: external_exports.string(),
|