@exaudeus/workrail 0.11.0 → 0.13.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 (131) hide show
  1. package/dist/application/services/enhanced-loop-validator.js +3 -3
  2. package/dist/application/services/step-output-decoder.d.ts +6 -0
  3. package/dist/application/services/step-output-decoder.js +49 -0
  4. package/dist/application/services/validation-engine.d.ts +9 -0
  5. package/dist/application/services/validation-engine.js +142 -18
  6. package/dist/application/services/workflow-interpreter.d.ts +1 -1
  7. package/dist/application/services/workflow-interpreter.js +147 -81
  8. package/dist/application/services/workflow-service.d.ts +2 -0
  9. package/dist/application/services/workflow-service.js +3 -3
  10. package/dist/application/use-cases/validate-step-output.d.ts +2 -0
  11. package/dist/config/feature-flags.js +1 -1
  12. package/dist/di/container.js +88 -0
  13. package/dist/di/tokens.d.ts +16 -0
  14. package/dist/di/tokens.js +16 -0
  15. package/dist/domain/execution/state.d.ts +6 -6
  16. package/dist/domain/workflow-id-policy.d.ts +17 -0
  17. package/dist/domain/workflow-id-policy.js +57 -0
  18. package/dist/infrastructure/storage/enhanced-multi-source-workflow-storage.js +33 -6
  19. package/dist/infrastructure/storage/file-workflow-storage.js +3 -1
  20. package/dist/infrastructure/storage/schema-validating-workflow-storage.js +13 -8
  21. package/dist/manifest.json +329 -161
  22. package/dist/mcp/error-mapper.d.ts +3 -8
  23. package/dist/mcp/error-mapper.js +41 -19
  24. package/dist/mcp/handlers/session.js +25 -11
  25. package/dist/mcp/handlers/v2-execution-helpers.d.ts +99 -0
  26. package/dist/mcp/handlers/v2-execution-helpers.js +249 -0
  27. package/dist/mcp/handlers/v2-execution.d.ts +4 -0
  28. package/dist/mcp/handlers/v2-execution.js +1044 -0
  29. package/dist/mcp/handlers/v2-workflow.js +21 -16
  30. package/dist/mcp/handlers/workflow.js +21 -12
  31. package/dist/mcp/index.d.ts +1 -1
  32. package/dist/mcp/index.js +4 -1
  33. package/dist/mcp/output-schemas.d.ts +411 -4
  34. package/dist/mcp/output-schemas.js +57 -1
  35. package/dist/mcp/server.d.ts +1 -1
  36. package/dist/mcp/server.js +96 -65
  37. package/dist/mcp/tool-descriptions.js +32 -15
  38. package/dist/mcp/tools.js +26 -14
  39. package/dist/mcp/types/tool-description-types.d.ts +1 -1
  40. package/dist/mcp/types/tool-description-types.js +7 -5
  41. package/dist/mcp/types.d.ts +40 -3
  42. package/dist/mcp/types.js +32 -3
  43. package/dist/mcp/v2/tool-registry.js +16 -1
  44. package/dist/mcp/v2/tools.d.ts +45 -0
  45. package/dist/mcp/v2/tools.js +21 -1
  46. package/dist/mcp/validation/workflow-next-prevalidate.d.ts +2 -3
  47. package/dist/mcp/validation/workflow-next-prevalidate.js +38 -27
  48. package/dist/v2/durable-core/constants.d.ts +15 -0
  49. package/dist/v2/durable-core/constants.js +18 -0
  50. package/dist/v2/durable-core/domain/ack-advance-append-plan.d.ts +32 -0
  51. package/dist/v2/durable-core/domain/ack-advance-append-plan.js +95 -0
  52. package/dist/v2/durable-core/domain/loop-runtime.d.ts +50 -0
  53. package/dist/v2/durable-core/domain/loop-runtime.js +95 -0
  54. package/dist/v2/durable-core/domain/notes-markdown.d.ts +4 -0
  55. package/dist/v2/durable-core/domain/notes-markdown.js +46 -0
  56. package/dist/v2/durable-core/domain/outputs.d.ts +12 -0
  57. package/dist/v2/durable-core/domain/outputs.js +18 -0
  58. package/dist/v2/durable-core/ids/index.d.ts +2 -0
  59. package/dist/v2/durable-core/ids/index.js +4 -0
  60. package/dist/v2/durable-core/schemas/compiled-workflow/index.d.ts +100 -6
  61. package/dist/v2/durable-core/schemas/compiled-workflow/index.js +18 -3
  62. package/dist/v2/durable-core/schemas/execution-snapshot/execution-snapshot.v1.d.ts +113 -113
  63. package/dist/v2/durable-core/schemas/execution-snapshot/execution-snapshot.v1.js +11 -10
  64. package/dist/v2/durable-core/schemas/export-bundle/index.d.ts +7129 -0
  65. package/dist/v2/durable-core/schemas/export-bundle/index.js +82 -0
  66. package/dist/v2/durable-core/schemas/lib/decision-trace-ref.d.ts +80 -0
  67. package/dist/v2/durable-core/schemas/lib/decision-trace-ref.js +38 -0
  68. package/dist/v2/durable-core/schemas/lib/dedupe-key.d.ts +8 -0
  69. package/dist/v2/durable-core/schemas/lib/dedupe-key.js +28 -0
  70. package/dist/v2/durable-core/schemas/lib/utf8-bounded-string.d.ts +6 -0
  71. package/dist/v2/durable-core/schemas/lib/utf8-bounded-string.js +12 -0
  72. package/dist/v2/durable-core/schemas/session/events.d.ts +238 -62
  73. package/dist/v2/durable-core/schemas/session/events.js +74 -29
  74. package/dist/v2/durable-core/schemas/session/manifest.d.ts +3 -3
  75. package/dist/v2/durable-core/schemas/session/manifest.js +6 -1
  76. package/dist/v2/durable-core/schemas/session/preferences.d.ts +5 -0
  77. package/dist/v2/durable-core/schemas/session/preferences.js +6 -0
  78. package/dist/v2/durable-core/schemas/session/session-health.d.ts +3 -0
  79. package/dist/v2/durable-core/tokens/index.d.ts +2 -1
  80. package/dist/v2/durable-core/tokens/index.js +4 -4
  81. package/dist/v2/durable-core/tokens/payloads.d.ts +4 -4
  82. package/dist/v2/durable-core/tokens/token-codec.d.ts +3 -2
  83. package/dist/v2/durable-core/tokens/token-codec.js +12 -6
  84. package/dist/v2/durable-core/tokens/token-signer.d.ts +3 -2
  85. package/dist/v2/durable-core/tokens/token-signer.js +8 -9
  86. package/dist/v2/infra/local/base64url/index.d.ts +5 -0
  87. package/dist/v2/infra/local/base64url/index.js +48 -0
  88. package/dist/v2/infra/local/fs/index.js +8 -4
  89. package/dist/v2/infra/local/keyring/index.d.ts +5 -1
  90. package/dist/v2/infra/local/keyring/index.js +41 -32
  91. package/dist/v2/infra/local/pinned-workflow-store/index.d.ts +6 -4
  92. package/dist/v2/infra/local/pinned-workflow-store/index.js +50 -62
  93. package/dist/v2/infra/local/random-entropy/index.d.ts +4 -0
  94. package/dist/v2/infra/local/random-entropy/index.js +10 -0
  95. package/dist/v2/infra/local/session-lock/index.d.ts +3 -1
  96. package/dist/v2/infra/local/session-lock/index.js +5 -4
  97. package/dist/v2/infra/local/session-store/index.d.ts +0 -1
  98. package/dist/v2/infra/local/session-store/index.js +372 -282
  99. package/dist/v2/infra/local/snapshot-store/index.js +20 -25
  100. package/dist/v2/infra/local/time-clock/index.d.ts +5 -0
  101. package/dist/v2/infra/local/time-clock/index.js +12 -0
  102. package/dist/v2/infra/local/utf8/index.d.ts +5 -0
  103. package/dist/v2/infra/local/utf8/index.js +12 -0
  104. package/dist/v2/ports/base64url.port.d.ts +12 -0
  105. package/dist/v2/ports/base64url.port.js +2 -0
  106. package/dist/v2/ports/pinned-workflow-store.port.d.ts +3 -3
  107. package/dist/v2/ports/random-entropy.port.d.ts +3 -0
  108. package/dist/v2/ports/random-entropy.port.js +2 -0
  109. package/dist/v2/ports/session-event-log-store.port.d.ts +1 -1
  110. package/dist/v2/ports/session-lock.port.d.ts +1 -1
  111. package/dist/v2/ports/time-clock.port.d.ts +4 -0
  112. package/dist/v2/ports/time-clock.port.js +2 -0
  113. package/dist/v2/ports/utf8.port.d.ts +3 -0
  114. package/dist/v2/ports/utf8.port.js +2 -0
  115. package/dist/v2/projections/node-outputs.js +28 -11
  116. package/dist/v2/projections/preferences.d.ts +1 -2
  117. package/dist/v2/projections/preferences.js +11 -4
  118. package/dist/v2/projections/run-dag.js +40 -28
  119. package/dist/v2/projections/run-status-signals.d.ts +1 -2
  120. package/dist/v2/read-only/v1-to-v2-shim.d.ts +6 -1
  121. package/dist/v2/read-only/v1-to-v2-shim.js +16 -4
  122. package/dist/v2/usecases/execution-session-gate.d.ts +3 -2
  123. package/dist/v2/usecases/execution-session-gate.js +81 -85
  124. package/package.json +4 -1
  125. package/spec/workflow.schema.json +2 -2
  126. package/workflows/coding-task-workflow-agentic.json +498 -78
  127. package/workflows/design-thinking-workflow-autonomous.agentic.json +1 -1
  128. package/workflows/design-thinking-workflow.json +1 -1
  129. package/workflows/relocation-workflow-us.json +430 -0
  130. package/dist/v2/durable-core/tokens/base64url.d.ts +0 -7
  131. package/dist/v2/durable-core/tokens/base64url.js +0 -16
