File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6868 "default" : " ./dist/process.js"
6969 },
7070 "./sidecar-client" : {
71- "types" : " ./dist/sidecar-client .d.ts" ,
72- "import" : " ./dist/sidecar-client .js" ,
73- "default" : " ./dist/sidecar-client .js"
71+ "types" : " ./dist/sidecar-process .d.ts" ,
72+ "import" : " ./dist/sidecar-process .js" ,
73+ "default" : " ./dist/sidecar-process .js"
7474 },
7575 "./test-runtime" : {
7676 "types" : " ./dist/test-runtime.d.ts" ,
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ export * from "./protocol-client.js";
1919export * from "./protocol-frames.js" ;
2020export * from "./request-payloads.js" ;
2121export * from "./response-payloads.js" ;
22- export { SidecarProcess } from "./sidecar-process.js" ;
22+ export { SidecarProcess , Sidecar } from "./sidecar-process.js" ;
2323export type { SidecarSpawnOptions } from "./sidecar-process.js" ;
2424export * from "./state.js" ;
2525export * as protocol from "./generated-protocol.js" ;
Original file line number Diff line number Diff line change @@ -54,6 +54,10 @@ export {
5454 SidecarProcessExited ,
5555} from "./process.js" ;
5656export { SidecarEventBufferOverflow } from "./event-buffer.js" ;
57+ // `Sidecar` is the public name for the native sidecar process client. The class
58+ // is `SidecarProcess` internally; consumers import it as `Sidecar` via the
59+ // `@secure-exec/core/sidecar-client` subpath and the package root.
60+ export { SidecarProcess as Sidecar } ;
5761
5862const BRIDGE_CONTRACT_VERSION = 1 ;
5963
You can’t perform that action at this time.
0 commit comments