@rallycry/conveyor-mcp 4.3.28 → 4.3.30
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/chunk-D3Q2QZJA.js +162 -0
- package/dist/{chunk-N2XC2PGJ.js → chunk-HIVOGGE3.js} +0 -1
- package/dist/chunk-OPZL4NDT.js +175 -0
- package/dist/{chunk-Y6ZJUNDX.js → chunk-X3EHPZNH.js} +92 -2
- package/dist/cli.js +87 -11
- package/dist/connection-CRkBLz5w.d.ts +911 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.js +4 -5
- package/dist/tunnel-cli.js +4 -5
- package/dist/tunnel.d.ts +2 -803
- package/dist/tunnel.js +1 -2
- package/dist/wait-cli.d.ts +1 -0
- package/dist/wait-cli.js +313 -0
- package/dist/wait-runner.d.ts +48 -0
- package/dist/wait-runner.js +7 -0
- package/dist/wait.d.ts +108 -0
- package/dist/wait.js +28 -0
- package/package.json +3 -2
- package/dist/chunk-N2XC2PGJ.js.map +0 -1
- package/dist/chunk-Y6ZJUNDX.js.map +0 -1
- package/dist/cli.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/tunnel-cli.js.map +0 -1
- package/dist/tunnel.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export { A as ActivePtySession,
|
|
1
|
+
export { A as ActivePtySession, d as ConveyorConnection, e as ConveyorMcpConfig, P as PtyAttachSnapshot, c as PtyDataChunk } from './connection-CRkBLz5w.js';
|
|
2
|
+
export { AttachTunnelOptions, ResolvedPtySession, RunTunnelOptions, TunnelConnection, TunnelHandle, TunnelSession, TunnelTty, WaitForPtySessionOptions, attachTunnel, runTunnel, waitForPtySession } from './tunnel.js';
|
package/dist/index.js
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
|
-
import {
|
|
2
|
-
ConveyorConnection
|
|
3
|
-
} from "./chunk-Y6ZJUNDX.js";
|
|
4
1
|
import {
|
|
5
2
|
attachTunnel,
|
|
6
3
|
runTunnel,
|
|
7
4
|
waitForPtySession
|
|
8
|
-
} from "./chunk-
|
|
5
|
+
} from "./chunk-HIVOGGE3.js";
|
|
6
|
+
import {
|
|
7
|
+
ConveyorConnection
|
|
8
|
+
} from "./chunk-X3EHPZNH.js";
|
|
9
9
|
export {
|
|
10
10
|
ConveyorConnection,
|
|
11
11
|
attachTunnel,
|
|
12
12
|
runTunnel,
|
|
13
13
|
waitForPtySession
|
|
14
14
|
};
|
|
15
|
-
//# sourceMappingURL=index.js.map
|
package/dist/tunnel-cli.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import {
|
|
3
|
-
ConveyorConnection
|
|
4
|
-
} from "./chunk-Y6ZJUNDX.js";
|
|
5
2
|
import {
|
|
6
3
|
runTunnel
|
|
7
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-HIVOGGE3.js";
|
|
5
|
+
import {
|
|
6
|
+
ConveyorConnection
|
|
7
|
+
} from "./chunk-X3EHPZNH.js";
|
|
8
8
|
|
|
9
9
|
// src/tunnel-cli.ts
|
|
10
10
|
var HELP = `conveyor-tunnel \u2014 attach your local terminal to a cloud Claude Code session.
|
|
@@ -158,4 +158,3 @@ try {
|
|
|
158
158
|
log(`Tunnel failed: ${err instanceof Error ? err.message : String(err)}`);
|
|
159
159
|
cleanupAndExit(1);
|
|
160
160
|
}
|
|
161
|
-
//# sourceMappingURL=tunnel-cli.js.map
|