@exaudeus/workrail 0.12.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 (98) 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/di/container.js +19 -3
  12. package/dist/di/tokens.d.ts +3 -0
  13. package/dist/di/tokens.js +3 -0
  14. package/dist/domain/execution/state.d.ts +6 -6
  15. package/dist/domain/workflow-id-policy.d.ts +17 -0
  16. package/dist/domain/workflow-id-policy.js +57 -0
  17. package/dist/infrastructure/storage/enhanced-multi-source-workflow-storage.js +33 -6
  18. package/dist/infrastructure/storage/file-workflow-storage.js +3 -1
  19. package/dist/infrastructure/storage/schema-validating-workflow-storage.js +13 -8
  20. package/dist/manifest.json +261 -109
  21. package/dist/mcp/handlers/v2-execution.js +62 -79
  22. package/dist/mcp/handlers/v2-workflow.js +14 -9
  23. package/dist/mcp/server.js +53 -48
  24. package/dist/mcp/tool-descriptions.js +15 -15
  25. package/dist/mcp/tools.js +14 -14
  26. package/dist/mcp/types/tool-description-types.d.ts +1 -1
  27. package/dist/mcp/types/tool-description-types.js +5 -5
  28. package/dist/mcp/types.d.ts +2 -0
  29. package/dist/v2/durable-core/constants.d.ts +15 -0
  30. package/dist/v2/durable-core/constants.js +18 -0
  31. package/dist/v2/durable-core/domain/ack-advance-append-plan.d.ts +32 -0
  32. package/dist/v2/durable-core/domain/ack-advance-append-plan.js +95 -0
  33. package/dist/v2/durable-core/domain/loop-runtime.d.ts +50 -0
  34. package/dist/v2/durable-core/domain/loop-runtime.js +95 -0
  35. package/dist/v2/durable-core/domain/notes-markdown.d.ts +4 -0
  36. package/dist/v2/durable-core/domain/notes-markdown.js +46 -0
  37. package/dist/v2/durable-core/domain/outputs.d.ts +12 -0
  38. package/dist/v2/durable-core/domain/outputs.js +18 -0
  39. package/dist/v2/durable-core/schemas/execution-snapshot/execution-snapshot.v1.d.ts +113 -113
  40. package/dist/v2/durable-core/schemas/execution-snapshot/execution-snapshot.v1.js +11 -10
  41. package/dist/v2/durable-core/schemas/export-bundle/index.d.ts +7129 -0
  42. package/dist/v2/durable-core/schemas/export-bundle/index.js +82 -0
  43. package/dist/v2/durable-core/schemas/lib/decision-trace-ref.d.ts +80 -0
  44. package/dist/v2/durable-core/schemas/lib/decision-trace-ref.js +38 -0
  45. package/dist/v2/durable-core/schemas/lib/dedupe-key.d.ts +8 -0
  46. package/dist/v2/durable-core/schemas/lib/dedupe-key.js +28 -0
  47. package/dist/v2/durable-core/schemas/lib/utf8-bounded-string.d.ts +6 -0
  48. package/dist/v2/durable-core/schemas/lib/utf8-bounded-string.js +12 -0
  49. package/dist/v2/durable-core/schemas/session/events.d.ts +158 -12
  50. package/dist/v2/durable-core/schemas/session/events.js +47 -20
  51. package/dist/v2/durable-core/schemas/session/manifest.d.ts +1 -1
  52. package/dist/v2/durable-core/schemas/session/manifest.js +6 -1
  53. package/dist/v2/durable-core/schemas/session/preferences.d.ts +5 -0
  54. package/dist/v2/durable-core/schemas/session/preferences.js +6 -0
  55. package/dist/v2/durable-core/schemas/session/session-health.d.ts +3 -0
  56. package/dist/v2/durable-core/tokens/index.d.ts +0 -1
  57. package/dist/v2/durable-core/tokens/index.js +1 -4
  58. package/dist/v2/durable-core/tokens/token-codec.d.ts +3 -2
  59. package/dist/v2/durable-core/tokens/token-codec.js +12 -6
  60. package/dist/v2/durable-core/tokens/token-signer.d.ts +3 -2
  61. package/dist/v2/durable-core/tokens/token-signer.js +8 -9
  62. package/dist/v2/infra/local/base64url/index.d.ts +5 -0
  63. package/dist/v2/infra/local/base64url/index.js +48 -0
  64. package/dist/v2/infra/local/fs/index.js +8 -4
  65. package/dist/v2/infra/local/keyring/index.d.ts +5 -1
  66. package/dist/v2/infra/local/keyring/index.js +41 -32
  67. package/dist/v2/infra/local/pinned-workflow-store/index.d.ts +3 -1
  68. package/dist/v2/infra/local/pinned-workflow-store/index.js +50 -62
  69. package/dist/v2/infra/local/random-entropy/index.d.ts +4 -0
  70. package/dist/v2/infra/local/random-entropy/index.js +10 -0
  71. package/dist/v2/infra/local/session-lock/index.d.ts +3 -1
  72. package/dist/v2/infra/local/session-lock/index.js +4 -3
  73. package/dist/v2/infra/local/session-store/index.js +26 -4
  74. package/dist/v2/infra/local/snapshot-store/index.js +20 -25
  75. package/dist/v2/infra/local/time-clock/index.d.ts +5 -0
  76. package/dist/v2/infra/local/time-clock/index.js +12 -0
  77. package/dist/v2/infra/local/utf8/index.d.ts +5 -0
  78. package/dist/v2/infra/local/utf8/index.js +12 -0
  79. package/dist/v2/ports/base64url.port.d.ts +12 -0
  80. package/dist/v2/ports/base64url.port.js +2 -0
  81. package/dist/v2/ports/random-entropy.port.d.ts +3 -0
  82. package/dist/v2/ports/random-entropy.port.js +2 -0
  83. package/dist/v2/ports/time-clock.port.d.ts +4 -0
  84. package/dist/v2/ports/time-clock.port.js +2 -0
  85. package/dist/v2/ports/utf8.port.d.ts +3 -0
  86. package/dist/v2/ports/utf8.port.js +2 -0
  87. package/dist/v2/projections/node-outputs.js +28 -11
  88. package/dist/v2/projections/preferences.d.ts +1 -2
  89. package/dist/v2/projections/preferences.js +11 -4
  90. package/dist/v2/projections/run-dag.js +40 -28
  91. package/dist/v2/projections/run-status-signals.d.ts +1 -2
  92. package/dist/v2/usecases/execution-session-gate.js +33 -34
  93. package/package.json +3 -1
  94. package/spec/workflow.schema.json +2 -2
  95. package/workflows/coding-task-workflow-agentic.json +213 -50
  96. package/workflows/relocation-workflow-us.json +430 -0
  97. package/dist/v2/durable-core/tokens/base64url.d.ts +0 -7
  98. 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",
