@exaudeus/workrail 1.5.0 → 1.5.1

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 (141) hide show
  1. package/dist/manifest.json +378 -178
  2. package/dist/mcp/handlers/v2-advance-core/event-builders.d.ts +37 -0
  3. package/dist/mcp/handlers/v2-advance-core/event-builders.js +114 -0
  4. package/dist/mcp/handlers/v2-advance-core/index.d.ts +67 -0
  5. package/dist/mcp/handlers/v2-advance-core/index.js +100 -0
  6. package/dist/mcp/handlers/v2-advance-core/input-validation.d.ts +44 -0
  7. package/dist/mcp/handlers/v2-advance-core/input-validation.js +58 -0
  8. package/dist/mcp/handlers/v2-advance-core/outcome-blocked.d.ts +16 -0
  9. package/dist/mcp/handlers/v2-advance-core/outcome-blocked.js +64 -0
  10. package/dist/mcp/handlers/v2-advance-core/outcome-success.d.ts +15 -0
  11. package/dist/mcp/handlers/v2-advance-core/outcome-success.js +136 -0
  12. package/dist/mcp/handlers/v2-advance-core.d.ts +3 -45
  13. package/dist/mcp/handlers/v2-advance-core.js +3 -431
  14. package/dist/mcp/handlers/v2-advance-events.d.ts +61 -0
  15. package/dist/mcp/handlers/v2-advance-events.js +126 -0
  16. package/dist/mcp/handlers/v2-checkpoint.js +5 -4
  17. package/dist/mcp/handlers/v2-context-budget.js +2 -2
  18. package/dist/mcp/handlers/v2-execution/advance.d.ts +32 -0
  19. package/dist/mcp/handlers/v2-execution/advance.js +50 -0
  20. package/dist/mcp/handlers/v2-execution/continue-advance.d.ts +29 -0
  21. package/dist/mcp/handlers/v2-execution/continue-advance.js +170 -0
  22. package/dist/mcp/handlers/v2-execution/continue-rehydrate.d.ts +22 -0
  23. package/dist/mcp/handlers/v2-execution/continue-rehydrate.js +146 -0
  24. package/dist/mcp/handlers/v2-execution/index.d.ts +23 -0
  25. package/dist/mcp/handlers/v2-execution/index.js +113 -0
  26. package/dist/mcp/handlers/v2-execution/replay.d.ts +55 -0
  27. package/dist/mcp/handlers/v2-execution/replay.js +227 -0
  28. package/dist/mcp/handlers/v2-execution/start.d.ts +52 -0
  29. package/dist/mcp/handlers/v2-execution/start.js +350 -0
  30. package/dist/mcp/handlers/v2-execution-helpers.d.ts +23 -0
  31. package/dist/mcp/handlers/v2-execution-helpers.js +42 -1
  32. package/dist/mcp/handlers/v2-execution.d.ts +1 -23
  33. package/dist/mcp/handlers/v2-execution.js +5 -898
  34. package/dist/mcp/handlers/v2-state-conversion.d.ts +0 -5
  35. package/dist/mcp/handlers/v2-state-conversion.js +2 -21
  36. package/dist/mcp/handlers/v2-token-ops.d.ts +1 -1
  37. package/dist/mcp/handlers/v2-workflow.js +76 -64
  38. package/dist/v2/durable-core/constants.d.ts +60 -0
  39. package/dist/v2/durable-core/constants.js +55 -1
  40. package/dist/v2/durable-core/domain/ack-advance-append-plan.d.ts +23 -13
  41. package/dist/v2/durable-core/domain/ack-advance-append-plan.js +160 -113
  42. package/dist/v2/durable-core/domain/blocked-node-builder.js +8 -2
  43. package/dist/v2/durable-core/domain/blocking-decision.d.ts +2 -0
  44. package/dist/v2/durable-core/domain/blocking-decision.js +29 -12
  45. package/dist/v2/durable-core/domain/bundle-builder.d.ts +1 -0
  46. package/dist/v2/durable-core/domain/bundle-builder.js +1 -1
  47. package/dist/v2/durable-core/domain/bundle-validator.js +3 -2
  48. package/dist/v2/durable-core/domain/decision-trace-builder.js +7 -9
  49. package/dist/v2/durable-core/domain/function-definition-expander.js +1 -3
  50. package/dist/v2/durable-core/domain/gap-builder.js +2 -1
  51. package/dist/v2/durable-core/domain/observation-builder.js +2 -1
  52. package/dist/v2/durable-core/domain/outputs.d.ts +2 -1
  53. package/dist/v2/durable-core/domain/outputs.js +3 -2
  54. package/dist/v2/durable-core/domain/reason-model.d.ts +1 -1
  55. package/dist/v2/durable-core/domain/reason-model.js +4 -9
  56. package/dist/v2/durable-core/domain/validation-criteria-validator.js +2 -2
  57. package/dist/v2/durable-core/domain/validation-event-builder.js +4 -6
  58. package/dist/v2/durable-core/domain/validation-loader.js +2 -1
  59. package/dist/v2/durable-core/domain/validation-requirements-extractor.js +12 -18
  60. package/dist/v2/durable-core/encoding/base32-lower.d.ts +13 -1
  61. package/dist/v2/durable-core/encoding/base32-lower.js +13 -3
  62. package/dist/v2/durable-core/encoding/hex-to-bytes.d.ts +6 -0
  63. package/dist/v2/durable-core/encoding/hex-to-bytes.js +19 -0
  64. package/dist/v2/durable-core/ids/attempt-id-derivation.d.ts +6 -1
  65. package/dist/v2/durable-core/ids/attempt-id-derivation.js +9 -19
  66. package/dist/v2/durable-core/ids/event-ids.d.ts +9 -0
  67. package/dist/v2/durable-core/ids/event-ids.js +18 -0
  68. package/dist/v2/durable-core/ids/index.d.ts +13 -33
  69. package/dist/v2/durable-core/ids/index.js +22 -63
  70. package/dist/v2/durable-core/ids/session-ids.d.ts +9 -0
  71. package/dist/v2/durable-core/ids/session-ids.js +18 -0
  72. package/dist/v2/durable-core/ids/snapshot-ids.d.ts +6 -0
  73. package/dist/v2/durable-core/ids/snapshot-ids.js +10 -0
  74. package/dist/v2/durable-core/ids/token-ids.d.ts +3 -0
  75. package/dist/v2/durable-core/ids/token-ids.js +6 -0
  76. package/dist/v2/durable-core/ids/workflow-hash-ref.d.ts +3 -0
  77. package/dist/v2/durable-core/ids/workflow-hash-ref.js +5 -4
  78. package/dist/v2/durable-core/ids/workflow-ids.d.ts +11 -0
  79. package/dist/v2/durable-core/ids/workflow-ids.js +21 -0
  80. package/dist/v2/durable-core/lib/utf8-byte-length.d.ts +1 -0
  81. package/dist/v2/durable-core/lib/utf8-byte-length.js +6 -0
  82. package/dist/v2/durable-core/schemas/artifacts/loop-control.js +2 -1
  83. package/dist/v2/durable-core/schemas/execution-snapshot/blocked-snapshot.d.ts +24 -24
  84. package/dist/v2/durable-core/schemas/execution-snapshot/blocked-snapshot.js +5 -7
  85. package/dist/v2/durable-core/schemas/execution-snapshot/execution-snapshot.v1.d.ts +180 -180
  86. package/dist/v2/durable-core/schemas/export-bundle/index.d.ts +282 -287
  87. package/dist/v2/durable-core/schemas/export-bundle/index.js +0 -8
  88. package/dist/v2/durable-core/schemas/lib/dedupe-key.d.ts +9 -1
  89. package/dist/v2/durable-core/schemas/lib/dedupe-key.js +4 -3
  90. package/dist/v2/durable-core/schemas/lib/utf8-byte-length.d.ts +1 -0
  91. package/dist/v2/durable-core/schemas/lib/utf8-byte-length.js +6 -0
  92. package/dist/v2/durable-core/schemas/session/blockers.d.ts +305 -0
  93. package/dist/v2/durable-core/schemas/session/blockers.js +80 -0
  94. package/dist/v2/durable-core/schemas/session/dag-topology.d.ts +77 -0
  95. package/dist/v2/durable-core/schemas/session/dag-topology.js +45 -0
  96. package/dist/v2/durable-core/schemas/session/events.d.ts +36 -36
  97. package/dist/v2/durable-core/schemas/session/events.js +11 -182
  98. package/dist/v2/durable-core/schemas/session/gaps.d.ts +211 -0
  99. package/dist/v2/durable-core/schemas/session/gaps.js +37 -0
  100. package/dist/v2/durable-core/schemas/session/outputs.d.ts +148 -0
  101. package/dist/v2/durable-core/schemas/session/outputs.js +44 -0
  102. package/dist/v2/durable-core/schemas/session/validation-event.js +5 -7
  103. package/dist/v2/durable-core/tokens/token-codec.d.ts +1 -18
  104. package/dist/v2/durable-core/tokens/token-codec.js +0 -67
  105. package/dist/v2/durable-core/tokens/token-signer.d.ts +1 -8
  106. package/dist/v2/durable-core/tokens/token-signer.js +0 -43
  107. package/dist/v2/infra/local/base32/index.js +1 -23
  108. package/dist/v2/infra/local/bech32m/index.js +1 -1
  109. package/dist/v2/infra/local/data-dir/index.d.ts +7 -6
  110. package/dist/v2/infra/local/data-dir/index.js +3 -3
  111. package/dist/v2/infra/local/directory-listing/index.d.ts +2 -2
  112. package/dist/v2/infra/local/session-store/index.js +198 -182
  113. package/dist/v2/infra/local/session-summary-provider/index.js +5 -2
  114. package/dist/v2/infra/local/snapshot-store/index.js +2 -2
  115. package/dist/v2/ports/data-dir.port.d.ts +7 -6
  116. package/dist/v2/ports/fs.port.d.ts +18 -7
  117. package/dist/v2/ports/session-event-log-store.port.d.ts +5 -2
  118. package/dist/v2/projections/advance-outcomes.d.ts +1 -7
  119. package/dist/v2/projections/advance-outcomes.js +2 -1
  120. package/dist/v2/projections/artifacts.js +3 -2
  121. package/dist/v2/projections/capabilities.d.ts +1 -7
  122. package/dist/v2/projections/capabilities.js +2 -1
  123. package/dist/v2/projections/gaps.d.ts +1 -7
  124. package/dist/v2/projections/gaps.js +2 -1
  125. package/dist/v2/projections/node-outputs.d.ts +1 -7
  126. package/dist/v2/projections/node-outputs.js +4 -3
  127. package/dist/v2/projections/preferences.d.ts +1 -7
  128. package/dist/v2/projections/preferences.js +2 -1
  129. package/dist/v2/projections/projection-error.d.ts +7 -0
  130. package/dist/v2/projections/projection-error.js +2 -0
  131. package/dist/v2/projections/resume-ranking.js +3 -3
  132. package/dist/v2/projections/run-context.d.ts +1 -7
  133. package/dist/v2/projections/run-context.js +4 -2
  134. package/dist/v2/projections/run-dag.d.ts +9 -9
  135. package/dist/v2/projections/run-dag.js +88 -65
  136. package/dist/v2/projections/run-status-signals.d.ts +1 -7
  137. package/dist/v2/projections/run-status-signals.js +3 -2
  138. package/dist/v2/usecases/execution-session-gate.js +2 -5
  139. package/dist/v2/usecases/export-session.js +4 -2
  140. package/dist/v2/usecases/import-session.d.ts +3 -3
  141. package/package.json +1 -1
