feat: complete public entry point exports
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@ -137,6 +137,6 @@ dist
|
|||||||
.pnp.*
|
.pnp.*
|
||||||
|
|
||||||
# AI agents
|
# AI agents
|
||||||
.opencode
|
.opencode*
|
||||||
# Added by code-review-graph
|
# Added by code-review-graph
|
||||||
.code-review-graph/
|
.code-review-graph/
|
||||||
|
|||||||
11
src/index.ts
11
src/index.ts
@ -1,7 +1,3 @@
|
|||||||
export type { HttpClientConfig, RequestOptions } from "./_shared/http.js";
|
|
||||||
export { HttpClient } from "./_shared/http.js";
|
|
||||||
export type { WsConnectionOpts } from "./_shared/websocket.js";
|
|
||||||
export { WsConnection } from "./_shared/websocket.js";
|
|
||||||
export type {
|
export type {
|
||||||
CapsuleCreateOptions,
|
CapsuleCreateOptions,
|
||||||
CapsuleInfo,
|
CapsuleInfo,
|
||||||
@ -83,5 +79,12 @@ export type {
|
|||||||
GitRemoteBranchOptions,
|
GitRemoteBranchOptions,
|
||||||
} from "./git/index.js";
|
} from "./git/index.js";
|
||||||
export { Git } from "./git/index.js";
|
export { Git } from "./git/index.js";
|
||||||
|
export type {
|
||||||
|
$defs,
|
||||||
|
components,
|
||||||
|
operations,
|
||||||
|
paths,
|
||||||
|
webhooks,
|
||||||
|
} from "./models/generated.js";
|
||||||
export type { PtyEvent, PtyStartOptions } from "./pty.js";
|
export type { PtyEvent, PtyStartOptions } from "./pty.js";
|
||||||
export { PtyManager, PtySession } from "./pty.js";
|
export { PtyManager, PtySession } from "./pty.js";
|
||||||
|
|||||||
Reference in New Issue
Block a user