replicas-engine 0.1.617 → 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 +12 -2
  2. package/package.json +1 -1
package/dist/src/index.js CHANGED
@@ -475,6 +475,7 @@ var AGENT_MODELS = {
475
475
  "gpt-5-mini",
476
476
  "gemini-3.1-pro",
477
477
  "gemini-3-flash",
478
+ "grok-4.6",
478
479
  "grok-4.5",
479
480
  "grok-4.3",
480
481
  CLAUDE_HAIKU_4_5_MODEL,
@@ -519,6 +520,7 @@ var MODEL_LABELS = {
519
520
  [CLAUDE_HAIKU_4_5_MODEL]: "Haiku 4.5",
520
521
  "gemini-3.1-pro": "Gemini 3.1 Pro",
521
522
  "gemini-3-flash": "Gemini 3 Flash",
523
+ "grok-4.6": "Grok 4.6",
522
524
  "grok-4.5": "Grok 4.5",
523
525
  "grok-4.3": "Grok 4.3",
524
526
  "kimi-k2.5": "Kimi K2.5"
@@ -3253,7 +3255,15 @@ var ONE_DAY_MS = 24 * 60 * 60 * 1e3;
3253
3255
  // ../shared/src/routes/workspace-events.ts
3254
3256
  import { z as z2 } from "zod";
3255
3257
  var workspaceChangedEventSchema = z2.discriminatedUnion("type", [
3256
- 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
+ }),
3257
3267
  z2.object({
3258
3268
  type: z2.literal("workspace.chat.changed"),
3259
3269
  workspaceId: z2.string(),
@@ -10888,7 +10898,7 @@ var DEFAULT_CODEX_ARGS = ["app-server", "--listen", "stdio://"];
10888
10898
  var MIN_CODEX_CLI_VERSION = "0.144.6";
10889
10899
  var CODEX_UPGRADE_TIMEOUT_MS = 12e4;
10890
10900
  var codexCliVersionEnsured = null;
10891
- var ENGINE_PACKAGE_VERSION = "0.1.617";
10901
+ var ENGINE_PACKAGE_VERSION = "0.1.619";
10892
10902
  var INITIALIZE_METHOD = "initialize";
10893
10903
  var INITIALIZED_NOTIFICATION = "initialized";
10894
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.617",
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",