@@ -546,28 +546,76 @@
546
546
  "bytes": 405
547
547
  },
548
548
  "mcp/handlers/v2-advance-core.d.ts": {
549
- "sha256": "5ed21e2d48499bcd75b9a54661282b4f17de060b59929aba092fa081f09adaa5",
550
- "bytes": 2328
549
+ "sha256": "0a07ea15caf7b0a3123d3b0b44c2b85392d090dd140bf82370fd0e84d1aa5b0e",
550
+ "bytes": 271
551
551
  },
552
552
  "mcp/handlers/v2-advance-core.js": {
553
- "sha256": "d22e4b954022e82bf3017b5fca7101c0499f76fdad1efb86131f189bc9c4602b",
554
- "bytes": 22251
553
+ "sha256": "27b84fb8e8a5eb3d9652fbd36ed04d97dea28bb9497614b9b17b1aadb4259d0f",
554
+ "bytes": 306
555
+ },
556
+ "mcp/handlers/v2-advance-core/event-builders.d.ts": {
557
+ "sha256": "70ebbe3fcbf0059cd2bcbf7fb9fc02e128be8c15c15b9ac3f5a1d90dd5b377a9",
558
+ "bytes": 2464
559
+ },
560
+ "mcp/handlers/v2-advance-core/event-builders.js": {
561
+ "sha256": "6a8f51c9723ce0486f20749e392c1ec8e3fc9ccf83de43df6658d0a9c9d06441",
562
+ "bytes": 5722
563
+ },
564
+ "mcp/handlers/v2-advance-core/index.d.ts": {
565
+ "sha256": "a927c7e13912cfcad6340922a24f5b9331d513ce25191049aabdce96a7a86a68",
566
+ "bytes": 3500
567
+ },
568
+ "mcp/handlers/v2-advance-core/index.js": {
569
+ "sha256": "5ead85dbaf573011568ec1dc826be97c482b43a70a6a7ed724cd767e9a9deeb4",
570
+ "bytes": 5487
571
+ },
572
+ "mcp/handlers/v2-advance-core/input-validation.d.ts": {
573
+ "sha256": "a7b5d0e80eaea2cc500cd576bd1ae25d1c5521dcef76011bd052bf6cf6cf574b",
574
+ "bytes": 2044
575
+ },
576
+ "mcp/handlers/v2-advance-core/input-validation.js": {
577
+ "sha256": "e1b206cde61cc3c9c1da1587a4bb0ef85413c5b4a7e85ebb3e2e1cb8052adbf0",
578
+ "bytes": 3130
579
+ },
580
+ "mcp/handlers/v2-advance-core/outcome-blocked.d.ts": {
581
+ "sha256": "4f49a588027929875a98c1212de40201512a023d4bf230f8d9e075cbdfa8421d",
582
+ "bytes": 1014
583
+ },
584
+ "mcp/handlers/v2-advance-core/outcome-blocked.js": {
585
+ "sha256": "12ac27a78a1d42ea145b93f76baab595a6b22e491b29021af1ac0b408f39ee8e",
586
+ "bytes": 3399
587
+ },
588
+ "mcp/handlers/v2-advance-core/outcome-success.d.ts": {
589
+ "sha256": "da1bcf2d275ba9f1c0f073446f3c87b67394161b0b69c669f70c758bc597c8be",
590
+ "bytes": 936
591
+ },
592
+ "mcp/handlers/v2-advance-core/outcome-success.js": {
593
+ "sha256": "fad3e883e4688f344374bab6f58a753f8cce8fa3f1e931daf081db18155d04dd",
594
+ "bytes": 5988
595
+ },
596
+ "mcp/handlers/v2-advance-events.d.ts": {
597
+ "sha256": "02cdb52a2c16dd619645b5496caf0880e57937bf21ea9efe44e6cd195cd43b94",
598
+ "bytes": 2769
599
+ },
600
+ "mcp/handlers/v2-advance-events.js": {
601
+ "sha256": "6b77a18f4818355b986b96af50df86d629f235226d619e27a35eb50384c0f770",
602
+ "bytes": 5187
555
603
  },
556
604
  "mcp/handlers/v2-checkpoint.d.ts": {
557
605
  "sha256": "97e1d3ddcb5f92137312c6516b6c4ff2f18dec7a7a83657db30198aedd67e7e1",
558
606
  "bytes": 259
559
607
  },
560
608
  "mcp/handlers/v2-checkpoint.js": {
561
- "sha256": "20a8d8524bb64a641d4c82ecabadf70ba84c599636808ba4fe19d594d1f04b8c",
562
- "bytes": 9123
609
+ "sha256": "db8702a5d6ccd6103780dea96d9983e3c17ef74cb63cdbdac97fff77091a39e1",
610
+ "bytes": 9289
563
611
  },
564
612
  "mcp/handlers/v2-context-budget.d.ts": {
565
613
  "sha256": "cbad1741a183d52c9cbe558be2e09f776843d1f3ec8cd28d6d0d230668e4298c",
566
614
  "bytes": 674
567
615
  },
568
616
  "mcp/handlers/v2-context-budget.js": {
569
- "sha256": "8362f8e2118714d41ca0d8f9abe720fbd8a0e46e97a75b8fd648ea7babf7b39c",
570
- "bytes": 7121
617
+ "sha256": "41633eaf3b61838a62457768393dd0134cf4ffb1b201af28e048bfb711f6f01d",
618
+ "bytes": 7173
571
619
  },
572
620
  "mcp/handlers/v2-error-mapping.d.ts": {
573
621
  "sha256": "b0f426e2ea4c25caa19fb72ea8c5c65590be01da6bb6678b1236b4333c66ad09",
@@ -578,20 +626,68 @@
578
626
  "bytes": 6808
579
627
  },
580
628
  "mcp/handlers/v2-execution-helpers.d.ts": {
581
- "sha256": "27d2db20098a413ef5fc15e32da6bb33492d9141f463517d9d9d0b1dbfe31772",
582
- "bytes": 4458
629
+ "sha256": "9ff56752113e6ed25c672b813810cc14ed6d28831863804897d886e64d81d33a",
630
+ "bytes": 5616
583
631
  },
584
632
  "mcp/handlers/v2-execution-helpers.js": {
585
- "sha256": "94954d9dae0156180762ca745afd3a0bbf1654eae2f3be1fdaefbfbad285ee67",
586
- "bytes": 14592
633
+ "sha256": "980637d9955bcecb0c056e3eab76aba18d1956a72b52229c8a82149675f1e9e6",
634
+ "bytes": 16266
587
635
  },
588
636
  "mcp/handlers/v2-execution.d.ts": {
589
- "sha256": "d5910f019078dbfae68c4c1a36a77c78e8b2aabf9d134162cd4e8c81090e8cd2",
590
- "bytes": 944
637
+ "sha256": "f76cd1bb6a6e25c5a37a1f5b01b1046f4afd41162b620f3be3861509e1fcd1d3",
638
+ "bytes": 106
591
639
  },