@@ -14,16 +14,24 @@
14
14
  "bytes": 774
15
15
  },
16
16
  "application/services/enhanced-loop-validator.js": {
17
- "sha256": "a6283684f00825ce44ac3193ce4dc92c6548358b06559cba2f0f0e2feab21b27",
18
- "bytes": 7959
17
+ "sha256": "0af041281661c46cee1c63eebe36ee20d12b9fefc1f95e6baed9d959ae012b6a",
18
+ "bytes": 7980
19
+ },
20
+ "application/services/step-output-decoder.d.ts": {
21
+ "sha256": "fc6b8b60976844b7b30c874c3679f6bb6fe1ca5303e8ee411376e13e982d48c3",
22
+ "bytes": 300
23
+ },
24
+ "application/services/step-output-decoder.js": {
25
+ "sha256": "f748eb95a071ab3518631bdb6189f6d18bad174869ba82df82b102dd71f7d2a3",
26
+ "bytes": 1749
19
27
  },
20
28
  "application/services/validation-engine.d.ts": {
21
- "sha256": "5f7245839bd8d0483aca8af745f8e63bd38a083835e16cd245ed8b5a250a749d",
22
- "bytes": 1136
29
+ "sha256": "d7c47e2e50863903e84bcdc82643789eb58fc2a2e91aa84a6d0dcf97d8d01124",
30
+ "bytes": 1585
23
31
  },
24
32
  "application/services/validation-engine.js": {
25
- "sha256": "20149f659711f7779acbb65534da4e1457cea64bf810ab9238ad844e22234d93",
26
- "bytes": 22815
33
+ "sha256": "6b8456811c57dcf107c283331a2b289408486fc4cb8d52142b8803002ad86b4b",
34
+ "bytes": 29264
27
35
  },
28
36
  "application/services/workflow-compiler.d.ts": {
29
37
  "sha256": "032249cc254cefbefc0523f0f28c2b6f70c4f9e1af2176f37bc355cc736de4f1",
@@ -34,20 +42,20 @@
34
42
  "bytes": 3694
35
43
  },
36
44
  "application/services/workflow-interpreter.d.ts": {
37
- "sha256": "018215282b18ee43ee8d325666a1a8dfd2d651f20d5a7b477bda2e55b3365c33",
38
- "bytes": 1277
45
+ "sha256": "e448cfb87971a44ca05e2b9d3072772565ba29d5328066bc5cfbb50dc27d0719",
46
+ "bytes": 1288
39
47
  },
40
48
  "application/services/workflow-interpreter.js": {
41
- "sha256": "06ebdf0bba46a1288429d54c07751f8f174f480725b5dfae85e62555780241d2",
42
- "bytes": 13720
49
+ "sha256": "9b2f79c07da940790732d5e6c2bcc09932c105f1f8a9c7f6263c0ed804b8bd6a",
50
+ "bytes": 17323
43
51
  },
44
52
  "application/services/workflow-service.d.ts": {
45
- "sha256": "47166b5d787a8abce82034f35983e4d9ed725f64397c9470413111f9db0be437",
46
- "bytes": 2369
53
+ "sha256": "b92da17c6d91c90758ec42b4ee3bc448e5d5b1dfe7351f2fe0f5e1d10a715ec6",
54
+ "bytes": 2445
47
55
  },
48
56
  "application/services/workflow-service.js": {
49
- "sha256": "d83efd4ee3b1b3ab85a1a42f34584a4e18301903cc9aa3b3d5f9be88c3cb884f",
50
- "bytes": 5782
57
+ "sha256": "98a6aff98b658761aadeb48872ed569ad1a114fcfd0fa40d0295bb48a744d3fa",
58
+ "bytes": 5845
51
59
  },
52
60
  "application/use-cases/get-next-step.d.ts": {
53
61
  "sha256": "7c0badbe104e5e5eae438ec05f6585b7b5b694a1028319cd9180a90039553984",
@@ -74,8 +82,8 @@
74
82
  "bytes": 374
75
83
  },
76
84
  "application/use-cases/validate-step-output.d.ts": {
77
- "sha256": "f612bf1f86647448f53236137fca1e81dabd3e98f2ad43e5b4e74b12753288d1",
78
- "bytes": 520
85
+ "sha256": "d1505a7f507da6bbf59515c734dace381ac1a96d98f4495e469f9e3ad9c75941",
86
+ "bytes": 588
79
87
  },
80
88
  "application/use-cases/validate-step-output.js": {
81
89
  "sha256": "7531dd077973441a1491fd4867cec47d529fbea835b59af13951c994d91e758d",
@@ -230,7 +238,7 @@
230
238
  "bytes": 1512
231
239
  },
232
240
  "config/feature-flags.js": {
233
- "sha256": "b0567cb3c14351b319c40a6d9625a10d3da47c98dab40ac4160e827470707b30",
241
+ "sha256": "2881b750bbaeb9af57ae2acfa476ed94f7da2a95781478b9713d978f30700356",
234
242
  "bytes": 6920
235
243
  },
236
244
  "core/error-handler.d.ts": {
@@ -246,16 +254,16 @@
246
254
  "bytes": 565
247
255
  },
248
256
  "di/container.js": {
249
- "sha256": "437317c12e0d0f9bca14fa53033c2ff57919519c18020ffb4194ec52691df78d",
250
- "bytes": 12763
257
+ "sha256": "ab2e782ae89f52655598140677903c37257ee14d15dab77fcaa2ca43afb9a260",
258
+ "bytes": 18492
251
259
  },
252
260
  "di/tokens.d.ts": {
253
- "sha256": "85ea4f03949b62bb548788374a58242dd7b6317a29ac53b2b5d7b0972c3fadfd",
254
- "bytes": 1297
261
+ "sha256": "2be51a547ab9bfdd2026e7e9cfdc79ee693ad5454fa3dd773e72659a49837fde",
262
+ "bytes": 1846
255
263
  },