@@ -246,16 +254,16 @@
246
254
  "bytes": 565
247
255
  },
248
256
  "di/container.js": {
249
- "sha256": "e218c6ffb6df78297b0773c62668488ef40597c503feed1dd596a245a34a63a9",
250
- "bytes": 17292
257
+ "sha256": "ab2e782ae89f52655598140677903c37257ee14d15dab77fcaa2ca43afb9a260",
258
+ "bytes": 18492
251
259
  },
252
260
  "di/tokens.d.ts": {
253
- "sha256": "cca34f8375516d26213b50c156378ad3d535798a04229dbddf9f2c7da3639eca",
254
- "bytes": 1734
261
+ "sha256": "2be51a547ab9bfdd2026e7e9cfdc79ee693ad5454fa3dd773e72659a49837fde",
262
+ "bytes": 1846
255
263
  },
256
264
  "di/tokens.js": {
257
- "sha256": "973c597f2ef8de75678731a120eccaa4b31f75e14744ee1936f23a6b36b3a3b0",
258
- "bytes": 2147
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",
@@ -518,16 +534,16 @@
518
534
  "bytes": 399
519
535
  },
520
536
  "mcp/handlers/v2-execution.js": {
521
- "sha256": "38f4a3090340b93f263032a7affe4639c590db862781083ae70576b0b373c0d5",
522
- "bytes": 53062
537
+ "sha256": "58502dd04d88634578de5e32af45fc1671e2decc90b8eb9d8a6819a37b9d1bce",
538
+ "bytes": 52776
523
539
  },