592
640
  "mcp/handlers/v2-execution.js": {
593
- "sha256": "561e34c59e1640dd419644b1abc750b2750e8a99bce000abef593e5047badc23",
594
- "bytes": 50334
641
+ "sha256": "2a395b1f23669bd79246bb829ca58a21142a9199946a998360fcc9aa085d2c3a",
642
+ "bytes": 645
643
+ },
644
+ "mcp/handlers/v2-execution/advance.d.ts": {
645
+ "sha256": "58fb7a13a5d9cd6c109c3de3a983d0bad2f6832248eb0312c94b85f6358a8535",
646
+ "bytes": 2023
647
+ },
648
+ "mcp/handlers/v2-execution/advance.js": {
649
+ "sha256": "2d1f86a8d792239e21ad9892d0865a031fd3c5aa474cd76bd30a16174b12dd62",
650
+ "bytes": 2981
651
+ },
652
+ "mcp/handlers/v2-execution/continue-advance.d.ts": {
653
+ "sha256": "93c700c8760eb0ef8aec6c9d5cf1348d8c4b4d4ff2c876c1c67b551996f0a613",
654
+ "bytes": 1830
655
+ },
656
+ "mcp/handlers/v2-execution/continue-advance.js": {
657
+ "sha256": "259e2b631c585b171d84c3b235e87621889eb9b213f0d28bbc5f7f6019d7673d",
658
+ "bytes": 8251
659
+ },
660
+ "mcp/handlers/v2-execution/continue-rehydrate.d.ts": {
661
+ "sha256": "af7475b7effe57f18fa8379bfd128d17afb2d27fe1c058c6f2ee8f5b2632e3d0",
662
+ "bytes": 1312
663
+ },
664
+ "mcp/handlers/v2-execution/continue-rehydrate.js": {
665
+ "sha256": "52de5f0dd7b366a36b68b487119a43dc6c5581c5d4ea5304cc6530052a334973",
666
+ "bytes": 8675
667
+ },
668
+ "mcp/handlers/v2-execution/index.d.ts": {
669
+ "sha256": "b6ed1b40a7bfd7ea01aa20d9f20defa9394cfda03aff3554da308fdfd5ab3397",
670
+ "bytes": 950
671
+ },
672
+ "mcp/handlers/v2-execution/index.js": {
673
+ "sha256": "5ef4e95b9789a6f0f2085417c34186902f576393baa4ab35b20833e1d261d366",
674
+ "bytes": 5303
675
+ },
676
+ "mcp/handlers/v2-execution/replay.d.ts": {
677
+ "sha256": "7a8a9c7993a86fae086510c63e70eb4556aff9af978ac5e10733358698e14097",
678
+ "bytes": 2869
679
+ },
680
+ "mcp/handlers/v2-execution/replay.js": {
681
+ "sha256": "9d22e419d84f0961cdeb1ca076ab66c7a0e619043f2b560d4b6581b70054df29",
682
+ "bytes": 12181
683
+ },
684
+ "mcp/handlers/v2-execution/start.d.ts": {
685
+ "sha256": "ab18fa2d8382e31bab816ddc981f721b76a592dadd724756d27cdd71286eb0d8",
686
+ "bytes": 2785
687
+ },
688
+ "mcp/handlers/v2-execution/start.js": {
689
+ "sha256": "667ba0dec1154018b15f64a9b3be19815457bab674014e0879e772e523be4df9",
690
+ "bytes": 15986
595
691
  },
596
692
  "mcp/handlers/v2-resume.d.ts": {
597
693
  "sha256": "d88f6c35bcaf946666c837b72fda3702a2ebab5e478eb90f7b4b672a0e5fa24f",
@@ -602,16 +698,16 @@
602
698
  "bytes": 2771
603
699
  },
604
700
  "mcp/handlers/v2-state-conversion.d.ts": {
605
- "sha256": "e8d70753ed1b83d9396864ef50929ba32cb008bda24bcb2ce624df24adb72570",
606
- "bytes": 1988
701
+ "sha256": "94bd06904ef58dd210ff17ffb75c2492beea8937eb06d99749e5d860c0e0d96b",
702
+ "bytes": 1733
607
703
  },
608
704
  "mcp/handlers/v2-state-conversion.js": {
609
- "sha256": "63007e8924ad607eeb7f8177b43505218f4b79ccc921daf6517d5d514462d112",
610
- "bytes": 5216
705
+ "sha256": "93110d8a27ca03c0f0936f5d817db4930323ada0ecaaa9cc1154e2c9f552f0fd",
706
+ "bytes": 4335
611
707
  },
612
708
  "mcp/handlers/v2-token-ops.d.ts": {
613
- "sha256": "2101c6f44398909b045adf0904dcec10448bb0fd69d85eab352488ee752959e0",
614
- "bytes": 1853
709
+ "sha256": "0403343468cd3835fb440b457e61050f13761ea60b23e3440ad0360b4ea07982",
710
+ "bytes": 1948
615
711
  },
616
712
  "mcp/handlers/v2-token-ops.js": {
617
713
  "sha256": "c786c2a8de7240989b2368762552373a2c3d397edd47122144c51e31a22d6203",
@@ -622,8 +718,8 @@
622
718
  "bytes": 397
623
719
  },
624
720
  "mcp/handlers/v2-workflow.js": {
625
- "sha256": "f0c28d26cc53079abd22143ebc2e39e197a5e6bf414fa83181d4293c3ce3d771",
626
- "bytes": 4899
721
+ "sha256": "ca2c4a36299d425e788eef4af042099eef7bf62d0ff8fc2a7308723a9a99f205",
722
+ "bytes": 5522
627
723
  },
628
724
  "mcp/handlers/workflow.d.ts": {
629
725
  "sha256": "050565039a20af3f7fc8311337ff4547438ecc59433e5744aacce8f203326774",
@@ -1058,20 +1154,20 @@
1058
1154
  "bytes": 447
1059
1155
  },
1060
1156
  "v2/durable-core/constants.d.ts": {
1061
- "sha256": "2ed1fac01adbf4fd72f09d6b83ac86ce4a0e04dfb08ecbf725ed05721caa4b5a",
1062
- "bytes": 1001
1157
+ "sha256": "73121ae0a507f2ceb073c29e5f156e7958db47a47a034589c7534baa7769faa9",
1158
+ "bytes": 3511
1063
1159
  },
1064
1160
  "v2/durable-core/constants.js": {
1065
- "sha256": "2d6621470da3e3014d5c25598f5d5b39b66b1ff518d0976f7513c452bac27afd",
1066
- "bytes": 1537
1161
+ "sha256": "67a2be5aa35498610cd199edec0f6558fef6efbdd0739e53c53f1f9198d66067",
1162
+ "bytes": 3453
1067
1163
  },
1068
1164
  "v2/durable-core/domain/ack-advance-append-plan.d.ts": {
1069
- "sha256": "858e57b145ddb908fdddcf923e4ea2343f44f6d771dafe5c942aeca9dc8a2264",
1070
- "bytes": 1535
1165
+ "sha256": "957549bbdeec71cc36fee8e39ed3aca33c6e8110856d43f16ec3f4e4cfb28325",
1166
+ "bytes": 1745
1071
1167
  },
1072
1168
  "v2/durable-core/domain/ack-advance-append-plan.js": {
1073
- "sha256": "1ab1f71ad005cf2183491aedf20fa5476d06ce18c05ec271f3d98367728bdad2",
1074
- "bytes": 6531
1169
+ "sha256": "362bff69902fe67393c64001c175c7f38560277132320cfcc5d711f08b2d5920",
1170
+ "bytes": 7853
1075
1171
  },
1076
1172
  "v2/durable-core/domain/artifact-contract-validator.d.ts": {
1077
1173
  "sha256": "262d667fb49fc68a5a6db9f60d4a50c15b9e45ba9ef5980d5b2036a29582eac8",
@@ -1086,32 +1182,32 @@
1086
1182
  "bytes": 880
1087
1183
  },
1088
1184
  "v2/durable-core/domain/blocked-node-builder.js": {
1089
- "sha256": "b69e48b21273be6534fc04d37780e0a2eb9a95f24e578f84ab7759966b73886c",
1090
- "bytes": 3734
1185
+ "sha256": "e07b0fee68be1b9ce653f990cbe0dfde767765915c093a540a53448ceb0aa3fd",
1186
+ "bytes": 4011
1091
1187
  },
1092
1188
  "v2/durable-core/domain/blocking-decision.d.ts": {
1093
- "sha256": "6540ff9a947ad8a661984732c465f7051db8960acbda55c9aa17cbf0bbf3950d",
1094
- "bytes": 1148
1189
+ "sha256": "dd32c4354dd710f94629833e91c5f83cd316212116d63fac1305d7336d4ce353",
1190
+ "bytes": 1186
1095
1191
  },
1096
1192
  "v2/durable-core/domain/blocking-decision.js": {
1097
- "sha256": "f3c86be68aaa045c57c942459031a72df2b2d514e32a57905c1a57f8374e947f",
1098
- "bytes": 1718
1193
+ "sha256": "a85277cc35cfa48e2f2e23bd958dce4431d21e29b8eb152d0dc4d88bfa67e556",
1194
+ "bytes": 2124
1099
1195
  },
1100
1196
  "v2/durable-core/domain/bundle-builder.d.ts": {
1101
- "sha256": "4038983872901590c2aaaa6a27ad2af2f381e2816627f01f8d4276435c8c8a87",
1102
- "bytes": 1221
1197
+ "sha256": "cb08b33f82f7cab8ef1b5f441a531886a4e1d0fdff69105b121089dc2e790357",
1198
+ "bytes": 1254
1103
1199
  },
