replicas-cli 0.2.188 → 0.2.189
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 +3 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -8099,6 +8099,8 @@ function getSandboxPaths(providerId) {
|
|
|
8099
8099
|
return E2B_PATHS;
|
|
8100
8100
|
}
|
|
8101
8101
|
}
|
|
8102
|
+
var WORKSPACE_SIZES = ["small", "large"];
|
|
8103
|
+
var INVALID_WORKSPACE_SIZE_ERROR = `Invalid size: must be one of ${WORKSPACE_SIZES.join(", ")}`;
|
|
8102
8104
|
|
|
8103
8105
|
// ../shared/src/urls.ts
|
|
8104
8106
|
function getWorkspaceDashboardUrl(workspaceId, options = {}) {
|
|
@@ -16575,7 +16577,7 @@ Deleted file ${pathOrId}.
|
|
|
16575
16577
|
}
|
|
16576
16578
|
|
|
16577
16579
|
// src/index.ts
|
|
16578
|
-
var CLI_VERSION = "0.2.
|
|
16580
|
+
var CLI_VERSION = "0.2.189";
|
|
16579
16581
|
function parseBooleanOption(value) {
|
|
16580
16582
|
if (value === "true") return true;
|
|
16581
16583
|
if (value === "false") return false;
|