524
540
  "mcp/handlers/v2-workflow.d.ts": {
525
541
  "sha256": "9fbd4d44854e2060c54982b21e72c608970bb2bd107bb15a8388b26c6b492e55",
526
542
  "bytes": 397
527
543
  },
528
544
  "mcp/handlers/v2-workflow.js": {
529
- "sha256": "2185cf808fa0aeb164f72a3f596b32b4b4e6b87c3b2925efd71251c2c7d1f968",
530
- "bytes": 5291
545
+ "sha256": "6287bf25f23119a86ecfeac56582da828747e7eb2ec36851ac17f37e0f8ab1e9",
546
+ "bytes": 5065
531
547
  },
532
548
  "mcp/handlers/workflow.d.ts": {
533
549
  "sha256": "050565039a20af3f7fc8311337ff4547438ecc59433e5744aacce8f203326774",
@@ -558,8 +574,8 @@
558
574
  "bytes": 168
559
575
  },
560
576
  "mcp/server.js": {
561
- "sha256": "1354714d71946272737a8844c1c3878c72893b48f67ee22bc91eef699f1d12a2",
562
- "bytes": 13315
577
+ "sha256": "41c61033d821f9794cada0bb40058fa220fa11175897326ae597df422a1fcd0b",
578
+ "bytes": 13552
563
579
  },
564
580
  "mcp/tool-description-provider.d.ts": {
565
581
  "sha256": "1d46abc3112e11b68e57197e846f5708293ec9b2281fa71a9124ee2aad71e41b",
@@ -574,8 +590,8 @@
574
590
  "bytes": 132
575
591
  },
576
592
  "mcp/tool-descriptions.js": {
577
- "sha256": "e0612a2bcef42904c1415b92c4c155f55989f81a0e75145c83e411ea4a7a2c6e",
578
- "bytes": 7762
593
+ "sha256": "06a6eff077301d66a90b6240fbebae166ddfdcd3aa9177d5cfb48d6e0a31698c",
594
+ "bytes": 7792
579
595
  },
580
596
  "mcp/tool-factory.d.ts": {
581
597
  "sha256": "0fe3c6b863b2d7aef0c3d659ff54f3a9ee8a0a3c2005b6565d2f8ad517bc7211",
@@ -590,24 +606,24 @@
590
606
  "bytes": 5952
591
607
  },
592
608
  "mcp/tools.js": {
593
- "sha256": "5464baad21a5b5cb25ba46a6b326c0fd4e46ebbd0c125fc41079a1d7530b9ba5",
594
- "bytes": 7702
609
+ "sha256": "34522d0b078477627fe068130d3b0a5d4d8cc9fc90599a583d979080d632f544",
610
+ "bytes": 7688
595
611
  },
596
612
  "mcp/types.d.ts": {
597
- "sha256": "77bb938f717b095d93514c7d5b57c9685ec704adc602e7614c0dc182ab8adb7d",
598
- "bytes": 3362
613
+ "sha256": "4ab4a4af1eeedf9ba9bcdc70476a5adcc24ce05b3d7d715d70979052b1eb7246",
614
+ "bytes": 3473
599
615
  },
600
616
  "mcp/types.js": {
601
617
  "sha256": "0c12576fd0053115ff096fe26b38f77f1e830b7ec4781aaf94564827c4c9e81a",
602
618
  "bytes": 1253
603
619
  },
604
620
  "mcp/types/tool-description-types.d.ts": {
605
- "sha256": "772592838382804a09e83235dd2fdee038681cb2af5ab3ec967de60fa0109c36",
606
- "bytes": 775
621
+ "sha256": "7d0fb489a829f7d21ed0d3fe9cef221ff71b63619054070287bc790bf5142a28",
622
+ "bytes": 782
607
623
  },
608
624
  "mcp/types/tool-description-types.js": {
609
- "sha256": "f3f459da53c1677533fdaedbe4b98e0ea5af0d29fd20d62111c7eea7039ed02a",
610
- "bytes": 743
625
+ "sha256": "a1c1fdd901bf6a074d9a48cef09e0020c59d9838bfb8754ed2aaf9c23191a533",
626
+ "bytes": 750
611
627
  },
