@h-rig/contracts 0.0.6-alpha.9 → 0.0.6-alpha.91
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.cjs +5838 -0
- package/dist/index.mjs +5797 -0
- package/dist/src/artifact.d.ts +13 -0
- package/dist/src/artifact.js +3 -0
- package/dist/src/baseSchemas.d.ts +63 -0
- package/dist/src/baseSchemas.js +6 -0
- package/dist/src/cli-output.d.ts +324 -0
- package/dist/src/cli-output.js +190 -0
- package/dist/src/config.d.ts +316 -0
- package/dist/src/config.js +14 -2
- package/dist/src/conversation.d.ts +50 -0
- package/dist/src/conversation.js +3 -0
- package/dist/src/editor.d.ts +25 -0
- package/dist/src/editor.js +3 -0
- package/dist/src/engine.d.ts +2789 -0
- package/dist/src/engine.js +7 -2
- package/dist/src/git.d.ts +144 -0
- package/dist/src/git.js +3 -0
- package/dist/src/graph.d.ts +39 -0
- package/dist/src/graph.js +3 -0
- package/dist/src/help-catalog.d.ts +30 -0
- package/dist/src/help-catalog.js +351 -0
- package/dist/src/index.d.ts +37 -0
- package/dist/src/index.js +2469 -1219
- package/dist/src/ipc.d.ts +248 -0
- package/dist/src/keybindings.d.ts +71 -0
- package/dist/src/keybindings.js +3 -0
- package/dist/src/model.d.ts +77 -0
- package/dist/src/orchestration.d.ts +3695 -0
- package/dist/src/orchestration.js +3 -0
- package/dist/src/pi-session.d.ts +113 -0
- package/dist/src/pi-session.js +1 -0
- package/dist/src/plugin-hooks.d.ts +51 -0
- package/dist/src/plugin-hooks.js +112 -0
- package/dist/src/plugin.d.ts +230 -0
- package/dist/src/policy.d.ts +16 -0
- package/dist/src/policy.js +3 -0
- package/dist/src/project.d.ts +71 -0
- package/dist/src/project.js +3 -0
- package/dist/src/protocol-version.d.ts +21 -0
- package/dist/src/protocol-version.js +6 -0
- package/dist/src/provider.d.ts +105 -0
- package/dist/src/provider.js +3 -0
- package/dist/src/providerRuntime.d.ts +3949 -0
- package/dist/src/providerRuntime.js +3 -0
- package/dist/src/remote.d.ts +326 -0
- package/dist/src/remote.js +7 -2
- package/dist/src/review.d.ts +18 -0
- package/dist/src/review.js +3 -0
- package/dist/src/rig.d.ts +783 -0
- package/dist/src/rig.js +58 -4
- package/dist/src/run-journal.d.ts +763 -0
- package/dist/src/run-journal.js +1509 -0
- package/dist/src/run-session-journal.d.ts +53 -0
- package/dist/src/run-session-journal.js +1582 -0
- package/dist/src/run-status.d.ts +12 -0
- package/dist/src/run-status.js +38 -0
- package/dist/src/runtime.d.ts +103 -0
- package/dist/src/runtime.js +7 -2
- package/dist/src/server.d.ts +106 -0
- package/dist/src/server.js +3 -0
- package/dist/src/serviceFabric.d.ts +62 -0
- package/dist/src/serviceFabric.js +3 -0
- package/dist/src/task-source.d.ts +28 -0
- package/dist/src/terminal.d.ts +130 -0
- package/dist/src/terminal.js +3 -0
- package/dist/src/validation.d.ts +14 -0
- package/dist/src/validation.js +3 -0
- package/dist/src/workspace.d.ts +204 -0
- package/dist/src/workspace.js +3 -0
- package/dist/src/ws.d.ts +747 -0
- package/dist/src/ws.js +52 -3
- package/package.json +6 -3
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export { Schema } from "effect";
|
|
2
|
+
export * from "./baseSchemas";
|
|
3
|
+
export * from "./workspace";
|
|
4
|
+
export * from "./graph";
|
|
5
|
+
export * from "./runtime";
|
|
6
|
+
export * from "./run-journal";
|
|
7
|
+
export * from "./run-session-journal";
|
|
8
|
+
export * from "./run-status";
|
|
9
|
+
export * from "./conversation";
|
|
10
|
+
export * from "./plugin";
|
|
11
|
+
export * from "./plugin-hooks";
|
|
12
|
+
export * from "./config";
|
|
13
|
+
export * from "./policy";
|
|
14
|
+
export * from "./validation";
|
|
15
|
+
export * from "./review";
|
|
16
|
+
export * from "./artifact";
|
|
17
|
+
export * from "./engine";
|
|
18
|
+
export * from "./rig";
|
|
19
|
+
export * from "./remote";
|
|
20
|
+
export * from "./ipc";
|
|
21
|
+
export * from "./terminal";
|
|
22
|
+
export * from "./provider";
|
|
23
|
+
export * from "./providerRuntime";
|
|
24
|
+
export * from "./model";
|
|
25
|
+
export * from "./ws";
|
|
26
|
+
export * from "./keybindings";
|
|
27
|
+
export * from "./server";
|
|
28
|
+
export * from "./serviceFabric";
|
|
29
|
+
export * from "./git";
|
|
30
|
+
export * from "./orchestration";
|
|
31
|
+
export * from "./editor";
|
|
32
|
+
export * from "./project";
|
|
33
|
+
export * from "./task-source";
|
|
34
|
+
export * from "./cli-output";
|
|
35
|
+
export * from "./pi-session";
|
|
36
|
+
export * from "./protocol-version";
|
|
37
|
+
export * from "./help-catalog";
|