replicas-cli 0.2.506 → 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.
Files changed (2) hide show
  1. package/dist/index.mjs +12 -2
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -8015,6 +8015,7 @@ var AGENT_MODELS = {
8015
8015
  "gpt-5-mini",
8016
8016
  "gemini-3.1-pro",
8017
8017
  "gemini-3-flash",
8018
+ "grok-4.6",
8018
8019
  "grok-4.5",
8019
8020
  "grok-4.3",
8020
8021
  CLAUDE_HAIKU_4_5_MODEL,
@@ -8059,6 +8060,7 @@ var MODEL_LABELS = {
8059
8060
  [CLAUDE_HAIKU_4_5_MODEL]: "Haiku 4.5",
8060
8061
  "gemini-3.1-pro": "Gemini 3.1 Pro",
8061
8062
  "gemini-3-flash": "Gemini 3 Flash",
8063
+ "grok-4.6": "Grok 4.6",
8062
8064
  "grok-4.5": "Grok 4.5",
8063
8065
  "grok-4.3": "Grok 4.3",
8064
8066
  "kimi-k2.5": "Kimi K2.5"
@@ -9811,7 +9813,7 @@ function formatTurnElapsed(ms) {
9811
9813
  }
9812
9814
 
9813
9815
  // ../shared/src/cli-version.ts
9814
- var CLI_VERSION = "0.2.506";
9816
+ var CLI_VERSION = "0.2.508";
9815
9817
 
9816
9818
  // ../shared/src/version.ts
9817
9819
  function compareVersions(v1, v2) {
@@ -24536,7 +24538,15 @@ var ONE_DAY_MS = 24 * 60 * 60 * 1e3;
24536
24538
 
24537
24539
  // ../shared/src/routes/workspace-events.ts
24538
24540
  var workspaceChangedEventSchema = external_exports.discriminatedUnion("type", [
24539
- external_exports.object({ type: external_exports.literal("workspace.changed"), workspaceId: external_exports.string(), ts: external_exports.string() }),
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
+ }),
24540
24550
  external_exports.object({
24541
24551
  type: external_exports.literal("workspace.chat.changed"),
24542
24552
  workspaceId: external_exports.string(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replicas-cli",
3
- "version": "0.2.506",
3
+ "version": "0.2.508",
4
4
  "description": "CLI for managing Replicas workspaces - SSH into cloud dev environments with automatic port forwarding",
5
5
  "main": "dist/index.mjs",
6
6
  "bin": {