612
628
  "mcp/v2/tool-registry.d.ts": {
613
629
  "sha256": "e97ae56ce8bc994fb33d130e4dfec6fb65d34dc15b6f828fc36010197da6bdbe",
@@ -889,6 +905,46 @@
889
905
  "sha256": "d35a2e67158de033046a15941571257c61f78eb46e75ef112bc5a3587d6b1706",
890
906
  "bytes": 447
891
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
+ },
892
948
  "v2/durable-core/ids/index.d.ts": {
893
949
  "sha256": "5525efc423ad30635996907f7560f53559e49e33a64411a684370ebd1ae56410",
894
950
  "bytes": 1792
@@ -922,12 +978,12 @@
922
978
  "bytes": 1350
923
979
  },
924
980
  "v2/durable-core/schemas/execution-snapshot/execution-snapshot.v1.d.ts": {
925
- "sha256": "96ad2f741274a55ecfeb3cd4c385938db6d4f4f25fee7ea460158b09e4422988",
926
- "bytes": 30004
981
+ "sha256": "f92562d62842ec6da20f78e005df855b0567733a13d50e6435905421461e7b06",
982
+ "bytes": 30043
927
983
  },
928
984
  "v2/durable-core/schemas/execution-snapshot/execution-snapshot.v1.js": {
929
- "sha256": "d93a81d14644459fd79b734077c101747b6d8a01f5989bc0ee90b82e87ab4322",
930
- "bytes": 5081
985
+ "sha256": "9d7ec8c295afe6690ef52140eae582a2a4163fa00b5f9f5bab8c1d0b33a3aaee",
986
+ "bytes": 5185
931
987
  },
932
988
  "v2/durable-core/schemas/execution-snapshot/index.d.ts": {
933
989
  "sha256": "3c312cda4aba0da547ca19041ba85a93ec596f8ac572574eaba0a7164746ec25",
@@ -945,13 +1001,45 @@
945
1001
  "sha256": "600b896c6a23e064478f600ae82923317ce343d9a79e7fe919a8fe8d3354bd4e",
946
1002
  "bytes": 2983
947
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
+ },
948
1036
  "v2/durable-core/schemas/session/events.d.ts": {
949
- "sha256": "9a50360562cf5bb2d544c9b39fb9451bdbacf6f15e85c69a4faa86a1959fa6f9",
950
- "bytes": 63045
1037
+ "sha256": "0df1c3728cece2a3100b59a8b8eda790e47561d6196988b566a5d14a32cd782e",
1038
+ "bytes": 67557
951
1039
  },
952
1040
  "v2/durable-core/schemas/session/events.js": {
953
- "sha256": "a709131e5b89f70e67170b2491ece5887bc8443167857a736f92fde5881ebc41",
954
- "bytes": 15655
1041
+ "sha256": "68e29429a82e6bb3154724526f4698f1359351534e980e22750e0e9be80cf52d",
1042
+ "bytes": 17432
955
1043
  },
956
1044
  "v2/durable-core/schemas/session/index.d.ts": {
957
1045
  "sha256": "f4f500d33d212760f480d91fafd4474f7b12f9239a6c5e9c2d80d0fe96207b65",
@@ -962,36 +1050,36 @@
962
1050
  "bytes": 715
963
1051
  },
964
1052
  "v2/durable-core/schemas/session/manifest.d.ts": {
965
- "sha256": "e70c4e1f52ee00057e0ad6d8b7fff0f0a4a6f85cf4228ab72bc3e704245f0a31",
966
- "bytes": 1534
1053
+ "sha256": "3eff60c200f81c87bb0e0946ba23000bc30fdd98678d316e5a401c189612408b",
1054
+ "bytes": 1594
967
1055
  },
968
1056
  "v2/durable-core/schemas/session/manifest.js": {
969
- "sha256": "735b3f6cbc7e266e882812b359754268c5eca7102f698fbe0fcb49f57f599cd3",
970
- "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
971
1067
  },
972
1068
  "v2/durable-core/schemas/session/session-health.d.ts": {
973
- "sha256": "33e927808b1b6a1f31de141289493b1359ec12943873a8fc970e0fe33775f263",
974
- "bytes": 665
1069
+ "sha256": "cdaad986ff8d8a1054ae47651024004aad945e664d0cad5b062c9c1aee27f0a1",
1070
+ "bytes": 748
975
1071
  },
