@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.
Files changed (73) hide show
  1. package/dist/index.cjs +5838 -0
  2. package/dist/index.mjs +5797 -0
  3. package/dist/src/artifact.d.ts +13 -0
  4. package/dist/src/artifact.js +3 -0
  5. package/dist/src/baseSchemas.d.ts +63 -0
  6. package/dist/src/baseSchemas.js +6 -0
  7. package/dist/src/cli-output.d.ts +324 -0
  8. package/dist/src/cli-output.js +190 -0
  9. package/dist/src/config.d.ts +316 -0
  10. package/dist/src/config.js +14 -2
  11. package/dist/src/conversation.d.ts +50 -0
  12. package/dist/src/conversation.js +3 -0
  13. package/dist/src/editor.d.ts +25 -0
  14. package/dist/src/editor.js +3 -0
  15. package/dist/src/engine.d.ts +2789 -0
  16. package/dist/src/engine.js +7 -2
  17. package/dist/src/git.d.ts +144 -0
  18. package/dist/src/git.js +3 -0
  19. package/dist/src/graph.d.ts +39 -0
  20. package/dist/src/graph.js +3 -0
  21. package/dist/src/help-catalog.d.ts +30 -0
  22. package/dist/src/help-catalog.js +351 -0
  23. package/dist/src/index.d.ts +37 -0
  24. package/dist/src/index.js +2469 -1219
  25. package/dist/src/ipc.d.ts +248 -0
  26. package/dist/src/keybindings.d.ts +71 -0
  27. package/dist/src/keybindings.js +3 -0
  28. package/dist/src/model.d.ts +77 -0
  29. package/dist/src/orchestration.d.ts +3695 -0
  30. package/dist/src/orchestration.js +3 -0
  31. package/dist/src/pi-session.d.ts +113 -0
  32. package/dist/src/pi-session.js +1 -0
  33. package/dist/src/plugin-hooks.d.ts +51 -0
  34. package/dist/src/plugin-hooks.js +112 -0
  35. package/dist/src/plugin.d.ts +230 -0
  36. package/dist/src/policy.d.ts +16 -0
  37. package/dist/src/policy.js +3 -0
  38. package/dist/src/project.d.ts +71 -0
  39. package/dist/src/project.js +3 -0
  40. package/dist/src/protocol-version.d.ts +21 -0
  41. package/dist/src/protocol-version.js +6 -0
  42. package/dist/src/provider.d.ts +105 -0
  43. package/dist/src/provider.js +3 -0
  44. package/dist/src/providerRuntime.d.ts +3949 -0
  45. package/dist/src/providerRuntime.js +3 -0
  46. package/dist/src/remote.d.ts +326 -0
  47. package/dist/src/remote.js +7 -2
  48. package/dist/src/review.d.ts +18 -0
  49. package/dist/src/review.js +3 -0
  50. package/dist/src/rig.d.ts +783 -0
  51. package/dist/src/rig.js +58 -4
  52. package/dist/src/run-journal.d.ts +763 -0
  53. package/dist/src/run-journal.js +1509 -0
  54. package/dist/src/run-session-journal.d.ts +53 -0
  55. package/dist/src/run-session-journal.js +1582 -0
  56. package/dist/src/run-status.d.ts +12 -0
  57. package/dist/src/run-status.js +38 -0
  58. package/dist/src/runtime.d.ts +103 -0
  59. package/dist/src/runtime.js +7 -2
  60. package/dist/src/server.d.ts +106 -0
  61. package/dist/src/server.js +3 -0
  62. package/dist/src/serviceFabric.d.ts +62 -0
  63. package/dist/src/serviceFabric.js +3 -0
  64. package/dist/src/task-source.d.ts +28 -0
  65. package/dist/src/terminal.d.ts +130 -0
  66. package/dist/src/terminal.js +3 -0
  67. package/dist/src/validation.d.ts +14 -0
  68. package/dist/src/validation.js +3 -0
  69. package/dist/src/workspace.d.ts +204 -0
  70. package/dist/src/workspace.js +3 -0
  71. package/dist/src/ws.d.ts +747 -0
  72. package/dist/src/ws.js +52 -3
  73. 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";