@exaudeus/workrail 0.10.0 → 0.12.0

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 (90) hide show
  1. package/dist/config/feature-flags.js +1 -1
  2. package/dist/di/container.js +72 -0
  3. package/dist/di/tokens.d.ts +13 -0
  4. package/dist/di/tokens.js +13 -0
  5. package/dist/manifest.json +236 -100
  6. package/dist/mcp/error-mapper.d.ts +3 -8
  7. package/dist/mcp/error-mapper.js +41 -19
  8. package/dist/mcp/handlers/session.js +25 -11
  9. package/dist/mcp/handlers/v2-execution-helpers.d.ts +99 -0
  10. package/dist/mcp/handlers/v2-execution-helpers.js +249 -0
  11. package/dist/mcp/handlers/v2-execution.d.ts +4 -0
  12. package/dist/mcp/handlers/v2-execution.js +1061 -0
  13. package/dist/mcp/handlers/v2-workflow.js +7 -7
  14. package/dist/mcp/handlers/workflow.js +21 -12
  15. package/dist/mcp/index.d.ts +1 -1
  16. package/dist/mcp/index.js +4 -1
  17. package/dist/mcp/output-schemas.d.ts +411 -4
  18. package/dist/mcp/output-schemas.js +57 -1
  19. package/dist/mcp/server.d.ts +1 -1
  20. package/dist/mcp/server.js +57 -31
  21. package/dist/mcp/tool-descriptions.js +17 -0
  22. package/dist/mcp/tools.js +12 -0
  23. package/dist/mcp/types/tool-description-types.d.ts +1 -1
  24. package/dist/mcp/types/tool-description-types.js +2 -0
  25. package/dist/mcp/types.d.ts +38 -3
  26. package/dist/mcp/types.js +32 -3
  27. package/dist/mcp/v2/tool-registry.js +16 -1
  28. package/dist/mcp/v2/tools.d.ts +45 -0
  29. package/dist/mcp/v2/tools.js +21 -1
  30. package/dist/mcp/validation/workflow-next-prevalidate.d.ts +2 -3
  31. package/dist/mcp/validation/workflow-next-prevalidate.js +38 -27
  32. package/dist/runtime/brand.d.ts +1 -3
  33. package/dist/v2/durable-core/canonical/hashing.d.ts +3 -1
  34. package/dist/v2/durable-core/canonical/hashing.js +9 -0
  35. package/dist/v2/durable-core/ids/index.d.ts +6 -0
  36. package/dist/v2/durable-core/ids/index.js +12 -0
  37. package/dist/v2/durable-core/projections/snapshot-state.d.ts +3 -0
  38. package/dist/v2/durable-core/projections/snapshot-state.js +14 -0
  39. package/dist/v2/durable-core/schemas/compiled-workflow/index.d.ts +100 -6
  40. package/dist/v2/durable-core/schemas/compiled-workflow/index.js +18 -3
  41. package/dist/v2/durable-core/schemas/execution-snapshot/execution-snapshot.v1.d.ts +1042 -0
  42. package/dist/v2/durable-core/schemas/execution-snapshot/execution-snapshot.v1.js +119 -0
  43. package/dist/v2/durable-core/schemas/execution-snapshot/index.d.ts +4 -0
  44. package/dist/v2/durable-core/schemas/execution-snapshot/index.js +17 -0
  45. package/dist/v2/durable-core/schemas/execution-snapshot/step-instance-key.d.ts +21 -0
  46. package/dist/v2/durable-core/schemas/execution-snapshot/step-instance-key.js +67 -0
  47. package/dist/v2/durable-core/schemas/session/events.d.ts +80 -50
  48. package/dist/v2/durable-core/schemas/session/events.js +27 -9
  49. package/dist/v2/durable-core/schemas/session/manifest.d.ts +2 -2
  50. package/dist/v2/durable-core/tokens/base64url.d.ts +7 -0
  51. package/dist/v2/durable-core/tokens/base64url.js +16 -0
  52. package/dist/v2/durable-core/tokens/index.d.ts +9 -0
  53. package/dist/v2/durable-core/tokens/index.js +23 -0
  54. package/dist/v2/durable-core/tokens/payloads.d.ts +210 -0
  55. package/dist/v2/durable-core/tokens/payloads.js +53 -0
  56. package/dist/v2/durable-core/tokens/token-codec.d.ts +31 -0
  57. package/dist/v2/durable-core/tokens/token-codec.js +64 -0
  58. package/dist/v2/durable-core/tokens/token-signer.d.ts +15 -0
  59. package/dist/v2/durable-core/tokens/token-signer.js +55 -0
  60. package/dist/v2/infra/local/data-dir/index.d.ts +4 -0
  61. package/dist/v2/infra/local/data-dir/index.js +12 -0
  62. package/dist/v2/infra/local/hmac-sha256/index.d.ts +5 -0
  63. package/dist/v2/infra/local/hmac-sha256/index.js +16 -0
  64. package/dist/v2/infra/local/keyring/index.d.ts +14 -0
  65. package/dist/v2/infra/local/keyring/index.js +103 -0
  66. package/dist/v2/infra/local/pinned-workflow-store/index.d.ts +3 -3
  67. package/dist/v2/infra/local/pinned-workflow-store/index.js +1 -1
  68. package/dist/v2/infra/local/session-lock/index.js +1 -1
  69. package/dist/v2/infra/local/session-store/index.d.ts +0 -1
  70. package/dist/v2/infra/local/session-store/index.js +348 -280
  71. package/dist/v2/infra/local/snapshot-store/index.d.ts +15 -0
  72. package/dist/v2/infra/local/snapshot-store/index.js +76 -0
  73. package/dist/v2/ports/data-dir.port.d.ts +4 -0
  74. package/dist/v2/ports/hmac-sha256.port.d.ts +4 -0
  75. package/dist/v2/ports/hmac-sha256.port.js +2 -0
  76. package/dist/v2/ports/keyring.port.d.ts +26 -0
  77. package/dist/v2/ports/keyring.port.js +2 -0
  78. package/dist/v2/ports/pinned-workflow-store.port.d.ts +3 -3
  79. package/dist/v2/ports/session-event-log-store.port.d.ts +1 -1
  80. package/dist/v2/ports/session-lock.port.d.ts +1 -1
  81. package/dist/v2/ports/snapshot-store.port.d.ts +17 -0
  82. package/dist/v2/ports/snapshot-store.port.js +2 -0
  83. package/dist/v2/read-only/v1-to-v2-shim.d.ts +6 -1
  84. package/dist/v2/read-only/v1-to-v2-shim.js +16 -4
  85. package/dist/v2/usecases/execution-session-gate.d.ts +3 -2
  86. package/dist/v2/usecases/execution-session-gate.js +98 -101
  87. package/package.json +2 -1
  88. package/workflows/coding-task-workflow-agentic.json +326 -69
  89. package/workflows/design-thinking-workflow-autonomous.agentic.json +1 -1
  90. package/workflows/design-thinking-workflow.json +1 -1
@@ -19,5 +19,4 @@ export declare class LocalSessionEventLogStoreV2 implements SessionEventLogReado
19
19
  private loadValidatedPrefixImpl;
20
20
  private loadTruthOrEmpty;
21
21
  private appendManifestRecords;
22
- private unwrap;
23
22
  }