976
1072
  "v2/durable-core/schemas/session/session-health.js": {
977
1073
  "sha256": "d43aa81f5bc89faa359e0f97c814ba25155591ff078fbb9bfd40f8c7c9683230",
978
1074
  "bytes": 77
979
1075
  },
980
- "v2/durable-core/tokens/base64url.d.ts": {
981
- "sha256": "0db76718338dbc78d647c0bb213059f6a127894a6bcc17e5acb837a99f6da323",
982
- "bytes": 306
983
- },
984
- "v2/durable-core/tokens/base64url.js": {
985
- "sha256": "fbcc82c734d32b150ecb1420ce6bbc684741437930ad98b10992130d000b6bab",
986
- "bytes": 558
987
- },
988
1076
  "v2/durable-core/tokens/index.d.ts": {
989
- "sha256": "29ad2efe0f8c6905693ffd57428ed3186cd103c0b112a8280a97abc5ea83af79",
990
- "bytes": 805
1077
+ "sha256": "79de598d9a56f2cc22671c0644132b24cf4c746c94cbea2f47f4c9044af77b2a",
1078
+ "bytes": 738
991
1079
  },
992
1080
  "v2/durable-core/tokens/index.js": {
993
- "sha256": "774e2fe4d30a2731e53a111953a4e5fcc1e668977f054270e5fbbfc351a321c9",
994
- "bytes": 2924
1081
+ "sha256": "ed96d033e5b4f3bcda9439a384734bc5b7e8e3be7e8593861b2af6469af01404",
1082
+ "bytes": 2556
995
1083
  },
996
1084
  "v2/durable-core/tokens/payloads.d.ts": {
997
1085
  "sha256": "568d7ba9f83ea7584b1c815f79b920f8e548e71a244a6dc5709dc981fc5286d4",
@@ -1002,20 +1090,28 @@
1002
1090
  "bytes": 2343
1003
1091
  },
1004
1092
  "v2/durable-core/tokens/token-codec.d.ts": {
1005
- "sha256": "f03dfaa7ce652ab0fb175f765e3d286c2713db6b40e53716a2b5aff74937705c",
1006
- "bytes": 1223
1093
+ "sha256": "44bd65c6102b3aa5fcd82d2854f5466263a20c0b9cbd31aa25f169dfeed8e045",
1094
+ "bytes": 1349
1007
1095
  },
1008
1096
  "v2/durable-core/tokens/token-codec.js": {
1009
- "sha256": "557c1ee23e4cdb050344d9c4944aec2a1b9e6a90018200290c4d6ea6185bd520",
1010
- "bytes": 3127
1097
+ "sha256": "e82f1a0b45f60c60dfb5b15ce82c911f1e963c503298d9bba37f261bfaeac081",
1098
+ "bytes": 3304
1011
1099
  },
1012
1100
  "v2/durable-core/tokens/token-signer.d.ts": {
1013
- "sha256": "2ce41a829043871a35f4d845eb8c56d038b5b877740cd3511457dbbf96ef2324",
1014
- "bytes": 1001
1101
+ "sha256": "379da0438772c2274af0494229a6f642382752b9003d56b8a884bddc27504296",
1102
+ "bytes": 1127
1015
1103
  },
1016
1104
  "v2/durable-core/tokens/token-signer.js": {
1017
- "sha256": "554c8fb8bf46a02edc019435c37a2d84ef174b29e850fe4b697f5c56e67004eb",
1018
- "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
1019
1115
  },
1020
1116
  "v2/infra/local/crypto/index.d.ts": {
1021
1117
  "sha256": "d2f6cc8e812bd4fb5c83e59f46c4b5588baa1bf33c029239d8162f8669a64370",
@@ -1038,8 +1134,8 @@
1038
1134
  "bytes": 1252
1039
1135
  },
1040
1136
  "v2/infra/local/fs/index.js": {
1041
- "sha256": "409030bf18b98fe09f0801a22826978b2cb6022f71bc7e83fad00cfc8aebb3fb",
1042
- "bytes": 6725
1137
+ "sha256": "abe6971989a76bff11acb03f8fccae1a87712ded9cd95b04fcd80042123b1ac7",
1138
+ "bytes": 6875
1043
1139
  },
