replicas-engine 0.1.618 → 0.1.619

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.
Files changed (2) hide show
  1. package/dist/src/index.js +10 -2
  2. package/package.json +1 -1
package/dist/src/index.js CHANGED
@@ -3255,7 +3255,15 @@ var ONE_DAY_MS = 24 * 60 * 60 * 1e3;
3255
3255
  // ../shared/src/routes/workspace-events.ts
3256
3256
  import { z as z2 } from "zod";
3257
3257
  var workspaceChangedEventSchema = z2.discriminatedUnion("type", [
3258
- z2.object({ type: z2.literal("workspace.changed"), workspaceId: z2.string(), ts: z2.string() }),
3258
+ z2.object({
3259
+ type: z2.literal("workspace.changed"),
3260
+ workspaceId: z2.string(),
3261
+ completion: z2.object({
3262
+ workspaceName: z2.string(),
3263
+ completedAt: z2.string()
3264
+ }).optional(),
3265
+ ts: z2.string()
3266
+ }),
3259
3267
  z2.object({
3260
3268
  type: z2.literal("workspace.chat.changed"),
3261
3269
  workspaceId: z2.string(),
@@ -10890,7 +10898,7 @@ var DEFAULT_CODEX_ARGS = ["app-server", "--listen", "stdio://"];
10890
10898
  var MIN_CODEX_CLI_VERSION = "0.144.6";
10891
10899
  var CODEX_UPGRADE_TIMEOUT_MS = 12e4;
10892
10900
  var codexCliVersionEnsured = null;
10893
- var ENGINE_PACKAGE_VERSION = "0.1.618";
10901
+ var ENGINE_PACKAGE_VERSION = "0.1.619";
10894
10902
  var INITIALIZE_METHOD = "initialize";
10895
10903
  var INITIALIZED_NOTIFICATION = "initialized";
10896
10904
  var ACCOUNT_LOGIN_START_METHOD = "account/login/start";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replicas-engine",
3
- "version": "0.1.618",
3
+ "version": "0.1.619",
4
4
  "description": "Lightweight API server for Replicas workspaces",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",