256
264
  "di/tokens.js": {
257
- "sha256": "f3e93991a387440b0b136e4b26b0c56f1fc77ab169a67bd3f77928a65f9f08f3",
258
- "bytes": 1627
265
+ "sha256": "a8774e7c93f07a829d4770b33f6aef663cc68a055ed88236a085f553bf161297",
266
+ "bytes": 2284
259
267
  },
260
268
  "domain/execution/error.d.ts": {
261
269
  "sha256": "2eac85c42ec399a23724f868641eeadd0d196b4d324ee4caaff82a6b46155bd9",
@@ -290,13 +298,21 @@
290
298
  "bytes": 505
291
299
  },
292
300
  "domain/execution/state.d.ts": {
293
- "sha256": "c86572f527cc34be53de9e155e839f7061d8aee69ee0f2b02415b211657bcd5c",
301
+ "sha256": "a2e7422f004ceb5b049fd6bf6ea3a76f02aee1a8321456f270655e3dcf4a06ab",
294
302
  "bytes": 1469
295
303
  },
296
304
  "domain/execution/state.js": {
297
305
  "sha256": "3b12ab7221f0766903d93457b5957c015f874da503d6c1abd4effd1c8cfb5903",
298
306
  "bytes": 1186
299
307
  },
308
+ "domain/workflow-id-policy.d.ts": {
309
+ "sha256": "e0ce85afe3cc9b8adf090c2f8f7d88cadd5110800d80e83b838ac9687c4fbd78",
310
+ "bytes": 721
311
+ },
312
+ "domain/workflow-id-policy.js": {
313
+ "sha256": "b428afbb24a64555c10086f873a85133c2826350f406ee2b51d970adf18d7cad",
314
+ "bytes": 2332
315
+ },
300
316
  "errors/app-error.d.ts": {
301
317
  "sha256": "9be8c6cdfdc3313242ac6ccc08903dee76ff1cc9914cb10897dc410ffb9edd55",
302
318
  "bytes": 766
@@ -414,16 +430,16 @@
414
430
  "bytes": 2233
415
431
  },
416
432
  "infrastructure/storage/enhanced-multi-source-workflow-storage.js": {
417
- "sha256": "5d90ed6dcb6979bce22041f26e8d660d804950ee25b9c3f59f36a4bef048761e",
418
- "bytes": 16384
433
+ "sha256": "6e40c96134b5bb3d8a9234cfe31c5fe0b7737fd16269c63efb32979fe4838ed4",
434
+ "bytes": 17551
419
435
  },
420
436
  "infrastructure/storage/file-workflow-storage.d.ts": {
421
437
  "sha256": "e0172ffb57ada1ad8f713bed5884578133744c266a26b01bca5bcb7f9faf64ed",
422
438
  "bytes": 1455
423
439
  },
424
440
  "infrastructure/storage/file-workflow-storage.js": {
425
- "sha256": "c2e2797b46d86e56a7311258086d2fdbf610d08b0070a4bfae1c1c4046562e05",
426
- "bytes": 8391
441
+ "sha256": "d21ad7175a5bde233e5342f9b590a5145d36752858914fb6de141ac84d252d38",
442
+ "bytes": 8559
427
443
  },
428
444
  "infrastructure/storage/git-workflow-storage.d.ts": {
429
445
  "sha256": "b2f38e4e309e6d24eba34f202a877d930f798c8dea5c3ffd99e9ab6e2564ac18",
@@ -470,8 +486,8 @@
470
486
  "bytes": 1262
471
487
  },
472
488
  "infrastructure/storage/schema-validating-workflow-storage.js": {
473
- "sha256": "f87e26f0437eb26293004981417217af0501510cf62e92c69e89139a2e71782c",
474
- "bytes": 4929
489
+ "sha256": "43270ea1ac29ef4c46f23a2c6df5f0b9a13889b64b72291d0318e9787276a064",
490
+ "bytes": 5500
475
491
  },
476
492
  "infrastructure/storage/storage.d.ts": {
477
493
  "sha256": "481c5c0ef797baa7f18cff6a468a1de6d1ef34dd4b35f53e318e30b825b31e63",
@@ -490,60 +506,76 @@
490
506
  "bytes": 476
491
507
  },
492
508
  "mcp/error-mapper.d.ts": {
493
- "sha256": "7c74ccf6299b381a3cf89a57bb20cf34b21a821fd24e147cc13132ee81d322b0",
494
- "bytes": 413
509
+ "sha256": "9ed8afa42fd432ab9bdf781c90ec157eb51ef03e2b17afbb74ad54b91e5bae8a",
510
+ "bytes": 267
495
511
  },
496
512
  "mcp/error-mapper.js": {
497
- "sha256": "6fc84cd9ffc6b9a8557efe4d99441cfc0bf5d38ad6353c0caa952578e194f20c",
498
- "bytes": 2774
513
+ "sha256": "1437bf9380090920512565c0d685a268af29d8b7e747eff62904e1090e69c854",
514
+ "bytes": 3735
499
515
  },
500
516
  "mcp/handlers/session.d.ts": {
501
517
  "sha256": "38926e69a0e4935d1dbcdc53848be9fff0e4d8f96827883da3216f217918fa82",
502
518
  "bytes": 1394
503
519
  },
504
520
  "mcp/handlers/session.js": {
505
- "sha256": "b4f26eadf8a2aa404e33d7299926f772aa64b400e7011d365ddd27b8608c614f",
506
- "bytes": 6364
521
+ "sha256": "4955f0b09766426318f5d21ab3bd8967b11666830000504e44ef3b94beb526ee",
522
+ "bytes": 6622
523
+ },
524
+ "mcp/handlers/v2-execution-helpers.d.ts": {
525
+ "sha256": "67f1faa4f650e33dd567c3ae1d8a5077df1141a0496a2f07ac55eaa122c08704",
526
+ "bytes": 4383
527
+ },
528
+ "mcp/handlers/v2-execution-helpers.js": {
529
+ "sha256": "1e512e54f2b90630d47148fed604b8f302fe72cfca19fa91592b9fd2115d517f",
530
+ "bytes": 12773
531
+ },
532
+ "mcp/handlers/v2-execution.d.ts": {
533
+ "sha256": "0d96c77d37702b43645399044ceb3f7a772388be7020c2ed4f99e99b21c5dc73",
534
+ "bytes": 399
535
+ },
536
+ "mcp/handlers/v2-execution.js": {
537
+ "sha256": "58502dd04d88634578de5e32af45fc1671e2decc90b8eb9d8a6819a37b9d1bce",
538
+ "bytes": 52776
507
539
  },
508
540
  "mcp/handlers/v2-workflow.d.ts": {
509
541
  "sha256": "9fbd4d44854e2060c54982b21e72c608970bb2bd107bb15a8388b26c6b492e55",
510
542
  "bytes": 397
511
543
  },
512
544
  "mcp/handlers/v2-workflow.js": {
513
- "sha256": "5613b4d4d4b5128cc60dd9c486ee8764760a64aa693363d1060646388b04e919",
514
- "bytes": 5393
545
+ "sha256": "6287bf25f23119a86ecfeac56582da828747e7eb2ec36851ac17f37e0f8ab1e9",
546
+ "bytes": 5065
515
547
  },
516
548
  "mcp/handlers/workflow.d.ts": {
517
549
  "sha256": "050565039a20af3f7fc8311337ff4547438ecc59433e5744aacce8f203326774",
518
550
  "bytes": 1748
519
551
  },
520
552
  "mcp/handlers/workflow.js": {
521
- "sha256": "47f962d0228eefca3e2b7ac1c2c4d103080e9cd74296f027e0de012a67c335f0",
522
- "bytes": 8364
553
+ "sha256": "99ff7aac9705ef540cc5681515cf2aa9650d886761f7ae69f829ff87ac772756",
554
+ "bytes": 8246
523
555
  },