1044
1140
  "v2/infra/local/hmac-sha256/index.d.ts": {
1045
1141
  "sha256": "dda3865510dfaf2f13947410d998da6ffecc9a2e728b3574f81e69d5db859815",
@@ -1050,36 +1146,44 @@
1050
1146
  "bytes": 578
1051
1147
  },
1052
1148
  "v2/infra/local/keyring/index.d.ts": {
1053
- "sha256": "e14c988729fc8bdf194d2e6520dc87f366f949f9fc0562b088b458482e799194",
1054
- "bytes": 657
1149
+ "sha256": "e8698dab64327f994bf78e1a6c30131062d8418847417610e6b071ce7e873763",
1150
+ "bytes": 932
1055
1151
  },
1056
1152
  "v2/infra/local/keyring/index.js": {
1057
- "sha256": "875ae8f90d0b13e0cea19e537ef0279b1b80d2ad155b5b602226a7271a0b3b7d",
1058
- "bytes": 3839
1153
+ "sha256": "cb8a95f098350689004cda4cd638b1ea640fd283705e505ad99c4a20726da321",
1154
+ "bytes": 4548
1059
1155
  },
1060
1156
  "v2/infra/local/pinned-workflow-store/index.d.ts": {
1061
- "sha256": "61670e576d288f9f98b6314f71a652ca7a20eaf402ecad263e94563cb9cd5ac7",
1062
- "bytes": 803
1157
+ "sha256": "5f7d831fceb44ded4ae7e153bed882aa63816c01c54732d30e6a89dae8bfd8d0",
1158
+ "bytes": 917
1063
1159
  },
1064
1160
  "v2/infra/local/pinned-workflow-store/index.js": {
1065
- "sha256": "6a0edfda32ae0e10021702deda75f9cc1c891e1cc02d9e4ad947517f0bde740a",
1066
- "bytes": 3731
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
1067
1171
  },
1068
1172
  "v2/infra/local/session-lock/index.d.ts": {
1069
- "sha256": "e6c6d39259037c4aaaf4465f68d27e24512252b5547b726ec1e86857e1eac046",
1070
- "bytes": 727
1173
+ "sha256": "3b381b372da6039df678dfddf377600547e1067cf921cc1b4cdf578e5df0a1bb",
1174
+ "bytes": 853
1071
1175
  },
1072
1176
  "v2/infra/local/session-lock/index.js": {
1073
- "sha256": "06be71237bdf98431e39b97d7ded7737d4bf5efab440f81f541b5ce43768e720",
1074
- "bytes": 1649
1177
+ "sha256": "3ad09372cb30d959016cc2a69e91de7c7f3a251c22048a917d9862fd0d8a77f9",
1178
+ "bytes": 1700
1075
1179
  },
1076
1180
  "v2/infra/local/session-store/index.d.ts": {
1077
1181
  "sha256": "9f2a4bd619722ff114100a51468aab6a3e4123f9454ce31cfce32aea63e57a2c",
1078
1182
  "bytes": 1447
1079
1183
  },
1080
1184
  "v2/infra/local/session-store/index.js": {
1081
- "sha256": "19a652715895943c3fa453406a43c91aaf4260f582c943fde5fc5fdc34dbdb28",
1082
- "bytes": 26913
1185
+ "sha256": "8820cf4cb1bc6df3d0ee02f9a7571f8478acdbb6c750fff43a2d5177bd621dea",
1186
+ "bytes": 28140
1083
1187
  },
1084
1188
  "v2/infra/local/sha256/index.d.ts": {
1085
1189
  "sha256": "8a727b7e54a38275ca6f9f1b8730f97cfc0a212df035df1bdc58e716e6824230",
@@ -1094,8 +1198,32 @@
1094
1198
  "bytes": 1017
1095
1199
  },
1096
1200
  "v2/infra/local/snapshot-store/index.js": {
1097
- "sha256": "2b8d3db16aec20de6cc697ed3ae1fc2143f9b6d7d1bda8c7d30c8e0feb7fdb21",
1098
- "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
1099
1227
  },
