replicas-cli 0.2.47 → 0.2.49

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 CHANGED
@@ -1855,12 +1855,12 @@ async function interactiveCommand() {
1855
1855
  );
1856
1856
  }
1857
1857
  console.log(chalk17.gray("Starting interactive mode..."));
1858
- const { launchInteractive } = await import("./interactive-YKIXOXQX.mjs");
1858
+ const { launchInteractive } = await import("./interactive-EWNWT5K6.mjs");
1859
1859
  await launchInteractive();
1860
1860
  }
1861
1861
 
1862
1862
  // src/index.ts
1863
- var CLI_VERSION = "0.2.47";
1863
+ var CLI_VERSION = "0.2.49";
1864
1864
  var program = new Command();
1865
1865
  program.name("replicas").description("CLI for managing Replicas workspaces").version(CLI_VERSION);
1866
1866
  program.command("login").description("Authenticate with your Replicas account").action(async () => {
@@ -2117,6 +2117,7 @@ function AppInner() {
2117
2117
  mockGroupRef.current.set(mock.id, groupId);
2118
2118
  setMockWorkspaces((prev) => [mock, ...prev]);
2119
2119
  setSelectedWorkspaceId(mock.id);
2120
+ setFocusPanel("chat-input");
2120
2121
  try {
2121
2122
  const request = groupType === "set" ? { repository_set_id: groupId.replace(/^set:/, ""), name: mock.name, placeholder: true } : { repository_ids: [groupId], name: mock.name, placeholder: true };
2122
2123
  const result = await createWorkspaceMutation.mutateAsync(request);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replicas-cli",
3
- "version": "0.2.47",
3
+ "version": "0.2.49",
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": {