524
556
  "mcp/index.d.ts": {
525
- "sha256": "ba84a08a8f42927695a562d464c0a8ac5ea38c25717f260a4c0ac192cf627dc8",
526
- "bytes": 1911
557
+ "sha256": "525b4247cf90ba3af66769462bcfaab5dbf38ee8c49d2a9ceec1e4b38e33511b",
558
+ "bytes": 1964
527
559
  },
528
560
  "mcp/index.js": {
529
- "sha256": "264c1acd118d1613e3a14d662d02bdbff3904354d5ed01dc6b92668f111624ae",
530
- "bytes": 7061
561
+ "sha256": "6895e8416b29418900d039a7acb3d486be844d36582d6117f22c0e7d03fa212e",
562
+ "bytes": 7535
531
563
  },
532
564
  "mcp/output-schemas.d.ts": {
533
- "sha256": "85d72c1ccbb6e6e41b39138294ee2c3587345dd9510e0347a2aa5c63c109b065",
534
- "bytes": 9054
565
+ "sha256": "5a79d1dad82e2a2cf57dde65aafc8aa20fee1513784ee6eb1aba9ae2e71d95a3",
566
+ "bytes": 22948
535
567
  },
536
568
  "mcp/output-schemas.js": {
537
- "sha256": "e8165c2304ae91acfee112357d68d34bf10aa534e3ad59e5c8d3d1a4e55bf776",
538
- "bytes": 3902
569
+ "sha256": "efe70158aa94df76b17d0200c193fb867c254a5d62ec12d960aaa6f8d8b9f5bb",
570
+ "bytes": 6367
539
571
  },
540
572
  "mcp/server.d.ts": {
541
- "sha256": "db95f54ed5b34ca483aecf5d9547fa2c776202bfd039b5a45e4a6ed49c3b8e2c",
542
- "bytes": 159
573
+ "sha256": "bec49b8d07e189a53db7100d2f0e1e84ffe03150f04e1b06908ee3282982b4a2",
574
+ "bytes": 168
543
575
  },
544
576
  "mcp/server.js": {
545
- "sha256": "5f79269248619c1007c630b3c738fcb2e8583aa07cd071ae8ad7a7e08e1a2134",
546
- "bytes": 11878
577
+ "sha256": "41c61033d821f9794cada0bb40058fa220fa11175897326ae597df422a1fcd0b",
578
+ "bytes": 13552
547
579
  },
548
580
  "mcp/tool-description-provider.d.ts": {
549
581
  "sha256": "1d46abc3112e11b68e57197e846f5708293ec9b2281fa71a9124ee2aad71e41b",
@@ -558,8 +590,8 @@
558
590
  "bytes": 132
559
591
  },
560
592
  "mcp/tool-descriptions.js": {
561
- "sha256": "ea695dd970d23b1eb4379743766e7a1606e28ed134d8d4d44e4281332fef8942",
562
- "bytes": 6651
593
+ "sha256": "06a6eff077301d66a90b6240fbebae166ddfdcd3aa9177d5cfb48d6e0a31698c",
594
+ "bytes": 7792
563
595
  },
564
596
  "mcp/tool-factory.d.ts": {
565
597
  "sha256": "0fe3c6b863b2d7aef0c3d659ff54f3a9ee8a0a3c2005b6565d2f8ad517bc7211",
@@ -574,40 +606,40 @@
574
606
  "bytes": 5952
575
607
  },
576
608
  "mcp/tools.js": {
577
- "sha256": "12db49888fa743d5983772ebfa8908a134c76d6ae68796a2d5d7a71a8b7b1767",
578
- "bytes": 7366
609
+ "sha256": "34522d0b078477627fe068130d3b0a5d4d8cc9fc90599a583d979080d632f544",
610
+ "bytes": 7688
579
611
  },
580
612
  "mcp/types.d.ts": {
581
- "sha256": "66318a86d260580d0f2e34b21a67e39499886a9856ac98b660e0a5829de059f1",
582
- "bytes": 1226
613
+ "sha256": "4ab4a4af1eeedf9ba9bcdc70476a5adcc24ce05b3d7d715d70979052b1eb7246",
614
+ "bytes": 3473
583
615
  },
584
616
  "mcp/types.js": {
585
- "sha256": "85a9779b9c83cbfe27d2d6c656191506fb4face96a43ff7961c17267f32ac173",
586
- "bytes": 343
617
+ "sha256": "0c12576fd0053115ff096fe26b38f77f1e830b7ec4781aaf94564827c4c9e81a",
618
+ "bytes": 1253
587
619
  },
588
620
  "mcp/types/tool-description-types.d.ts": {
589
- "sha256": "7485acdd94725fb6f5c81ece0668fb537168440b167e62a56b039b30c4fa5f12",
590
- "bytes": 736
621
+ "sha256": "7d0fb489a829f7d21ed0d3fe9cef221ff71b63619054070287bc790bf5142a28",
622
+ "bytes": 782
591
623
  },
592
624
  "mcp/types/tool-description-types.js": {
593
- "sha256": "69594cfa3a1ba5b82674ceb8e79b9b6c6c80e6524c0d94d233c6d318434a815b",
594
- "bytes": 696
625
+ "sha256": "a1c1fdd901bf6a074d9a48cef09e0020c59d9838bfb8754ed2aaf9c23191a533",
626
+ "bytes": 750
595
627
  },
596
628
  "mcp/v2/tool-registry.d.ts": {
597
629
  "sha256": "e97ae56ce8bc994fb33d130e4dfec6fb65d34dc15b6f828fc36010197da6bdbe",
598
630
  "bytes": 479
599
631
  },
600
632
  "mcp/v2/tool-registry.js": {
601
- "sha256": "c58abd201091f5195e54992cc562ff529f4b54588f7ecb02ce2b865a563366a9",
602
- "bytes": 1134
633
+ "sha256": "33bf91363777bbb14d985978e0b056c67a6f7574dd3e8b572603a1b1db457237",
634
+ "bytes": 2001
603
635
  },
604
636
  "mcp/v2/tools.d.ts": {
605
- "sha256": "0fc14830ecb5970206643adf60630e663b4f16ff5c2224ef1c3377ebef2f1178",
606
- "bytes": 895
637
+ "sha256": "0ef14d1e8e375a17ff7f1edc26ded4a636207c6f9f998136d5910f7f86537602",
638
+ "bytes": 2579
607
639
  },
608
640
  "mcp/v2/tools.js": {
609
- "sha256": "f8f7d1d0ec66d249959673e69fcb7a85479e11a15e964df2bb5427a8c55bebcf",
610
- "bytes": 849
641
+ "sha256": "9e934ea8a5f83bffc68d343970292267b207f67d72a5aa824348967e53777820",
642
+ "bytes": 2333
611
643
  },
612
644
  "mcp/validation/bounded-json.d.ts": {
613
645
  "sha256": "82203ac6123d5c6989606c3b5405aaea99ab829c8958835f9ae3ba45b8bc8fd5",
@@ -618,12 +650,12 @@
618
650
  "bytes": 834
619
651
  },
620
652
  "mcp/validation/workflow-next-prevalidate.d.ts": {
621
- "sha256": "804076770d02a7d28301473db4b0833d1abc99f20ed3e67809a3753445f99672",
622
- "bytes": 310
653
+ "sha256": "179058225dfb17f4be02d6105bbacdaa99f1441cfc25062b38d8283f0bf35b5a",
654
+ "bytes": 254
623
655
  },
624
656
  "mcp/validation/workflow-next-prevalidate.js": {
625
- "sha256": "4bcc524de6925d0d6b99ed5606bb4d3d280744b2cd7129b6ee152cb83be6c501",
626
- "bytes": 3153
657
+ "sha256": "537c7fd9068f45d5aee4a90e834a27e8bb1ee7fe2c6df860964c125e2979d86e",
658
+ "bytes": 3670
627
659
  },