1100
1228
  "v2/ports/data-dir.port.d.ts": {
1101
1229
  "sha256": "4f958bb4b89a87ede17942800903db3c8c55faffea514472fa916aad578050c9",
@@ -1137,6 +1265,14 @@
1137
1265
  "sha256": "d43aa81f5bc89faa359e0f97c814ba25155591ff078fbb9bfd40f8c7c9683230",
1138
1266
  "bytes": 77
1139
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
+ },
1140
1276
  "v2/ports/session-event-log-store.port.d.ts": {
1141
1277
  "sha256": "80743c9f579d6aad94c47eaae80617c7ab82d192148e6734dcea70ac902d1b86",
1142
1278
  "bytes": 2000
@@ -1169,6 +1305,22 @@
1169
1305
  "sha256": "d43aa81f5bc89faa359e0f97c814ba25155591ff078fbb9bfd40f8c7c9683230",
1170
1306
  "bytes": 77
1171
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
+ },
1172
1324
  "v2/projections/advance-outcomes.d.ts": {
1173
1325
  "sha256": "1c1283e2484b81c13428d6b4c80adb1ca079cf9b7c858cee8d178af1e0828e0f",
1174
1326
  "bytes": 903
@@ -1198,28 +1350,28 @@
1198
1350
  "bytes": 1328
1199
1351
  },
1200
1352
  "v2/projections/node-outputs.js": {
1201
- "sha256": "da77c8429c9df4843fb5e6d746f1814f145de08d1c0f683b7f03a5f12306c0a0",
1202
- "bytes": 2911
1353
+ "sha256": "be1ce853c684f1ffa6289192578f5ab6bf45a2a113aa2a80843309331ada54d9",
1354
+ "bytes": 3709
1203
1355
  },
1204
1356
  "v2/projections/preferences.d.ts": {
1205
- "sha256": "0f1de63f2eb44b350d371f2b5db225af298b7d51873ca1efb47065a42307c2a6",
1206
- "bytes": 1201
1357
+ "sha256": "d7447264a3b1184edc1000ff547eeeef882de64a97fe61611ae5f27db5d5f364",
1358
+ "bytes": 1134
1207
1359
  },
1208
1360
  "v2/projections/preferences.js": {
1209
- "sha256": "b8d0b39a246848cbd92d1e201780b95ef5618576bccbec823d9d198df842302f",
1210
- "bytes": 1862
1361
+ "sha256": "2f769d3bf9c4bf45c95c793785c45df8803f52731b4ffaf57bef73df279da397",
1362
+ "bytes": 2212
1211
1363
  },
1212
1364
  "v2/projections/run-dag.d.ts": {
1213
1365
  "sha256": "0594d5038cbe0fe88fd6cc037f32a3e88c04660c167757e870e0a2d51e7159a7",
1214
1366
  "bytes": 1516
1215
1367
  },
1216
1368
  "v2/projections/run-dag.js": {
1217
- "sha256": "24e0a17255852a81709cbe36cc6ab16a05d0b1ecbcd7299306aec9dfa31011fb",
1218
- "bytes": 7369
1369
+ "sha256": "2717047d48b201020d411c0b9fd47c0f8192aff4ffbb441dcfa52043a92b2cc1",
1370
+ "bytes": 8031
1219
1371
  },
1220
1372
  "v2/projections/run-status-signals.d.ts": {
1221
- "sha256": "28404bc37b27e0a5f122b7728513018baf8531e8bb2d955544018faa45af65e8",
1222
- "bytes": 1127
1373
+ "sha256": "7af814efae31db0cb71747c7fe90724d3b196b681a724469455d7e2d51599f50",
1374
+ "bytes": 1060
1223
1375
  },
1224
1376
  "v2/projections/run-status-signals.js": {
1225
1377
  "sha256": "5059d956398d8d524cdea73aeeb870e3ec2e22245a9d1c02262784e7b017ce95",
@@ -1246,8 +1398,8 @@
1246
1398
  "bytes": 2084
1247
1399
  },
1248
1400
  "v2/usecases/execution-session-gate.js": {
1249
- "sha256": "8b9e23c784c018e58bae73a7dd3a0a154fba4da91e76ae346b5d6682c18ec10b",
1250
- "bytes": 7581
1401
+ "sha256": "41a25f3046ed474c6c6223655ca1c21d0666aea171c024f51b85071619abfa52",
1402
+ "bytes": 7635
1251
1403
  }
1252
1404
  }
1253
1405
  }