1104
1200
  "v2/durable-core/domain/bundle-builder.js": {
1105
- "sha256": "f5422dda0c2a6591d7adc6460be49eb3967298658b51ebf0afd4f041a5395305",
1106
- "bytes": 3468
1201
+ "sha256": "d5d5406b9aa7f10d5af5b24bd900d3d56b14cacf3dcaa9af112c0a7f299720bf",
1202
+ "bytes": 3459
1107
1203
  },
1108
1204
  "v2/durable-core/domain/bundle-validator.d.ts": {
1109
1205
  "sha256": "549df7b80ab5c2adcdb7c14e2ae7c668ca3531dfd53aab32bdd364180ef4cecd",
1110
1206
  "bytes": 334
1111
1207
  },
1112
1208
  "v2/durable-core/domain/bundle-validator.js": {
1113
- "sha256": "b68d6fbbbe5bbb207d566118f9d7080ce39f51ba3eb8568a588861ef5639341c",
1114
- "bytes": 5925
1209
+ "sha256": "cb06a60d9aa3ec93f3a1a991063c83a2d44bf751865b22f9fbc5f7a14cdf313f",
1210
+ "bytes": 6024
1115
1211
  },
1116
1212
  "v2/durable-core/domain/context-merge.d.ts": {
1117
1213
  "sha256": "e3068d49237d2ae351cf88c6829bf612dc7ced6f726b618e7f8aeb7462d34256",
@@ -1126,24 +1222,24 @@
1126
1222
  "bytes": 1520
1127
1223
  },
1128
1224
  "v2/durable-core/domain/decision-trace-builder.js": {
1129
- "sha256": "37699436cfd981a3ebfa2abfe9906623d5666fd6671473d76520f14c62efad61",
1130
- "bytes": 3602
1225
+ "sha256": "011f3155612d782c8877238893e53ac3c30962596173202dcbf1a1c4f04932a0",
1226
+ "bytes": 3711
1131
1227
  },
1132
1228
  "v2/durable-core/domain/function-definition-expander.d.ts": {
1133
1229
  "sha256": "2720e7c4dfbd9ec0cdf75eb4384fdbea18d4430aeae7f13d9215f0e5e4980468",
1134
1230
  "bytes": 687
1135
1231
  },
1136
1232
  "v2/durable-core/domain/function-definition-expander.js": {
1137
- "sha256": "ee0727cd5765f6b34893e77a31e148a88889d5b8d43ee28e615243763fa0b8d8",
1138
- "bytes": 2626
1233
+ "sha256": "866a509d0045e6f29fed6139af4f24f9aab5082ea3936a0be5cc70fa60091e15",
1234
+ "bytes": 2574
1139
1235
  },
1140
1236
  "v2/durable-core/domain/gap-builder.d.ts": {
1141
1237
  "sha256": "e8069d47eb586d7f9e986df487d0e8ee7affbfbc60ebff5df437fb7bd647c952",
1142
1238
  "bytes": 620
1143
1239
  },
1144
1240
  "v2/durable-core/domain/gap-builder.js": {
1145
- "sha256": "7d7869dad8d681ef15d1d302e9ed49be2286f807d9cf8163e7c3396ed5df83ce",
1146
- "bytes": 833
1241
+ "sha256": "2e01a0c1842cd30d02726a4ab46d0a9fcc5b4c5fd30d98334eb6b68bef56b2ef",
1242
+ "bytes": 908
1147
1243
  },
1148
1244
  "v2/durable-core/domain/loop-control-evaluator.d.ts": {
1149
1245
  "sha256": "8fd92ad809a19a00a856374abb5a3e3cc8cbfe7c4a26fa28bc2994294d0bac2e",
@@ -1174,16 +1270,16 @@
1174
1270
  "bytes": 605
1175
1271
  },
1176
1272
  "v2/durable-core/domain/observation-builder.js": {
1177
- "sha256": "473acd17a305b8b871f783047206c33abeaa1bd4bb50a22aea8bc7ac83a08705",
1178
- "bytes": 1470
1273
+ "sha256": "b1576b4274a07d89a0535a27506fbd5cbe9daffc021a78a1d202ade918d75c19",
1274
+ "bytes": 1569
1179
1275
  },
1180
1276
  "v2/durable-core/domain/outputs.d.ts": {
1181
- "sha256": "a81de0e210de9ca70b2a12998f226c2ba4396e7e5a484295c12bda81546995bf",
1182
- "bytes": 434
1277
+ "sha256": "adc32e4b86c8036eac61096fe83371140c7de140db414227041a8854435f8f54",
1278
+ "bytes": 485
1183
1279
  },
1184
1280
  "v2/durable-core/domain/outputs.js": {
1185
- "sha256": "cce2a664e516e5e44282e66fd2d9318d27bc50c6157c20a236b313c4a14268a2",
1186
- "bytes": 835
1281
+ "sha256": "f1ba9bbe4d6bcbb6a9e6701f2abe0ae26f93924c4a1e401eb02c2ca214437082",
1282
+ "bytes": 942
1187
1283
  },
1188
1284
  "v2/durable-core/domain/prompt-renderer.d.ts": {
1189
1285
  "sha256": "dd9854d489a03ac57975dd1ecee6e73a4bcc8b78e61c5cd5b394307aab708a7b",
@@ -1194,12 +1290,12 @@
1194
1290
  "bytes": 8638
1195
1291
  },
1196
1292
  "v2/durable-core/domain/reason-model.d.ts": {
1197
- "sha256": "508e4934e7bdafd34df3990d827e242e4af75a16f80ae23a901f6cf15afb053e",
1198
- "bytes": 3567
1293
+ "sha256": "6b32c3504cb35ca382e369b4eaf698f1c469be01448215aeab7ce35e3c2ff550",
1294
+ "bytes": 3585
1199
1295
  },
1200
1296
  "v2/durable-core/domain/reason-model.js": {
1201
- "sha256": "a39fa45d39e3fcba3fdae483c6afe24ed4d62b500586639e3fe24d9286079a49",
1202
- "bytes": 11035
1297
+ "sha256": "8042a61a9ef938309832bb2ec47e2b370cc3be10c9de76922393bedd01417449",
1298
+ "bytes": 10946
1203
1299
  },
1204
1300
  "v2/durable-core/domain/recap-recovery.d.ts": {
1205
1301
  "sha256": "82e7b20a22d409f729ccf79d345c00a7e27f1898a465dfca4cd789ff7766a3d6",
@@ -1230,56 +1326,96 @@
1230
1326
  "bytes": 948
1231
1327
  },
1232
1328
  "v2/durable-core/domain/validation-criteria-validator.js": {
1233
- "sha256": "702d0eace7fdb69e57d02aef284fc613628341525b699eff43317dcc5a41da43",
1234
- "bytes": 2167
1329
+ "sha256": "933651ba042c86e22d7b65820f97a54d2bcec009efa2856aea9649b03a44ee50",
1330
+ "bytes": 2161
1235
1331
  },
1236
1332
  "v2/durable-core/domain/validation-event-builder.d.ts": {
1237
1333
  "sha256": "58cf3487f53e3a5e255871d94096133f1baf7f12ab3825cdc1e9789493677134",
1238
1334
  "bytes": 923
1239
1335
  },
1240
1336
  "v2/durable-core/domain/validation-event-builder.js": {
1241
- "sha256": "10d9d198b831c345d9e0270f42a9937dadb0b88cf12a003f36357426a01df7c2",
1242
- "bytes": 4402
1337
+ "sha256": "e786f1f1991012032b9e45071679bc47bad21d422027e65701fb93e4035e6c01",
1338
+ "bytes": 4479
1243
1339
  },
1244
1340
  "v2/durable-core/domain/validation-loader.d.ts": {
1245
1341
  "sha256": "3bd9bf39bb656190c631f5c0ed87e87b597cc01ac11654283427e22551b9c816",
1246
1342
  "bytes": 518
1247
1343
  },
1248
1344
  "v2/durable-core/domain/validation-loader.js": {
1249
- "sha256": "278c49a3fc0498ceeb9f74426a92effdac5f4e89027c65068b1071265ce74562",
1250
- "bytes": 768
1345
+ "sha256": "a0eb1d9308d2e2a65f2d3528fe9cad8b878558f992b657e67dc997ae0302c067",
1346
+ "bytes": 843
1251
1347
  },
1252
1348
  "v2/durable-core/domain/validation-requirements-extractor.d.ts": {
1253
1349
  "sha256": "b1fc2178fc7cbea52fe32400c186c6a9c40622c148a788379e89e9b44c4838f1",
1254
1350
  "bytes": 188
1255
1351
  },
1256
1352
  "v2/durable-core/domain/validation-requirements-extractor.js": {
1257
- "sha256": "dc37e599678b4a7faf88759bd9e7a1b9622b98656dfe4731ddda74e48436857e",
1258
- "bytes": 1880
1353
+ "sha256": "2f7f1b5dd4fc01c5a2464c0ae348308f17ec1be1da85fd09c2d8aded9df53ee2",
1354
+ "bytes": 1732
1259
1355
  },
1260
1356
  "v2/durable-core/encoding/base32-lower.d.ts": {
1261
- "sha256": "1ae6d44917eaf2119286705dcc7240b9bcf7c5e965b780ce52aa17f3b893ad4f",
1262
- "bytes": 252
1357
+ "sha256": "43a93d86413c2e8831b6ef4ced84457095375735d8c5578ca73d7b987ba9ec84",
1358
+ "bytes": 627
1263
1359
  },
