replicas-cli 0.2.124 → 0.2.126
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.
|
@@ -7499,7 +7499,7 @@ function getWorkspaceDashboardUrl(workspaceId, options = {}) {
|
|
|
7499
7499
|
const { encodeWorkspaceId = true, mode } = options;
|
|
7500
7500
|
const workspaceIdValue = encodeWorkspaceId ? encodeURIComponent(workspaceId) : workspaceId;
|
|
7501
7501
|
const modeParam = mode ? `?mode=${encodeURIComponent(mode)}` : "";
|
|
7502
|
-
return `https://www.replicas.dev/
|
|
7502
|
+
return `https://www.replicas.dev/workspaces/${workspaceIdValue}${modeParam}`;
|
|
7503
7503
|
}
|
|
7504
7504
|
var PR_URL_REGEX = /github\.com\/([^/]+)\/([^/]+)\/pull\/(\d+)/;
|
|
7505
7505
|
function parsePrUrl(url) {
|
|
@@ -8289,7 +8289,8 @@ var PLANS = {
|
|
|
8289
8289
|
"1,200 minutes of API + automation usage (one-time)",
|
|
8290
8290
|
"Automations (limited to 2)",
|
|
8291
8291
|
"Warm pools and warm hooks",
|
|
8292
|
-
"Up to 3 repositories"
|
|
8292
|
+
"Up to 3 repositories",
|
|
8293
|
+
"Up to 5 environments"
|
|
8293
8294
|
]
|
|
8294
8295
|
},
|
|
8295
8296
|
developer: {
|
|
@@ -8302,6 +8303,7 @@ var PLANS = {
|
|
|
8302
8303
|
"Unlimited human-initiated workspaces",
|
|
8303
8304
|
"5,000 included automation/API minutes per month",
|
|
8304
8305
|
"Up to 10 repositories",
|
|
8306
|
+
"Up to 15 environments",
|
|
8305
8307
|
"Up to 5 automations",
|
|
8306
8308
|
"Warm pools and warm hooks",
|
|
8307
8309
|
"API access"
|
package/dist/index.mjs
CHANGED
|
@@ -19,7 +19,7 @@ import {
|
|
|
19
19
|
setIdeCommand,
|
|
20
20
|
setOrganizationId,
|
|
21
21
|
writeConfig
|
|
22
|
-
} from "./chunk-
|
|
22
|
+
} from "./chunk-KTD7UV5U.mjs";
|
|
23
23
|
import "./chunk-FFDYI4OH.mjs";
|
|
24
24
|
|
|
25
25
|
// src/index.ts
|
|
@@ -2497,12 +2497,12 @@ async function interactiveCommand() {
|
|
|
2497
2497
|
);
|
|
2498
2498
|
}
|
|
2499
2499
|
console.log(chalk18.gray("Starting interactive mode..."));
|
|
2500
|
-
const { launchInteractive } = await import("./interactive-
|
|
2500
|
+
const { launchInteractive } = await import("./interactive-7EFXQGUC.mjs");
|
|
2501
2501
|
await launchInteractive();
|
|
2502
2502
|
}
|
|
2503
2503
|
|
|
2504
2504
|
// src/index.ts
|
|
2505
|
-
var CLI_VERSION = "0.2.
|
|
2505
|
+
var CLI_VERSION = "0.2.126";
|
|
2506
2506
|
var program = new Command();
|
|
2507
2507
|
program.name("replicas").description("CLI for managing Replicas workspaces").version(CLI_VERSION);
|
|
2508
2508
|
program.command("login").description("Authenticate with your Replicas account").action(async () => {
|
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
isAgentBackendEvent,
|
|
13
13
|
parseAgentEvents,
|
|
14
14
|
parseUserMessage
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-KTD7UV5U.mjs";
|
|
16
16
|
import "./chunk-FFDYI4OH.mjs";
|
|
17
17
|
|
|
18
18
|
// src/interactive/index.tsx
|
|
@@ -2202,7 +2202,7 @@ function WorkspaceInfo({ status, workspaceName, workspaceId, focused, loading, a
|
|
|
2202
2202
|
if (!item) return;
|
|
2203
2203
|
switch (item.type) {
|
|
2204
2204
|
case "dashboard":
|
|
2205
|
-
open(`${WEB_APP_URL}/
|
|
2205
|
+
open(`${WEB_APP_URL}/workspaces/${item.workspaceId}`).catch(() => {
|
|
2206
2206
|
});
|
|
2207
2207
|
break;
|
|
2208
2208
|
case "wake":
|