628
660
  "mcp/zod-to-json-schema.d.ts": {
629
661
  "sha256": "c80cfa6980a88c823ac47d04706b2223a351de3f4c76ee778f81ad3dda2c766b",
@@ -873,13 +905,53 @@
873
905
  "sha256": "d35a2e67158de033046a15941571257c61f78eb46e75ef112bc5a3587d6b1706",
874
906
  "bytes": 447
875
907
  },
908
+ "v2/durable-core/constants.d.ts": {
909
+ "sha256": "4efb63cb3d6f1464030004cbc7b8d607d2db9be5b98f8f7e9398059a5afe1c91",
910
+ "bytes": 830
911
+ },
912
+ "v2/durable-core/constants.js": {
913
+ "sha256": "3cd2a8376bf7c1dc65a7975da9cf31fb6aebd99b2846e094ec1583e23919bb21",
914
+ "bytes": 1292
915
+ },
916
+ "v2/durable-core/domain/ack-advance-append-plan.d.ts": {
917
+ "sha256": "d74117de64a0484a387fbbe7e129c4e40ab998f799d7664a3667de1c04a23921",
918
+ "bytes": 1185
919
+ },
920
+ "v2/durable-core/domain/ack-advance-append-plan.js": {
921
+ "sha256": "a4377231f5024e47a4b839ef3ea33711b5b876eef9c12a1c432628421cfebd87",
922
+ "bytes": 3448
923
+ },
924
+ "v2/durable-core/domain/loop-runtime.d.ts": {
925
+ "sha256": "ee4f8857d72bf0066bccc351a4e8fd8e4800f3d540e9851bb4978179b8ebfc04",
926
+ "bytes": 2010
927
+ },
928
+ "v2/durable-core/domain/loop-runtime.js": {
929
+ "sha256": "3d251fa3b5022826d27110d13c0614b07ca460cd9d15b99b685cead20dc9e052",
930
+ "bytes": 3903
931
+ },
932
+ "v2/durable-core/domain/notes-markdown.d.ts": {
933
+ "sha256": "e7fa14e65a0d450e096db19e043bfee88e4dcda55e0092656f5270436861643a",
934
+ "bytes": 158
935
+ },
936
+ "v2/durable-core/domain/notes-markdown.js": {
937
+ "sha256": "8d28169f6bd6530437238b39afe33ee6486e2d486e30b3c14c317972f512e260",
938
+ "bytes": 1709
939
+ },
940
+ "v2/durable-core/domain/outputs.d.ts": {
941
+ "sha256": "a81de0e210de9ca70b2a12998f226c2ba4396e7e5a484295c12bda81546995bf",
942
+ "bytes": 434
943
+ },
944
+ "v2/durable-core/domain/outputs.js": {
945
+ "sha256": "ae16a0df03c3dec30e9ffca0066b6148568966f6660a3c660f82853e077a0cbd",
946
+ "bytes": 817
947
+ },
876
948
  "v2/durable-core/ids/index.d.ts": {
877
- "sha256": "47f0922ce721516b60c38cc827e3dbeea83074093c62e62cbbfa7e4ce0ea959c",
878
- "bytes": 1678
949
+ "sha256": "5525efc423ad30635996907f7560f53559e49e33a64411a684370ebd1ae56410",
950
+ "bytes": 1792
879
951
  },
880
952
  "v2/durable-core/ids/index.js": {
881
- "sha256": "8b348436b2ae504f6e57cc4332746fb2c8d639520071b373bdd0e7da409a59bb",
882
- "bytes": 1224
953
+ "sha256": "a6499471fb67d7a43923c898ef79193390f18912090f27886b52678d13805f11",
954
+ "bytes": 1306
883
955
  },
884
956
  "v2/durable-core/ids/with-healthy-session-lock.d.ts": {
885
957
  "sha256": "dc1812850b9ce69c0135d575b0994ac4fa7b874bf9db7a1838b6a3390ef31ae2",
@@ -898,20 +970,20 @@
898
970
  "bytes": 428
899
971
  },
900
972
  "v2/durable-core/schemas/compiled-workflow/index.d.ts": {
901
- "sha256": "caab753a39b7abc1e3c52bfd2fca93402a8a1b11c2ef13aaf5c2c0a86f7ba135",
902
- "bytes": 1171
973
+ "sha256": "5146bd86e5785117e260276775a3783871c141425a03f4643bf421a00e5b9bf2",
974
+ "bytes": 3645
903
975
  },
904
976
  "v2/durable-core/schemas/compiled-workflow/index.js": {
905
- "sha256": "49e3b2f36fe18e75f864b402db0d58f8e1d66e6116fe381af9fc0c76e6f00f8f",
906
- "bytes": 621
977
+ "sha256": "a1b6befdee89a853f22c7077e3470b17bcee8ce0dabd6d5f2dafe270b3820977",
978
+ "bytes": 1350
907
979
  },
908
980
  "v2/durable-core/schemas/execution-snapshot/execution-snapshot.v1.d.ts": {
909
- "sha256": "96ad2f741274a55ecfeb3cd4c385938db6d4f4f25fee7ea460158b09e4422988",
910
- "bytes": 30004
981
+ "sha256": "f92562d62842ec6da20f78e005df855b0567733a13d50e6435905421461e7b06",
982
+ "bytes": 30043
911
983
  },
912
984
  "v2/durable-core/schemas/execution-snapshot/execution-snapshot.v1.js": {
913
- "sha256": "d93a81d14644459fd79b734077c101747b6d8a01f5989bc0ee90b82e87ab4322",
914
- "bytes": 5081
985
+ "sha256": "9d7ec8c295afe6690ef52140eae582a2a4163fa00b5f9f5bab8c1d0b33a3aaee",
986
+ "bytes": 5185
915
987
  },
916
988
  "v2/durable-core/schemas/execution-snapshot/index.d.ts": {
917
989
  "sha256": "3c312cda4aba0da547ca19041ba85a93ec596f8ac572574eaba0a7164746ec25",
@@ -929,13 +1001,45 @@
929
1001
  "sha256": "600b896c6a23e064478f600ae82923317ce343d9a79e7fe919a8fe8d3354bd4e",
930
1002
  "bytes": 2983
931
1003
  },
1004
+ "v2/durable-core/schemas/export-bundle/index.d.ts": {
1005
+ "sha256": "bbfe3948fc95992051ad3eaec4e9adbaa3c3f20cd8d8307edee37aab07123ca7",
1006
+ "bytes": 268219
1007
+ },
1008
+ "v2/durable-core/schemas/export-bundle/index.js": {
1009
+ "sha256": "387b1444f81eb951ab3b66874b1e7407d41345ee60ef4e6dd43f8b4d84d97343",
1010
+ "bytes": 4887
1011
+ },
1012
+ "v2/durable-core/schemas/lib/decision-trace-ref.d.ts": {
1013
+ "sha256": "7ca487c95669595193a5cadad35c15cb739712060d34c225e347ca8a791b4c42",
1014
+ "bytes": 2248
1015
+ },
1016
+ "v2/durable-core/schemas/lib/decision-trace-ref.js": {
1017
+ "sha256": "f32533369a34e14237e70a2bcbba44a1bf98cbc34497369c26bd188c35be41e7",
1018
+ "bytes": 1632
1019
+ },
1020
+ "v2/durable-core/schemas/lib/dedupe-key.d.ts": {
1021
+ "sha256": "a27700de1c2f9ef2557f199229c3b586f0186b00ac5408d7595bc0d12e2242cb",
1022
+ "bytes": 467
1023
+ },
1024
+ "v2/durable-core/schemas/lib/dedupe-key.js": {
1025
+ "sha256": "d92a9e9d82ca19f4f08ca514c23e095759b9818aab84a5e3e5badbe36c51a8a4",
1026
+ "bytes": 1172
1027
+ },
1028
+ "v2/durable-core/schemas/lib/utf8-bounded-string.d.ts": {
1029
+ "sha256": "215179bd1d67f3c64adf263f0ec31078f5b1462048587f6de9e4e16c8f0a3088",
1030
+ "bytes": 214
1031
+ },
1032
+ "v2/durable-core/schemas/lib/utf8-bounded-string.js": {
1033
+ "sha256": "090d11ce7470d2b4a5298bb1f0c357e7aa8d8d98635e3d55314e7043e4531a4f",
1034
+ "bytes": 521
1035
+ },
932
1036
  "v2/durable-core/schemas/session/events.d.ts": {
933
- "sha256": "8de8d8904b67ca93d985c1e215f216d929612fb14357888f88ff270f6ac3c40f",
934
- "bytes": 61834
1037
+ "sha256": "0df1c3728cece2a3100b59a8b8eda790e47561d6196988b566a5d14a32cd782e",
1038
+ "bytes": 67557
935
1039
  },