1264
1360
  "v2/durable-core/encoding/base32-lower.js": {
1265
- "sha256": "f3a36370e0dc8dcdc3becacb73ebded715d678b9aacab2dc626a8fa0ed84766f",
1266
- "bytes": 1955
1361
+ "sha256": "3bc5a1beaba6fdfbccf41aac388f0784759903265ef5d9bdd5750f25022d20dc",
1362
+ "bytes": 2296
1363
+ },
1364
+ "v2/durable-core/encoding/hex-to-bytes.d.ts": {
1365
+ "sha256": "39d6f6c874456819e850bb681fafb2f8817a563f6b331b299b3be9b76a5089d0",
1366
+ "bytes": 227
1367
+ },
1368
+ "v2/durable-core/encoding/hex-to-bytes.js": {
1369
+ "sha256": "9ad75fecb12c0de38c7d90f51781517724245b02dc86d1b1bab374ad19ded7f7",
1370
+ "bytes": 734
1267
1371
  },
1268
1372
  "v2/durable-core/ids/attempt-id-derivation.d.ts": {
1269
- "sha256": "baee295f114d8d4a74e9fa529e7c72d458a7c7244f50fad9ebbaea06c57dfe92",
1270
- "bytes": 207
1373
+ "sha256": "abdfd0b2a8a95ea8145000a3c92179b861a36188de6624e7bfad6dcd264dab9e",
1374
+ "bytes": 417
1271
1375
  },
1272
1376
  "v2/durable-core/ids/attempt-id-derivation.js": {
1273
- "sha256": "c13da44f23890d85edfb64a471f4f4817e973a63b41287d79144a3c9c6a5dcea",
1274
- "bytes": 1309
1377
+ "sha256": "1b267175bd062f10c0e8910b61bcdd174038f87179615dd29990a4e13189859f",
1378
+ "bytes": 1161
1379
+ },
1380
+ "v2/durable-core/ids/event-ids.d.ts": {
1381
+ "sha256": "e729a444a47653ed95cd6717e02e9e6161df0f470be3c79427d6e0223e9c4ba7",
1382
+ "bytes": 536
1383
+ },
1384
+ "v2/durable-core/ids/event-ids.js": {
1385
+ "sha256": "9b64a36eb34c2dacdd5e05149d6dc799470007e6b8978d284b1910360cb9e5ae",
1386
+ "bytes": 423
1275
1387
  },
1276
1388
  "v2/durable-core/ids/index.d.ts": {
1277
- "sha256": "483055c4c668a7bf2901b0c48c14c61878316ec75727702c95edce8f2ef9f0b8",
1278
- "bytes": 2066
1389
+ "sha256": "690ebfa504a185af817171c34e7270020c748e775c000ca15f5ec7a35d8d3872",
1390
+ "bytes": 991
1279
1391
  },
1280
1392
  "v2/durable-core/ids/index.js": {
1281
- "sha256": "8bf9f85fc33cd113915be097f67ec4bfae63d5e774bd2d352ee89cd327a6e43d",
1282
- "bytes": 1667
1393
+ "sha256": "762132f6076694fe9498742dc66263bf2b184194fe840e773720aaf65ffafae1",
1394
+ "bytes": 2825
1395
+ },
1396
+ "v2/durable-core/ids/session-ids.d.ts": {
1397
+ "sha256": "e9e30f2551e6660a5815df537e799544a5fb33a44d6bd6ca5abd443dbe721f02",
1398
+ "bytes": 500
1399
+ },
1400
+ "v2/durable-core/ids/session-ids.js": {
1401
+ "sha256": "be2a88034c073ed5dd963988933d5dd43b40ae15195b74aa5b8a850ec1ae5405",
1402
+ "bytes": 396
1403
+ },
1404
+ "v2/durable-core/ids/snapshot-ids.d.ts": {
1405
+ "sha256": "1b9de27994e943b1eeb257511cd3db714678baf486043ac5dcfad94638fffa92",
1406
+ "bytes": 395
1407
+ },
1408
+ "v2/durable-core/ids/snapshot-ids.js": {
1409
+ "sha256": "78da98d4864dbe54c0e4121f35e46ed5ed03318cdf2dd14b04fa384f58653404",
1410
+ "bytes": 268
1411
+ },
1412
+ "v2/durable-core/ids/token-ids.d.ts": {
1413
+ "sha256": "11f0e974b32089fbbb3b2653ea50fdaaef561b4193c9623dd54304e41b1ce261",
1414
+ "bytes": 190
1415
+ },
1416
+ "v2/durable-core/ids/token-ids.js": {
1417
+ "sha256": "97e11ab14d723a02b26272d009c246da9800c62de1942e9ceb1b2565961ec934",
1418
+ "bytes": 174
1283
1419
  },
1284
1420
  "v2/durable-core/ids/with-healthy-session-lock.d.ts": {
1285
1421
  "sha256": "dc1812850b9ce69c0135d575b0994ac4fa7b874bf9db7a1838b6a3390ef31ae2",
@@ -1290,12 +1426,28 @@
1290
1426
  "bytes": 77
1291
1427
  },
1292
1428
  "v2/durable-core/ids/workflow-hash-ref.d.ts": {
1293
- "sha256": "b5f05431b91251c21cf47a0cf7ed8aff5016f3de6274ebef009a1a36a05b21e0",
1294
- "bytes": 350
1429
+ "sha256": "3341101296ed1fc63b23f94b92d6997839c8c4c2f6690984b00f8ac496063b98",
1430
+ "bytes": 420
1295
1431
  },
1296
1432
  "v2/durable-core/ids/workflow-hash-ref.js": {
1297
- "sha256": "c4f47a488858c0029bdf44b8817eebc21fd1b4f4c618af26992d21b8fff02c9b",
1298
- "bytes": 1000
1433
+ "sha256": "69be24da7895c89459802f3c6a6bea3538c546484a25cf2a61517b9c6981f3d9",
1434
+ "bytes": 1095
1435
+ },
1436
+ "v2/durable-core/ids/workflow-ids.d.ts": {
1437
+ "sha256": "be902573df3b93156bd0771a2920f5ab82a703fc2a335500e796e35ec14f2e8a",
1438
+ "bytes": 724
1439
+ },
1440
+ "v2/durable-core/ids/workflow-ids.js": {
1441
+ "sha256": "17c65f83728b7c127402efa58cd23f0891abbac9092342cd9fcff79f6bf1818c",
1442
+ "bytes": 714
1443
+ },
1444
+ "v2/durable-core/lib/utf8-byte-length.d.ts": {
1445
+ "sha256": "98ebccafe229871ceddc1c68c4f4ebcbcd33d4ea53bdc549d1ec26dd0d3dca05",
1446
+ "bytes": 59
1447
+ },
1448
+ "v2/durable-core/lib/utf8-byte-length.js": {
1449
+ "sha256": "b98b09f872bff54ee83fd9f54f505b06970cbf40c9572dacab2eebe4269ad91d",
1450
+ "bytes": 196
1299
1451
  },
1300
1452
  "v2/durable-core/projections/snapshot-state.d.ts": {
1301
1453
  "sha256": "0ce739459968dad16fb135730d8ea70fa04ce24539b74982801cc8eec01a6130",
@@ -1318,8 +1470,8 @@
1318
1470
  "bytes": 2743
1319
1471
  },
1320
1472
  "v2/durable-core/schemas/artifacts/loop-control.js": {
1321
- "sha256": "9cd66b779720dec397ee484176015abbf9f6e813650a423cab241f50b30a028d",
1322
- "bytes": 2018
1473
+ "sha256": "9d8277a83fb4c6e2e07019feab437853c2eccd94b7e6958eda6500fb064d5f6e",
1474
+ "bytes": 2099
1323
1475
  },
1324
1476
  "v2/durable-core/schemas/compiled-workflow/index.d.ts": {
1325
1477
  "sha256": "5146bd86e5785117e260276775a3783871c141425a03f4643bf421a00e5b9bf2",
@@ -1330,16 +1482,16 @@
1330
1482
  "bytes": 1350
1331
1483
  },
1332
1484
  "v2/durable-core/schemas/execution-snapshot/blocked-snapshot.d.ts": {
1333
- "sha256": "b6ec952fb1590417e45e346a958f91aa228d97e6be5006d3aa8cec94ca0d9222",
1334
- "bytes": 23007
1485
+ "sha256": "63e6bdb43c77740935fb8bf49dfd96d5d783a01ae5ce61c0d0f9d61df8e838f6",
1486
+ "bytes": 23179
1335
1487
  },
1336
1488
  "v2/durable-core/schemas/execution-snapshot/blocked-snapshot.js": {
1337
- "sha256": "9f58b2eaa0f5a3c3344d71d3d39ed02cb2e9011b66b5a5c0efb1b3e4ae7fe62d",
1338
- "bytes": 4297
1489
+ "sha256": "9ad261ef17b2d0652ca7387205f2d1ff66203c54b31dc82c08ef8c9762d2fe7b",
1490
+ "bytes": 4364
1339
1491
  },
1340
1492
  "v2/durable-core/schemas/execution-snapshot/execution-snapshot.v1.d.ts": {
1341
- "sha256": "0248c48291361944db27b261138923569407e7fb3afea21cc51fb35060f5435f",
1342
- "bytes": 185298
1493
+ "sha256": "1515649328e6a00fe00053b7fc5aaa5a6dfa325e8c1ea54e99cd44fc54c73280",
1494
+ "bytes": 186498
1343
1495
  },
