@mcpcloud/cli 0.21.0 → 0.21.1

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.js +4 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -7749,6 +7749,7 @@ function registerServerLifecycleCommands(servers) {
7749
7749
 
7750
7750
  // src/commands/servers-transfer.ts
7751
7751
  var TRANSFER_PATH = "/api/v1/server/transfer";
7752
+ var TRANSFER_TIMEOUT_MS = 180000;
7752
7753
  async function resolveTargetOrganizationId(reference) {
7753
7754
  const ref = reference.trim();
7754
7755
  const data = await api.get("/api/v1/organizations");
@@ -7831,7 +7832,9 @@ function registerServerTransferCommand(servers) {
7831
7832
  if (opts.yes && !isJsonMode()) {
7832
7833
  printStep(`Transferring ${c.bold(serverRef)} to ${c.bold(opts.toOrg)}…`);
7833
7834
  }
7834
- result = await api.post(TRANSFER_PATH, body);
7835
+ result = await api.post(TRANSFER_PATH, body, {
7836
+ timeoutMs: TRANSFER_TIMEOUT_MS
7837
+ });
7835
7838
  } catch (err) {
7836
7839
  reportApiError6(err);
7837
7840
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcpcloud/cli",
3
- "version": "0.21.0",
3
+ "version": "0.21.1",
4
4
  "description": "The official CLI for MCPCloud — manage projects, servers, skills, and API keys from the terminal",
5
5
  "type": "module",
6
6
  "bin": {