936
1040
  "v2/durable-core/schemas/session/events.js": {
937
- "sha256": "411228cda7ef149d25413c668e858d5691810cff8e6ce64913bf8e0cb1cfda2a",
938
- "bytes": 15007
1041
+ "sha256": "68e29429a82e6bb3154724526f4698f1359351534e980e22750e0e9be80cf52d",
1042
+ "bytes": 17432
939
1043
  },
940
1044
  "v2/durable-core/schemas/session/index.d.ts": {
941
1045
  "sha256": "f4f500d33d212760f480d91fafd4474f7b12f9239a6c5e9c2d80d0fe96207b65",
@@ -946,39 +1050,39 @@
946
1050
  "bytes": 715
947
1051
  },
948
1052
  "v2/durable-core/schemas/session/manifest.d.ts": {
949
- "sha256": "183a7260b72f87388e96f212f0fa2669450c3c6ed943608ebd0d0014a1d2ddaa",
950
- "bytes": 1534
1053
+ "sha256": "3eff60c200f81c87bb0e0946ba23000bc30fdd98678d316e5a401c189612408b",
1054
+ "bytes": 1594
951
1055
  },
952
1056
  "v2/durable-core/schemas/session/manifest.js": {
953
- "sha256": "735b3f6cbc7e266e882812b359754268c5eca7102f698fbe0fcb49f57f599cd3",
954
- "bytes": 1237
1057
+ "sha256": "a825fae7d8bcc8b5cbdacebb2e089a4b47cb625046a60b573990a0a08df27bad",
1058
+ "bytes": 1526
1059
+ },
1060
+ "v2/durable-core/schemas/session/preferences.d.ts": {
1061
+ "sha256": "763697078bda9fa8fb7a499978a94d85d1852f0fd8fc07af295ac895d25dba66",
1062
+ "bytes": 401
1063
+ },
1064
+ "v2/durable-core/schemas/session/preferences.js": {
1065
+ "sha256": "cef852b28bb2c50084c246484cf4b6b32e70e143c04b6eeb2c9e0b18105489c9",
1066
+ "bytes": 366
955
1067
  },
956
1068
  "v2/durable-core/schemas/session/session-health.d.ts": {
957
- "sha256": "33e927808b1b6a1f31de141289493b1359ec12943873a8fc970e0fe33775f263",
958
- "bytes": 665
1069
+ "sha256": "cdaad986ff8d8a1054ae47651024004aad945e664d0cad5b062c9c1aee27f0a1",
1070
+ "bytes": 748
959
1071
  },
960
1072
  "v2/durable-core/schemas/session/session-health.js": {
961
1073
  "sha256": "d43aa81f5bc89faa359e0f97c814ba25155591ff078fbb9bfd40f8c7c9683230",
962
1074
  "bytes": 77
963
1075
  },
964
- "v2/durable-core/tokens/base64url.d.ts": {
965
- "sha256": "0db76718338dbc78d647c0bb213059f6a127894a6bcc17e5acb837a99f6da323",
966
- "bytes": 306
967
- },
968
- "v2/durable-core/tokens/base64url.js": {
969
- "sha256": "fbcc82c734d32b150ecb1420ce6bbc684741437930ad98b10992130d000b6bab",
970
- "bytes": 558
971
- },
972
1076
  "v2/durable-core/tokens/index.d.ts": {
973
- "sha256": "4409ca6cf0245ad850f61652884d9121c8442797e0602a41d2e32a63d04d9d35",
974
- "bytes": 686
1077
+ "sha256": "79de598d9a56f2cc22671c0644132b24cf4c746c94cbea2f47f4c9044af77b2a",
1078
+ "bytes": 738
975
1079
  },
976
1080
  "v2/durable-core/tokens/index.js": {
977
- "sha256": "7b4fe787fea9f215b42902ae08a5c94daa4941fb5283de9524feb0b4ef603bf7",
978
- "bytes": 2594
1081
+ "sha256": "ed96d033e5b4f3bcda9439a384734bc5b7e8e3be7e8593861b2af6469af01404",
1082
+ "bytes": 2556
979
1083
  },
980
1084
  "v2/durable-core/tokens/payloads.d.ts": {
981
- "sha256": "2889ce061b4734cc3ccdc1df315bc58170a421de1661a5bb7cf08710a7e43d53",
1085
+ "sha256": "568d7ba9f83ea7584b1c815f79b920f8e548e71a244a6dc5709dc981fc5286d4",
982
1086
  "bytes": 6756
983
1087
  },
984
1088
  "v2/durable-core/tokens/payloads.js": {
@@ -986,20 +1090,28 @@
986
1090
  "bytes": 2343
987
1091
  },
988
1092
  "v2/durable-core/tokens/token-codec.d.ts": {
989
- "sha256": "f03dfaa7ce652ab0fb175f765e3d286c2713db6b40e53716a2b5aff74937705c",
990
- "bytes": 1223
1093
+ "sha256": "44bd65c6102b3aa5fcd82d2854f5466263a20c0b9cbd31aa25f169dfeed8e045",
1094
+ "bytes": 1349
991
1095
  },
992
1096
  "v2/durable-core/tokens/token-codec.js": {
993
- "sha256": "557c1ee23e4cdb050344d9c4944aec2a1b9e6a90018200290c4d6ea6185bd520",
994
- "bytes": 3127
1097
+ "sha256": "e82f1a0b45f60c60dfb5b15ce82c911f1e963c503298d9bba37f261bfaeac081",
1098
+ "bytes": 3304
995
1099
  },
996
1100
  "v2/durable-core/tokens/token-signer.d.ts": {
997
- "sha256": "2ce41a829043871a35f4d845eb8c56d038b5b877740cd3511457dbbf96ef2324",
998
- "bytes": 1001
1101
+ "sha256": "379da0438772c2274af0494229a6f642382752b9003d56b8a884bddc27504296",
1102
+ "bytes": 1127
999
1103
  },
1000
1104
  "v2/durable-core/tokens/token-signer.js": {
1001
- "sha256": "554c8fb8bf46a02edc019435c37a2d84ef174b29e850fe4b697f5c56e67004eb",
1002
- "bytes": 3002
1105
+ "sha256": "2460e8bc9586db09aab65604dc815bb897286c06d5c1c7aac2a239963b2cbdc7",
1106
+ "bytes": 2967
1107
+ },
1108
+ "v2/infra/local/base64url/index.d.ts": {
1109
+ "sha256": "42cb6393959b47242cb6363f3336952391b803847b1e022c8ff16e103da4088b",
1110
+ "bytes": 273
1111
+ },
1112
+ "v2/infra/local/base64url/index.js": {
1113
+ "sha256": "46df066c71c1d9a973f6304c79809d38d52c9fe66301bc86267f96e6a23d9770",
1114
+ "bytes": 1803
1003
1115
  },
1004
1116
  "v2/infra/local/crypto/index.d.ts": {
1005
1117
  "sha256": "d2f6cc8e812bd4fb5c83e59f46c4b5588baa1bf33c029239d8162f8669a64370",
@@ -1022,8 +1134,8 @@
1022
1134
  "bytes": 1252
1023
1135
  },