1344
1496
  "v2/durable-core/schemas/execution-snapshot/execution-snapshot.v1.js": {
1345
1497
  "sha256": "ec330ed72b7d5cc13ed4e000fd398f4c3c0f14e4d3e02ee4f59f10383377be94",
@@ -1362,12 +1514,12 @@
1362
1514
  "bytes": 2983
1363
1515
  },
1364
1516
  "v2/durable-core/schemas/export-bundle/index.d.ts": {
1365
- "sha256": "1bb957237e5275d6a53ddd666a1b40723649301230b8a1a29173c7c052a3f2c7",
1366
- "bytes": 465577
1517
+ "sha256": "856a1e4bcaa17ceb03bdd227b6007fac5221bd7063e0cd83a4eaddb43b1d3523",
1518
+ "bytes": 466802
1367
1519
  },
1368
1520
  "v2/durable-core/schemas/export-bundle/index.js": {
1369
- "sha256": "387b1444f81eb951ab3b66874b1e7407d41345ee60ef4e6dd43f8b4d84d97343",
1370
- "bytes": 4887
1521
+ "sha256": "6e3566b2d05ea6302bbf4d311b8ec3e94725a8523834efe7670a79e7bd7dc40d",
1522
+ "bytes": 4609
1371
1523
  },
1372
1524
  "v2/durable-core/schemas/lib/decision-trace-ref.d.ts": {
1373
1525
  "sha256": "7ca487c95669595193a5cadad35c15cb739712060d34c225e347ca8a791b4c42",
@@ -1378,12 +1530,12 @@
1378
1530
  "bytes": 1632
1379
1531
  },
1380
1532
  "v2/durable-core/schemas/lib/dedupe-key.d.ts": {
1381
- "sha256": "a27700de1c2f9ef2557f199229c3b586f0186b00ac5408d7595bc0d12e2242cb",
1382
- "bytes": 467
1533
+ "sha256": "990634582387e57bd6e24306c7c4d01da1c904ea23b9fb88b75b635dea2c8799",
1534
+ "bytes": 724
1383
1535
  },
1384
1536
  "v2/durable-core/schemas/lib/dedupe-key.js": {
1385
- "sha256": "d92a9e9d82ca19f4f08ca514c23e095759b9818aab84a5e3e5badbe36c51a8a4",
1386
- "bytes": 1172
1537
+ "sha256": "b150e118820082f3672f410b49d01dcbd867e38e97f40f0033e934a51222b326",
1538
+ "bytes": 1337
1387
1539
  },
1388
1540
  "v2/durable-core/schemas/lib/utf8-bounded-string.d.ts": {
1389
1541
  "sha256": "215179bd1d67f3c64adf263f0ec31078f5b1462048587f6de9e4e16c8f0a3088",
@@ -1393,13 +1545,45 @@
1393
1545
  "sha256": "090d11ce7470d2b4a5298bb1f0c357e7aa8d8d98635e3d55314e7043e4531a4f",
1394
1546
  "bytes": 521
1395
1547
  },
1548
+ "v2/durable-core/schemas/lib/utf8-byte-length.d.ts": {
1549
+ "sha256": "98ebccafe229871ceddc1c68c4f4ebcbcd33d4ea53bdc549d1ec26dd0d3dca05",
1550
+ "bytes": 59
1551
+ },
1552
+ "v2/durable-core/schemas/lib/utf8-byte-length.js": {
1553
+ "sha256": "b98b09f872bff54ee83fd9f54f505b06970cbf40c9572dacab2eebe4269ad91d",
1554
+ "bytes": 196
1555
+ },
1556
+ "v2/durable-core/schemas/session/blockers.d.ts": {
1557
+ "sha256": "c19d1baf5a89fe22c2fee23b1a4cd18bf9bb1d4d0402471bd3e32a6d121c1258",
1558
+ "bytes": 10832
1559
+ },
1560
+ "v2/durable-core/schemas/session/blockers.js": {
1561
+ "sha256": "460c3b9cb9a838d0e299357366ec9a9bc7545af38db975896ecad552ac933c84",
1562
+ "bytes": 3396
1563
+ },
1564
+ "v2/durable-core/schemas/session/dag-topology.d.ts": {
1565
+ "sha256": "c8affdc4152be2a6f27b8a1dd06b9262d93b69e345aa82e694a425c76a7b2d45",
1566
+ "bytes": 3018
1567
+ },
1568
+ "v2/durable-core/schemas/session/dag-topology.js": {
1569
+ "sha256": "6222496184ed39a20fc075d82cd64eb5c3ba8cb72b494f7fd9cda3d95d8417b9",
1570
+ "bytes": 2138
1571
+ },
1396
1572
  "v2/durable-core/schemas/session/events.d.ts": {
1397
- "sha256": "534f73ede4fe136c3d0bc0bac6c4c87797377761ddd54d4068c87ecd1d1b9f13",
1398
- "bytes": 72113
1573
+ "sha256": "004bbfe44da4ec264aea85d68f3a078d11d805f3507a6fce07b4092cb44a1a70",
1574
+ "bytes": 72218
1399
1575
  },
1400
1576
  "v2/durable-core/schemas/session/events.js": {
1401
- "sha256": "c43234b957ee48876a2009dbfe9e37f01d61f23a409601c4d8baf4c5c91d94f8",
1402
- "bytes": 18214
1577
+ "sha256": "df053c99e92f16785864f7c91ce0de5eafd2a8d631e93cbb96a40cbfa4cdba14",
1578
+ "bytes": 11149
1579
+ },
1580
+ "v2/durable-core/schemas/session/gaps.d.ts": {
1581
+ "sha256": "329c2f305581e61c319ccddc773fe313093e264c8b4b002c6ebb957bc3abe80f",
1582
+ "bytes": 8341
1583
+ },
1584
+ "v2/durable-core/schemas/session/gaps.js": {
1585
+ "sha256": "2382fd80e49a2b7a6ad2c9e3010d7f5ef30169621ff142d4ce86f98efcfd5d57",
1586
+ "bytes": 2023
1403
1587
  },
1404
1588
  "v2/durable-core/schemas/session/index.d.ts": {
1405
1589
  "sha256": "f4f500d33d212760f480d91fafd4474f7b12f9239a6c5e9c2d80d0fe96207b65",
@@ -1417,6 +1601,14 @@
1417
1601
  "sha256": "a825fae7d8bcc8b5cbdacebb2e089a4b47cb625046a60b573990a0a08df27bad",
1418
1602
  "bytes": 1526
1419
1603
  },
1604
+ "v2/durable-core/schemas/session/outputs.d.ts": {
1605
+ "sha256": "0501691be580d8dd52464c124b5e2433256f2e2ece2c0618f0d261137ffee1cc",
1606
+ "bytes": 4285
1607
+ },
1608
+ "v2/durable-core/schemas/session/outputs.js": {
1609
+ "sha256": "d41959a26236e75ab4a323619df2f8ea79f002b448504045a908dfeacfade378",
1610
+ "bytes": 2050
1611
+ },
1420
1612
  "v2/durable-core/schemas/session/preferences.d.ts": {
1421
1613
  "sha256": "763697078bda9fa8fb7a499978a94d85d1852f0fd8fc07af295ac895d25dba66",
1422
1614
  "bytes": 401
@@ -1438,8 +1630,8 @@
1438
1630
  "bytes": 2206
1439
1631
  },
1440
1632
  "v2/durable-core/schemas/session/validation-event.js": {
1441
- "sha256": "fbb6dcb55cfe721a388648cb63d92c575bf16ca986bcd68923241775a84d2874",
1442
- "bytes": 2060
1633
+ "sha256": "b079e0d720c28abb2ac4c1844a1da7aa95ace7cc8b04213964dab9fccb3e6be9",
1634
+ "bytes": 2195
1443
1635
  },
1444
1636
  "v2/durable-core/tokens/binary-payload.d.ts": {
1445
1637
  "sha256": "ec1b0294c87871600ab088ae846dc508c5ad709c92c8fda95be8aaafb86fb53d",
@@ -1482,28 +1674,28 @@
1482
1674
  "bytes": 1096
1483
1675
  },
1484
1676
  "v2/durable-core/tokens/token-codec.d.ts": {
1485
- "sha256": "a92d41cfecbbea2bf243a46ebc35651f5d841da8a4f97ea987f1d2fe66ce854c",
1486
- "bytes": 2172
1677
+ "sha256": "fbb6a404c6d60afde5cfa33c9feecb54354658aa7533026aaa6c3c7755582d38",
1678
+ "bytes": 1272
1487
1679
  },
1488
1680
  "v2/durable-core/tokens/token-codec.js": {
1489
- "sha256": "ff0add14ad869a259a4e9f7c80776efbb0376841cb595a8b3d004863cf12ed12",
1490
- "bytes": 7485
1681
+ "sha256": "76cfd18c7cde51e4f4ae2360c483b8b79cd1bc4af37b7ff58c4cace7a381d12f",
1682
+ "bytes": 4302
1491
1683
  },
1492
1684
  "v2/durable-core/tokens/token-signer.d.ts": {
1493
- "sha256": "95803efa519d20079b313c065dcb3e890fd0c9d16892e7ecd6bc8821f0c7e106",
1494
- "bytes": 1887
1685
+ "sha256": "30b3da7d6463b8ec10ff91155fe33dd77ce8789df1159a287f0e46fdc42e1407",
1686
+ "bytes": 1051
1495
1687
  },
1496
1688
  "v2/durable-core/tokens/token-signer.js": {
1497
- "sha256": "6567004720c38213f64f2dd5850631278ffbcfaea287152b571bf7fab9575d66",
1498
- "bytes": 5855
1689
+ "sha256": "15a8f8b7dac5ab4449f389c75ce7c13a163f639ade481c3890a7f527d23f500d",
1690
+ "bytes": 3441
1499
1691
  },
1500
1692
  "v2/infra/local/base32/index.d.ts": {
1501
1693
  "sha256": "054ad32b03c22e9c797196024f2c2a43111f682ee4ab15f82ef3b9313c392723",
1502
1694
  "bytes": 300
1503
1695
  },
1504
1696
  "v2/infra/local/base32/index.js": {
1505
- "sha256": "74f61cc73d04f4e9048d02080a7707a656645bd00ad46c0226526580a34d6c78",
1506
- "bytes": 1723
1697
+ "sha256": "3ebd1f70dcbd90b848c787f3c72a71a2d481ae8372afe0490f534f093d896db3",
1698
+ "bytes": 863
1507
1699
  },
1508
1700
  "v2/infra/local/base64url/index.d.ts": {
1509
1701
  "sha256": "42cb6393959b47242cb6363f3336952391b803847b1e022c8ff16e103da4088b",
@@ -1518,8 +1710,8 @@
1518
1710
  "bytes": 425
1519
1711
  },
1520
1712
  "v2/infra/local/bech32m/index.js": {
1521
- "sha256": "58a9c91d4fe8c7974186ee007a36ce7c1bd7908b2600100ce3f06b3ecca80efc",
1522
- "bytes": 2121
1713
+ "sha256": "77e06962d87ab1bea526bada0ace81ee85fa5437f2dbbcf45d4f9cc089f3c8c7",
1714
+ "bytes": 2097
1523
1715
  },
1524
1716
  "v2/infra/local/crypto/index.d.ts": {
1525
1717
  "sha256": "d2f6cc8e812bd4fb5c83e59f46c4b5588baa1bf33c029239d8162f8669a64370",
@@ -1530,16 +1722,16 @@
1530
1722
  "bytes": 457
1531
1723
  },
1532
1724
  "v2/infra/local/data-dir/index.d.ts": {
1533
- "sha256": "31a95a746737e88b354b33368880684454bfe8c3cdb02a21776509c3c6fd450b",
1534
- "bytes": 698
1725
+ "sha256": "71333d489f957d106c1cd81e477793f807cc8a58d6ccc240e2539448a880a856",
1726
+ "bytes": 817
1535
1727
  },
1536
1728
  "v2/infra/local/data-dir/index.js": {
1537
- "sha256": "02d0ad7e3b8c615c6fa3fead6698664d282b2375ea3fc8bd563c12cc7853691c",
1538
- "bytes": 3012
1729
+ "sha256": "a01efc77fc442dfb326c970cb31241886d832b3330255ee0360b28e5d632a78c",
1730
+ "bytes": 3036
1539
1731
  },
1540
1732
  "v2/infra/local/directory-listing/index.d.ts": {
1541
- "sha256": "18fd3d9d74c5541fe95f01be6dd276c6cf6ecf1426fcd0ad1e695d756d9ef93e",
1542
- "bytes": 429
1733
+ "sha256": "dbf0a610bf4871eec89cc39f218ebb5267c695ccd8524613868abf5aa79d8d4a",
1734
+ "bytes": 447
1543
1735
  },
1544
1736
  "v2/infra/local/directory-listing/index.js": {
1545
1737
  "sha256": "1930cb982b9034f46751a000011ea069b6e03becd898973afad4b74e6ebc1759",
@@ -1606,16 +1798,16 @@
1606
1798
  "bytes": 1447
1607
1799
  },
1608
1800
  "v2/infra/local/session-store/index.js": {
1609
- "sha256": "53b9ee8545d99e23cfeecb12b39d202fc552c3e89de9fe71b5d1aaaf9afa6d95",
1610
- "bytes": 29559
1801
+ "sha256": "a9f23fcb1e2ce4a1d1ffb54552fc9bf9421562fee5cfbc089bd1a008aa4d2c70",
1802
+ "bytes": 28456
1611
1803
  },
1612
1804
  "v2/infra/local/session-summary-provider/index.d.ts": {
1613
1805
  "sha256": "8843c26694d12147c322a4ff1f220cef53774c1ea7087241cb6badd12a360fda",
1614
1806
  "bytes": 1069
1615
1807
  },
1616
1808
  "v2/infra/local/session-summary-provider/index.js": {
1617
- "sha256": "d75b34ff09b4e5b0e4cd1b75b67c4efe643db0231afc919da54c29034c1c5c1d",
1618
- "bytes": 5566
1809
+ "sha256": "5dadd21632795d624d0be4be1957329242df6c105ccf507e024e397ab3e63e7f",
1810
+ "bytes": 5728
1619
1811
  },
1620
1812
  "v2/infra/local/sha256/index.d.ts": {
1621
1813
  "sha256": "8a727b7e54a38275ca6f9f1b8730f97cfc0a212df035df1bdc58e716e6824230",
@@ -1630,8 +1822,8 @@
1630
1822
  "bytes": 1017
1631
1823
  },
1632
1824
  "v2/infra/local/snapshot-store/index.js": {
1633
- "sha256": "7d0dfadd804e83701289d5f00cf429851dae3b9bd1decb65c11341d6a138e911",
1634
- "bytes": 3159
1825
+ "sha256": "3e893a7290f23ad212b1957c3770414702a4202ba5a44a71fc0d28a3431cec76",
1826
+ "bytes": 3143
1635
1827
  },
1636
1828
  "v2/infra/local/time-clock/index.d.ts": {
1637
1829
  "sha256": "8f2f6107bbe7bf11a4edddded920cffccec51c4676f29ede7db9059763617d08",
@@ -1682,8 +1874,8 @@
1682
1874
  "bytes": 77
1683
1875
  },
1684
1876
  "v2/ports/data-dir.port.d.ts": {
1685
- "sha256": "4f958bb4b89a87ede17942800903db3c8c55faffea514472fa916aad578050c9",
1686
- "bytes": 467
1877
+ "sha256": "bfaca40462a3334b9e8fe7e7f7136d36e85e35405cc017a403e9670a28bbe3c8",
1878
+ "bytes": 580
1687
1879
  },
1688
1880
  "v2/ports/data-dir.port.js": {
1689
1881
  "sha256": "d43aa81f5bc89faa359e0f97c814ba25155591ff078fbb9bfd40f8c7c9683230",
@@ -1698,8 +1890,8 @@
1698
1890
  "bytes": 77
1699
1891
  },
1700
1892
  "v2/ports/fs.port.d.ts": {
1701
- "sha256": "e4d80716cbfe86352f9017480af31f21e25dfea97c7449b384fe64237bba961d",
1702
- "bytes": 1605
1893
+ "sha256": "7b0d36b7a1abbf6f3f7279a122fe623bfa5d8b18f9a600c191d536c0e93204f7",
1894
+ "bytes": 1991
1703
1895
  },
1704
1896
  "v2/ports/fs.port.js": {
1705
1897
  "sha256": "d43aa81f5bc89faa359e0f97c814ba25155591ff078fbb9bfd40f8c7c9683230",
@@ -1738,8 +1930,8 @@
1738
1930
  "bytes": 77
1739
1931
  },
1740
1932
  "v2/ports/session-event-log-store.port.d.ts": {
1741
- "sha256": "80743c9f579d6aad94c47eaae80617c7ab82d192148e6734dcea70ac902d1b86",
1742
- "bytes": 2000
1933
+ "sha256": "97838c9212ba1f07d779cfe57591bc2dcbad05567aab99ce9714aba12a26ad26",
1934
+ "bytes": 2070
1743
1935
  },
1744
1936
  "v2/ports/session-event-log-store.port.js": {
1745
1937
  "sha256": "d43aa81f5bc89faa359e0f97c814ba25155591ff078fbb9bfd40f8c7c9683230",
@@ -1802,52 +1994,60 @@
1802
1994
  "bytes": 77
1803
1995
  },
1804
1996
  "v2/projections/advance-outcomes.d.ts": {
1805
- "sha256": "1c1283e2484b81c13428d6b4c80adb1ca079cf9b7c858cee8d178af1e0828e0f",
1806
- "bytes": 903
1997
+ "sha256": "79ac0bfe0a7aac47c9bc524db8e76744196eb6697049285c0ebf2b2c15eb54ce",
1998
+ "bytes": 758
1807
1999
  },
1808
2000
  "v2/projections/advance-outcomes.js": {
1809
- "sha256": "9397ad22fcec863d2f491d5d120ed2e40358dbd94117fa44f550444a1c7a672a",
1810
- "bytes": 886
2001
+ "sha256": "f756a8ef3780de29293d1117157d3dd573a6723dc6b15e29cb7be5fe86dd650f",
2002
+ "bytes": 974
1811
2003
  },
1812
2004
  "v2/projections/artifacts.d.ts": {
1813
2005
  "sha256": "1e62d7ba964a664ac7344749b769cf614b232ff7f5962d3dbdb4afda54f9f407",
1814
2006
  "bytes": 955
1815
2007
  },