1024
1136
  "v2/infra/local/fs/index.js": {
1025
- "sha256": "409030bf18b98fe09f0801a22826978b2cb6022f71bc7e83fad00cfc8aebb3fb",
1026
- "bytes": 6725
1137
+ "sha256": "abe6971989a76bff11acb03f8fccae1a87712ded9cd95b04fcd80042123b1ac7",
1138
+ "bytes": 6875
1027
1139
  },
1028
1140
  "v2/infra/local/hmac-sha256/index.d.ts": {
1029
1141
  "sha256": "dda3865510dfaf2f13947410d998da6ffecc9a2e728b3574f81e69d5db859815",
@@ -1034,36 +1146,44 @@
1034
1146
  "bytes": 578
1035
1147
  },
1036
1148
  "v2/infra/local/keyring/index.d.ts": {
1037
- "sha256": "e14c988729fc8bdf194d2e6520dc87f366f949f9fc0562b088b458482e799194",
1038
- "bytes": 657
1149
+ "sha256": "e8698dab64327f994bf78e1a6c30131062d8418847417610e6b071ce7e873763",
1150
+ "bytes": 932
1039
1151
  },
1040
1152
  "v2/infra/local/keyring/index.js": {
1041
- "sha256": "875ae8f90d0b13e0cea19e537ef0279b1b80d2ad155b5b602226a7271a0b3b7d",
1042
- "bytes": 3839
1153
+ "sha256": "cb8a95f098350689004cda4cd638b1ea640fd283705e505ad99c4a20726da321",
1154
+ "bytes": 4548
1043
1155
  },
1044
1156
  "v2/infra/local/pinned-workflow-store/index.d.ts": {
1045
- "sha256": "d2342ebedf9ce061615a85c1fd4c64de117ea943232da08beef7916c8ecd0a96",
1046
- "bytes": 809
1157
+ "sha256": "5f7d831fceb44ded4ae7e153bed882aa63816c01c54732d30e6a89dae8bfd8d0",
1158
+ "bytes": 917
1047
1159
  },
1048
1160
  "v2/infra/local/pinned-workflow-store/index.js": {
1049
- "sha256": "46f2876d4d925b6956cefda1d6c5d3a5364b6cff280ffccd687fd1d0da61cc69",
1050
- "bytes": 3733
1161
+ "sha256": "b185eb11850bbb14018683803fdfb716234c27205a3f2a4d6acf962c13dc0710",
1162
+ "bytes": 3198
1163
+ },
1164
+ "v2/infra/local/random-entropy/index.d.ts": {
1165
+ "sha256": "d911f965506c87a008cc20aa3dfe17dc00dc33ffdb5942465f10416091c81a5e",
1166
+ "bytes": 204
1167
+ },
1168
+ "v2/infra/local/random-entropy/index.js": {
1169
+ "sha256": "dfacf7ed6ead595872b8523f113f7228f9ca3b7ab1a84700e874db61c6fad066",
1170
+ "bytes": 345
1051
1171
  },
1052
1172
  "v2/infra/local/session-lock/index.d.ts": {
1053
- "sha256": "e6c6d39259037c4aaaf4465f68d27e24512252b5547b726ec1e86857e1eac046",
1054
- "bytes": 727
1173
+ "sha256": "3b381b372da6039df678dfddf377600547e1067cf921cc1b4cdf578e5df0a1bb",
1174
+ "bytes": 853
1055
1175
  },
1056
1176
  "v2/infra/local/session-lock/index.js": {
1057
- "sha256": "27cc61babea8e5dc0b6077c3298149bb02c0db6f7ed6e3e76fdb6248162c400d",
1058
- "bytes": 1640
1177
+ "sha256": "3ad09372cb30d959016cc2a69e91de7c7f3a251c22048a917d9862fd0d8a77f9",
1178
+ "bytes": 1700
1059
1179
  },
1060
1180
  "v2/infra/local/session-store/index.d.ts": {
1061
- "sha256": "bd6a47ede5fc58a72b18031d57bd7357d4657f11d06aee2c2d08391be51b213d",
1062
- "bytes": 1467
1181
+ "sha256": "9f2a4bd619722ff114100a51468aab6a3e4123f9454ce31cfce32aea63e57a2c",
1182
+ "bytes": 1447
1063
1183
  },
1064
1184
  "v2/infra/local/session-store/index.js": {
1065
- "sha256": "3b844370c4cff55b53dd18401eec7e14fb5e5c34d7b851650eb6dfb81fc97b77",
1066
- "bytes": 21855
1185
+ "sha256": "8820cf4cb1bc6df3d0ee02f9a7571f8478acdbb6c750fff43a2d5177bd621dea",
1186
+ "bytes": 28140
1067
1187
  },
1068
1188
  "v2/infra/local/sha256/index.d.ts": {
1069
1189
  "sha256": "8a727b7e54a38275ca6f9f1b8730f97cfc0a212df035df1bdc58e716e6824230",
@@ -1078,8 +1198,32 @@
1078
1198
  "bytes": 1017
1079
1199
  },
1080
1200
  "v2/infra/local/snapshot-store/index.js": {
1081
- "sha256": "2b8d3db16aec20de6cc697ed3ae1fc2143f9b6d7d1bda8c7d30c8e0feb7fdb21",
1082
- "bytes": 3372
1201
+ "sha256": "7d0dfadd804e83701289d5f00cf429851dae3b9bd1decb65c11341d6a138e911",
1202
+ "bytes": 3159
1203
+ },
1204
+ "v2/infra/local/time-clock/index.d.ts": {
1205
+ "sha256": "8f2f6107bbe7bf11a4edddded920cffccec51c4676f29ede7db9059763617d08",
1206
+ "bytes": 185
1207
+ },
1208
+ "v2/infra/local/time-clock/index.js": {
1209
+ "sha256": "459fd31e84f6003ff11872000493850d5e2e450f711526c72b344b310b413b38",
1210
+ "bytes": 276
1211
+ },
1212
+ "v2/infra/local/utf8/index.d.ts": {
1213
+ "sha256": "33bfc597ed162a3711e3130d48f9dabf03580861f70fc57b1da4ccb2ec723d46",
1214
+ "bytes": 181
1215
+ },
1216
+ "v2/infra/local/utf8/index.js": {
1217
+ "sha256": "5be2cc1d4f143113fb660ff5e21bc9d5898cf0195c95c24daed6cfdaad401956",
1218
+ "bytes": 304
1219
+ },
1220
+ "v2/ports/base64url.port.d.ts": {
1221
+ "sha256": "8d6e787c8f6fd4152a06d54f4acaa84120671249d70a9d06c7389d8c2adc4bf8",
1222
+ "bytes": 398
1223
+ },
1224
+ "v2/ports/base64url.port.js": {
1225
+ "sha256": "d43aa81f5bc89faa359e0f97c814ba25155591ff078fbb9bfd40f8c7c9683230",
1226
+ "bytes": 77
1083
1227
  },
1084
1228
  "v2/ports/data-dir.port.d.ts": {
1085
1229
  "sha256": "4f958bb4b89a87ede17942800903db3c8c55faffea514472fa916aad578050c9",
@@ -1114,24 +1258,32 @@
1114
1258
  "bytes": 77
1115
1259
  },
1116
1260
  "v2/ports/pinned-workflow-store.port.d.ts": {
1117
- "sha256": "1803a47bad9777e37f1fef0fa51e67c0d0c39e0e2b5871f16c03546d3d1096b7",
1118
- "bytes": 614
1261
+ "sha256": "5105f42539f6ad813d468fc5c7f3c17648855731bb1b5f088354afae1856dac1",
1262
+ "bytes": 608
1119
1263
  },
1120
1264
  "v2/ports/pinned-workflow-store.port.js": {
1121
1265
  "sha256": "d43aa81f5bc89faa359e0f97c814ba25155591ff078fbb9bfd40f8c7c9683230",
1122
1266
  "bytes": 77
1123
1267
  },
1268
+ "v2/ports/random-entropy.port.d.ts": {
1269
+ "sha256": "1982a72a4692e00d7affab48881b3829cab99ecabd7c67905da27b3523f4e651",
1270
+ "bytes": 87
1271
+ },
1272
+ "v2/ports/random-entropy.port.js": {
1273
+ "sha256": "d43aa81f5bc89faa359e0f97c814ba25155591ff078fbb9bfd40f8c7c9683230",
1274
+ "bytes": 77
1275
+ },
1124
1276
  "v2/ports/session-event-log-store.port.d.ts": {
1125
- "sha256": "ffd5706ab752e9264c394b4960ea821fc96838b4111a38c9fb223972f568f45a",
1126
- "bytes": 1991
1277
+ "sha256": "80743c9f579d6aad94c47eaae80617c7ab82d192148e6734dcea70ac902d1b86",
1278
+ "bytes": 2000
1127
1279
  },
1128
1280
  "v2/ports/session-event-log-store.port.js": {
1129
1281
  "sha256": "d43aa81f5bc89faa359e0f97c814ba25155591ff078fbb9bfd40f8c7c9683230",
1130
1282
  "bytes": 77
1131
1283
  },
1132
1284
  "v2/ports/session-lock.port.d.ts": {
1133
- "sha256": "fe33f712f99168a15fbce20f770b9440f81fa8412d279867c3f90481735cb534",
1134
- "bytes": 783
1285
+ "sha256": "5554f057bd087a8e00fd9b4a14004b6c5a1bee2d596f99ff8c3dce8e94de9f01",
1286
+ "bytes": 792
1135
1287
  },
1136
1288
  "v2/ports/session-lock.port.js": {
1137
1289
  "sha256": "d43aa81f5bc89faa359e0f97c814ba25155591ff078fbb9bfd40f8c7c9683230",
@@ -1153,6 +1305,22 @@
1153
1305
  "sha256": "d43aa81f5bc89faa359e0f97c814ba25155591ff078fbb9bfd40f8c7c9683230",
1154
1306
  "bytes": 77
1155
1307
  },
1308
+ "v2/ports/time-clock.port.d.ts": {
1309
+ "sha256": "d233b0a0888770f8cfd0f2aca5022ee03467547769a52bfebf370db4181ac41f",
1310
+ "bytes": 80
1311
+ },
1312
+ "v2/ports/time-clock.port.js": {
1313
+ "sha256": "d43aa81f5bc89faa359e0f97c814ba25155591ff078fbb9bfd40f8c7c9683230",
1314
+ "bytes": 77
1315
+ },
1316
+ "v2/ports/utf8.port.d.ts": {
1317
+ "sha256": "4c23ce010468e950c83f9111f54d143cce03a0aab36878a42ae4d06b8c58067d",
1318
+ "bytes": 71
1319
+ },
1320
+ "v2/ports/utf8.port.js": {
1321
+ "sha256": "d43aa81f5bc89faa359e0f97c814ba25155591ff078fbb9bfd40f8c7c9683230",
1322
+ "bytes": 77
1323
+ },
1156
1324
  "v2/projections/advance-outcomes.d.ts": {
1157
1325
  "sha256": "1c1283e2484b81c13428d6b4c80adb1ca079cf9b7c858cee8d178af1e0828e0f",
1158
1326
  "bytes": 903
@@ -1182,28 +1350,28 @@
1182
1350
  "bytes": 1328
1183
1351
  },
1184
1352
  "v2/projections/node-outputs.js": {
1185
- "sha256": "da77c8429c9df4843fb5e6d746f1814f145de08d1c0f683b7f03a5f12306c0a0",
1186
- "bytes": 2911
1353
+ "sha256": "be1ce853c684f1ffa6289192578f5ab6bf45a2a113aa2a80843309331ada54d9",
1354
+ "bytes": 3709
1187
1355
  },
1188
1356
  "v2/projections/preferences.d.ts": {
1189
- "sha256": "0f1de63f2eb44b350d371f2b5db225af298b7d51873ca1efb47065a42307c2a6",
1190
- "bytes": 1201
1357
+ "sha256": "d7447264a3b1184edc1000ff547eeeef882de64a97fe61611ae5f27db5d5f364",
1358
+ "bytes": 1134
1191
1359
  },
1192
1360
  "v2/projections/preferences.js": {
1193
- "sha256": "b8d0b39a246848cbd92d1e201780b95ef5618576bccbec823d9d198df842302f",
1194
- "bytes": 1862
1361
+ "sha256": "2f769d3bf9c4bf45c95c793785c45df8803f52731b4ffaf57bef73df279da397",
1362
+ "bytes": 2212
1195
1363
  },
1196
1364
  "v2/projections/run-dag.d.ts": {
1197
1365
  "sha256": "0594d5038cbe0fe88fd6cc037f32a3e88c04660c167757e870e0a2d51e7159a7",
1198
1366
  "bytes": 1516
1199
1367
  },
1200
1368
  "v2/projections/run-dag.js": {
1201
- "sha256": "24e0a17255852a81709cbe36cc6ab16a05d0b1ecbcd7299306aec9dfa31011fb",
1202
- "bytes": 7369
1369
+ "sha256": "2717047d48b201020d411c0b9fd47c0f8192aff4ffbb441dcfa52043a92b2cc1",
1370
+ "bytes": 8031
1203
1371
  },
1204
1372
  "v2/projections/run-status-signals.d.ts": {
1205
- "sha256": "28404bc37b27e0a5f122b7728513018baf8531e8bb2d955544018faa45af65e8",
1206
- "bytes": 1127
1373
+ "sha256": "7af814efae31db0cb71747c7fe90724d3b196b681a724469455d7e2d51599f50",
1374
+ "bytes": 1060
1207
1375
  },
1208
1376
  "v2/projections/run-status-signals.js": {
1209
1377
  "sha256": "5059d956398d8d524cdea73aeeb870e3ec2e22245a9d1c02262784e7b017ce95",
@@ -1218,20 +1386,20 @@
1218
1386
  "bytes": 550
1219
1387
  },
1220
1388
  "v2/read-only/v1-to-v2-shim.d.ts": {
1221
- "sha256": "bc778fe2034ce1691eb089ed9415fcd162dcddfc4a9f95106200b7822d15a22c",
1222
- "bytes": 272
1389
+ "sha256": "c420c5473b8b804e3e44a9e91a073bce20787abb3fd5c56b47ecab0293dc9171",
1390
+ "bytes": 463
1223
1391
  },
1224
1392
  "v2/read-only/v1-to-v2-shim.js": {
1225
- "sha256": "e88caca3921758d1ed3806c9cb7d4ea35cc3f32689fbead2f2c96101fbbfc6e9",
1226
- "bytes": 1498
1393
+ "sha256": "6ea788b80605db6d2057b3d5e520be48ace8afe6d8f37bf55cef00ba1471a6b7",
1394
+ "bytes": 1935
1227
1395
  },
1228
1396
  "v2/usecases/execution-session-gate.d.ts": {
1229
- "sha256": "30ea073d1728abf3b71ae8c501c3fa6ecd26fde16074719349f875342ac29fdd",
1230
- "bytes": 2038
1397
+ "sha256": "339c4a8e02a77416e725e063a57d39a20788244498ae2c7a31dc48d111af6280",
1398
+ "bytes": 2084
1231
1399
  },
1232
1400
  "v2/usecases/execution-session-gate.js": {
1233
- "sha256": "d7d6430b622e45d31d38bd71c6f7c914d2c3b4f6ebf68a0368d6d372867031e9",
1234
- "bytes": 7606
1401
+ "sha256": "41a25f3046ed474c6c6223655ca1c21d0666aea171c024f51b85071619abfa52",
1402
+ "bytes": 7635
1235
1403
  }
1236
1404
  }
1237
1405
  }