1816
2008
  "v2/projections/artifacts.js": {
1817
- "sha256": "aa8b2328fd44ba36415e0cbd1feda6a0878760714a84593c674e0bd9990cd606",
1818
- "bytes": 1891
2009
+ "sha256": "e20ae7c41813de53701dc5993b4ead5e09af9eb724340dfd8d7a0b2670857217",
2010
+ "bytes": 2007
1819
2011
  },
1820
2012
  "v2/projections/capabilities.d.ts": {
1821
- "sha256": "2a1049c38dfd388fcbcb970b8d5b4914a38c974362c6102fc91244edd3ccac0f",
1822
- "bytes": 1156
2013
+ "sha256": "ee4c4bb728b5fc7343a43c9bb13a981a9bf0bd1b39e68ff8c866b4119012eac1",
2014
+ "bytes": 1011
1823
2015
  },
1824
2016
  "v2/projections/capabilities.js": {
1825
- "sha256": "6821faa07e120e6211252e308a3248fad450f520e0c949f8058a798dd60fdba0",
1826
- "bytes": 1242
2017
+ "sha256": "3a4b3168e0be478c378446a8eb8cf572051c0abc8a0d6b02f49859eaed7ff64d",
2018
+ "bytes": 1330
1827
2019
  },
1828
2020
  "v2/projections/gaps.d.ts": {
1829
- "sha256": "fda92508c65ba71717bb7a02ee8d3b8de0a3d67df10ba041315b61fa73c47ff2",
1830
- "bytes": 1137
2021
+ "sha256": "889421b067d41c2177b7f2f96f5c5f1e87f11698dc557b4c5549150cb3ebb964",
2022
+ "bytes": 992
1831
2023
  },
1832
2024
  "v2/projections/gaps.js": {
1833
- "sha256": "1e3aaacf4b35ec25c213040b3715cf5aa7efc9507393f5fee0b7de5ebd38a525",
1834
- "bytes": 1917
2025
+ "sha256": "e25b0e42de1472922f69505ccea5611df35bd7548f44e6ad9f27748f11958c6e",
2026
+ "bytes": 2005
1835
2027
  },
1836
2028
  "v2/projections/node-outputs.d.ts": {
1837
- "sha256": "bbf8a23c5a1006dd8d9b405e510b23ba5810a406ca9be876423a52b150143ad1",
1838
- "bytes": 1328
2029
+ "sha256": "f9eb6e2ae243084455b98252bea7a8ee0c866e646472bd4234682dd54db6436e",
2030
+ "bytes": 1183
1839
2031
  },
1840
2032
  "v2/projections/node-outputs.js": {
1841
- "sha256": "be1ce853c684f1ffa6289192578f5ab6bf45a2a113aa2a80843309331ada54d9",
1842
- "bytes": 3709
2033
+ "sha256": "72b9bfe1ec25245b4ce051960daef9e3003505d25465ab5989e1274ceece4b59",
2034
+ "bytes": 3881
1843
2035
  },
1844
2036
  "v2/projections/preferences.d.ts": {
1845
- "sha256": "d7447264a3b1184edc1000ff547eeeef882de64a97fe61611ae5f27db5d5f364",
1846
- "bytes": 1134
2037
+ "sha256": "7cd16a7c0aaa92ff10daf9780ed6b4b2214260ea86f3458af68a3c699ba5c8af",
2038
+ "bytes": 989
1847
2039
  },
1848
2040
  "v2/projections/preferences.js": {
1849
- "sha256": "2f769d3bf9c4bf45c95c793785c45df8803f52731b4ffaf57bef73df279da397",
1850
- "bytes": 2212
2041
+ "sha256": "fa94c40ebc8137479494c1d9216720f9323bca80bc6241d680185c02f5cba9d6",
2042
+ "bytes": 2300
2043
+ },
2044
+ "v2/projections/projection-error.d.ts": {
2045
+ "sha256": "1957ea8546a10b427ab8627dbad0f9c85e1b6ce8a16966976e7a5c9a6cbcc4da",
2046
+ "bytes": 207
2047
+ },
2048
+ "v2/projections/projection-error.js": {
2049
+ "sha256": "d43aa81f5bc89faa359e0f97c814ba25155591ff078fbb9bfd40f8c7c9683230",
2050
+ "bytes": 77
1851
2051
  },
1852
2052
  "v2/projections/projection-timing.d.ts": {
1853
2053
  "sha256": "90251745071420d9ce5789e04c924418f72a86a8b7a68fe6faf0393cef888d27",
@@ -1862,32 +2062,32 @@
1862
2062
  "bytes": 2337
1863
2063
  },
1864
2064
  "v2/projections/resume-ranking.js": {
1865
- "sha256": "4253bd05c81e4b5a95b3472cca9ea3c2d7e9e28fdaabe95c984a1165ecc3a69c",
1866
- "bytes": 4232
2065
+ "sha256": "2cc54d484865507e65cc6202dfb7c42df4535e4cfd6faca6b0d9ce059852a8bc",
2066
+ "bytes": 4281
1867
2067
  },
1868
2068
  "v2/projections/run-context.d.ts": {
1869
- "sha256": "7bdc4b2bacfb4b42005b7a83d7ddaf8a8d414bed90b948c02dbeeacd741b31cc",
1870
- "bytes": 909
2069
+ "sha256": "a4d57470a435ac9860f60b3244d1b828853995027cd510d8da42762d21b2a687",
2070
+ "bytes": 764
1871
2071
  },
1872
2072
  "v2/projections/run-context.js": {
1873
- "sha256": "41429486096e791e7ee3c806a3432421179c9a1a0972380e7e89d584bab733d7",
1874
- "bytes": 1339
2073
+ "sha256": "7c1aeb42cc99f4794f72b3368e194fd7f996be9c53af74de431da38fa463a120",
2074
+ "bytes": 1466
1875
2075
  },
1876
2076
  "v2/projections/run-dag.d.ts": {
1877
- "sha256": "597061f3e9830fd8adf2c211208ba19a59d2a327de2c0ad301d102f7bbef08c9",
1878
- "bytes": 1536
2077
+ "sha256": "408d145ae8ace99bafb97bcc97cfcf716ef497dcaf8e12be78efa9d617d507a8",
2078
+ "bytes": 1530
1879
2079
  },
1880
2080
  "v2/projections/run-dag.js": {
1881
- "sha256": "2717047d48b201020d411c0b9fd47c0f8192aff4ffbb441dcfa52043a92b2cc1",
1882
- "bytes": 8031
2081
+ "sha256": "f52b630249f3c3a0ac8ab53a7f37167fda036fc1d14cfe461c02ddb65d9d4981",
2082
+ "bytes": 8873
1883
2083
  },
1884
2084
  "v2/projections/run-status-signals.d.ts": {
1885
- "sha256": "7af814efae31db0cb71747c7fe90724d3b196b681a724469455d7e2d51599f50",
1886
- "bytes": 1060
2085
+ "sha256": "078197dfebb1c0fe97577e1da3737dee2154757499dfecfdbdd3960df91f4a03",
2086
+ "bytes": 915
1887
2087
  },
1888
2088
  "v2/projections/run-status-signals.js": {
1889
- "sha256": "ec84bb24a85392d8ed2b720d79008d1f65db4d6cbd0d94a773260c30c7e2506a",
1890
- "bytes": 2042
2089
+ "sha256": "0c5c9841e27f271380aed866a093571bde61854ec5b27b75906291120dd0226e",
2090
+ "bytes": 2157
1891
2091
  },
1892
2092
  "v2/projections/session-health.d.ts": {
1893
2093
  "sha256": "0a7096bfc0d32eea9743c34a0b982e32f7eeec9e63ec7af10e27ec21be246630",
@@ -1918,20 +2118,20 @@
1918
2118
  "bytes": 2084
1919
2119
  },
1920
2120
  "v2/usecases/execution-session-gate.js": {
1921
- "sha256": "41a25f3046ed474c6c6223655ca1c21d0666aea171c024f51b85071619abfa52",
1922
- "bytes": 7635
2121
+ "sha256": "0619bab6c13bcaf3711b93bef075ca99cd339bf8a333d12efc830ca07924d553",
2122
+ "bytes": 7455
1923
2123
  },
1924
2124
  "v2/usecases/export-session.d.ts": {
1925
2125
  "sha256": "037c6efb463c121feb41eff43d3b035e8443a12d25fcffb5387453ac5a49ae44",
1926
2126
  "bytes": 2049
1927
2127
  },
1928
2128
  "v2/usecases/export-session.js": {
1929
- "sha256": "a91125866d50fe0a00bc8ef7d1a29bd43958b8e4eaff2e73a8247384e2d113db",
1930
- "bytes": 4092
2129
+ "sha256": "1ac4021a72d854908bb226e5b864accad421cbb42a60f85395a7328502e433ca",
2130
+ "bytes": 4258
1931
2131
  },
1932
2132
  "v2/usecases/import-session.d.ts": {
1933
- "sha256": "30c470707f5370f2b90d786f1d959a0a01bc4fecf3296a523a49518c626f99a8",
1934
- "bytes": 1514
2133
+ "sha256": "7729af87509895fafa1f16fc5ff6c23deea41b20546e40c1951cb4bb52204f0d",
2134
+ "bytes": 1531
1935
2135
  },
1936
2136
  "v2/usecases/import-session.js": {
1937
2137
  "sha256": "9b9c8922cc2e6d6904f564c35ff0e402a2e755187f36ee7e54e76826f51bed5c",