@exaudeus/workrail 1.4.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 (168) hide show
  1. package/dist/manifest.json +464 -200
  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-resume.d.ts +8 -0
  35. package/dist/mcp/handlers/v2-resume.js +70 -0
  36. package/dist/mcp/handlers/v2-state-conversion.d.ts +0 -5
  37. package/dist/mcp/handlers/v2-state-conversion.js +2 -21
  38. package/dist/mcp/handlers/v2-token-ops.d.ts +1 -1
  39. package/dist/mcp/handlers/v2-workflow.js +76 -64
  40. package/dist/mcp/output-schemas.d.ts +40 -0
  41. package/dist/mcp/output-schemas.js +17 -1
  42. package/dist/mcp/server.js +12 -0
  43. package/dist/mcp/tool-descriptions.js +22 -0
  44. package/dist/mcp/tools.js +6 -0
  45. package/dist/mcp/types/tool-description-types.d.ts +1 -1
  46. package/dist/mcp/types/tool-description-types.js +1 -0
  47. package/dist/mcp/types/workflow-tool-edition.d.ts +1 -1
  48. package/dist/mcp/types.d.ts +6 -0
  49. package/dist/mcp/v2/tool-registry.js +8 -0
  50. package/dist/mcp/v2/tools.d.ts +15 -0
  51. package/dist/mcp/v2/tools.js +8 -1
  52. package/dist/v2/durable-core/constants.d.ts +60 -0
  53. package/dist/v2/durable-core/constants.js +55 -1
  54. package/dist/v2/durable-core/domain/ack-advance-append-plan.d.ts +23 -13
  55. package/dist/v2/durable-core/domain/ack-advance-append-plan.js +160 -113
  56. package/dist/v2/durable-core/domain/blocked-node-builder.js +8 -2
  57. package/dist/v2/durable-core/domain/blocking-decision.d.ts +2 -0
  58. package/dist/v2/durable-core/domain/blocking-decision.js +29 -12
  59. package/dist/v2/durable-core/domain/bundle-builder.d.ts +1 -0
  60. package/dist/v2/durable-core/domain/bundle-builder.js +1 -1
  61. package/dist/v2/durable-core/domain/bundle-validator.js +3 -2
  62. package/dist/v2/durable-core/domain/decision-trace-builder.js +7 -9
  63. package/dist/v2/durable-core/domain/function-definition-expander.js +1 -3
  64. package/dist/v2/durable-core/domain/gap-builder.js +2 -1
  65. package/dist/v2/durable-core/domain/observation-builder.js +2 -1
  66. package/dist/v2/durable-core/domain/outputs.d.ts +2 -1
  67. package/dist/v2/durable-core/domain/outputs.js +3 -2
  68. package/dist/v2/durable-core/domain/reason-model.d.ts +1 -1
  69. package/dist/v2/durable-core/domain/reason-model.js +4 -9
  70. package/dist/v2/durable-core/domain/validation-criteria-validator.js +2 -2
  71. package/dist/v2/durable-core/domain/validation-event-builder.js +4 -6
  72. package/dist/v2/durable-core/domain/validation-loader.js +2 -1
  73. package/dist/v2/durable-core/domain/validation-requirements-extractor.js +12 -18
  74. package/dist/v2/durable-core/encoding/base32-lower.d.ts +13 -1
  75. package/dist/v2/durable-core/encoding/base32-lower.js +13 -3
  76. package/dist/v2/durable-core/encoding/hex-to-bytes.d.ts +6 -0
  77. package/dist/v2/durable-core/encoding/hex-to-bytes.js +19 -0
  78. package/dist/v2/durable-core/ids/attempt-id-derivation.d.ts +6 -1
  79. package/dist/v2/durable-core/ids/attempt-id-derivation.js +9 -19
  80. package/dist/v2/durable-core/ids/event-ids.d.ts +9 -0
  81. package/dist/v2/durable-core/ids/event-ids.js +18 -0
  82. package/dist/v2/durable-core/ids/index.d.ts +13 -33
  83. package/dist/v2/durable-core/ids/index.js +22 -63
  84. package/dist/v2/durable-core/ids/session-ids.d.ts +9 -0
  85. package/dist/v2/durable-core/ids/session-ids.js +18 -0
  86. package/dist/v2/durable-core/ids/snapshot-ids.d.ts +6 -0
  87. package/dist/v2/durable-core/ids/snapshot-ids.js +10 -0
  88. package/dist/v2/durable-core/ids/token-ids.d.ts +3 -0
  89. package/dist/v2/durable-core/ids/token-ids.js +6 -0
  90. package/dist/v2/durable-core/ids/workflow-hash-ref.d.ts +3 -0
  91. package/dist/v2/durable-core/ids/workflow-hash-ref.js +5 -4
  92. package/dist/v2/durable-core/ids/workflow-ids.d.ts +11 -0
  93. package/dist/v2/durable-core/ids/workflow-ids.js +21 -0
  94. package/dist/v2/durable-core/lib/utf8-byte-length.d.ts +1 -0
  95. package/dist/v2/durable-core/lib/utf8-byte-length.js +6 -0
  96. package/dist/v2/durable-core/schemas/artifacts/loop-control.js +2 -1
  97. package/dist/v2/durable-core/schemas/execution-snapshot/blocked-snapshot.d.ts +24 -24
  98. package/dist/v2/durable-core/schemas/execution-snapshot/blocked-snapshot.js +5 -7
  99. package/dist/v2/durable-core/schemas/execution-snapshot/execution-snapshot.v1.d.ts +180 -180
  100. package/dist/v2/durable-core/schemas/export-bundle/index.d.ts +282 -287
  101. package/dist/v2/durable-core/schemas/export-bundle/index.js +0 -8
  102. package/dist/v2/durable-core/schemas/lib/dedupe-key.d.ts +9 -1
  103. package/dist/v2/durable-core/schemas/lib/dedupe-key.js +4 -3
  104. package/dist/v2/durable-core/schemas/lib/utf8-byte-length.d.ts +1 -0
  105. package/dist/v2/durable-core/schemas/lib/utf8-byte-length.js +6 -0
  106. package/dist/v2/durable-core/schemas/session/blockers.d.ts +305 -0
  107. package/dist/v2/durable-core/schemas/session/blockers.js +80 -0
  108. package/dist/v2/durable-core/schemas/session/dag-topology.d.ts +77 -0
  109. package/dist/v2/durable-core/schemas/session/dag-topology.js +45 -0
  110. package/dist/v2/durable-core/schemas/session/events.d.ts +36 -36
  111. package/dist/v2/durable-core/schemas/session/events.js +11 -182
  112. package/dist/v2/durable-core/schemas/session/gaps.d.ts +211 -0
  113. package/dist/v2/durable-core/schemas/session/gaps.js +37 -0
  114. package/dist/v2/durable-core/schemas/session/outputs.d.ts +148 -0
  115. package/dist/v2/durable-core/schemas/session/outputs.js +44 -0
  116. package/dist/v2/durable-core/schemas/session/validation-event.js +5 -7
  117. package/dist/v2/durable-core/tokens/token-codec.d.ts +1 -18
  118. package/dist/v2/durable-core/tokens/token-codec.js +0 -67
  119. package/dist/v2/durable-core/tokens/token-signer.d.ts +1 -8
  120. package/dist/v2/durable-core/tokens/token-signer.js +0 -43
  121. package/dist/v2/infra/local/base32/index.js +1 -23
  122. package/dist/v2/infra/local/bech32m/index.js +1 -1
  123. package/dist/v2/infra/local/data-dir/index.d.ts +7 -6
  124. package/dist/v2/infra/local/data-dir/index.js +3 -3
  125. package/dist/v2/infra/local/directory-listing/index.d.ts +8 -0
  126. package/dist/v2/infra/local/directory-listing/index.js +18 -0
  127. package/dist/v2/infra/local/fs/index.d.ts +1 -0
  128. package/dist/v2/infra/local/fs/index.js +3 -0
  129. package/dist/v2/infra/local/session-store/index.js +198 -182
  130. package/dist/v2/infra/local/session-summary-provider/index.d.ts +18 -0
  131. package/dist/v2/infra/local/session-summary-provider/index.js +144 -0
  132. package/dist/v2/infra/local/snapshot-store/index.js +2 -2
  133. package/dist/v2/ports/data-dir.port.d.ts +7 -6
  134. package/dist/v2/ports/directory-listing.port.d.ts +5 -0
  135. package/dist/v2/ports/directory-listing.port.js +2 -0
  136. package/dist/v2/ports/fs.port.d.ts +19 -7
  137. package/dist/v2/ports/session-event-log-store.port.d.ts +5 -2
  138. package/dist/v2/ports/session-summary-provider.port.d.ts +9 -0
  139. package/dist/v2/ports/session-summary-provider.port.js +2 -0
  140. package/dist/v2/projections/advance-outcomes.d.ts +1 -7
  141. package/dist/v2/projections/advance-outcomes.js +2 -1
  142. package/dist/v2/projections/artifacts.js +3 -2
  143. package/dist/v2/projections/capabilities.d.ts +1 -7
  144. package/dist/v2/projections/capabilities.js +2 -1
  145. package/dist/v2/projections/gaps.d.ts +1 -7
  146. package/dist/v2/projections/gaps.js +2 -1
  147. package/dist/v2/projections/node-outputs.d.ts +1 -7
  148. package/dist/v2/projections/node-outputs.js +4 -3
  149. package/dist/v2/projections/preferences.d.ts +1 -7
  150. package/dist/v2/projections/preferences.js +2 -1
  151. package/dist/v2/projections/projection-error.d.ts +7 -0
  152. package/dist/v2/projections/projection-error.js +2 -0
  153. package/dist/v2/projections/resume-ranking.d.ts +62 -0
  154. package/dist/v2/projections/resume-ranking.js +105 -0
  155. package/dist/v2/projections/run-context.d.ts +1 -7
  156. package/dist/v2/projections/run-context.js +4 -2
  157. package/dist/v2/projections/run-dag.d.ts +9 -9
  158. package/dist/v2/projections/run-dag.js +88 -65
  159. package/dist/v2/projections/run-status-signals.d.ts +1 -7
  160. package/dist/v2/projections/run-status-signals.js +3 -2
  161. package/dist/v2/usecases/enumerate-sessions.d.ts +9 -0
  162. package/dist/v2/usecases/enumerate-sessions.js +13 -0
  163. package/dist/v2/usecases/execution-session-gate.js +2 -5
  164. package/dist/v2/usecases/export-session.js +4 -2
  165. package/dist/v2/usecases/import-session.d.ts +3 -3
  166. package/dist/v2/usecases/resume-session.d.ts +4 -0
  167. package/dist/v2/usecases/resume-session.js +9 -0
  168. 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,32 +626,88 @@
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
691
+ },
692
+ "mcp/handlers/v2-resume.d.ts": {
693
+ "sha256": "d88f6c35bcaf946666c837b72fda3702a2ebab5e478eb90f7b4b672a0e5fa24f",
694
+ "bytes": 471
695
+ },
696
+ "mcp/handlers/v2-resume.js": {
697
+ "sha256": "b4ce6f9cc3dffef91ca7da2e428d659c4ff79ceaf984c87d672290215936db97",
698
+ "bytes": 2771
595
699
  },
596
700
  "mcp/handlers/v2-state-conversion.d.ts": {
597
- "sha256": "e8d70753ed1b83d9396864ef50929ba32cb008bda24bcb2ce624df24adb72570",
598
- "bytes": 1988
701
+ "sha256": "94bd06904ef58dd210ff17ffb75c2492beea8937eb06d99749e5d860c0e0d96b",
702
+ "bytes": 1733
599
703
  },
600
704
  "mcp/handlers/v2-state-conversion.js": {
601
- "sha256": "63007e8924ad607eeb7f8177b43505218f4b79ccc921daf6517d5d514462d112",
602
- "bytes": 5216
705
+ "sha256": "93110d8a27ca03c0f0936f5d817db4930323ada0ecaaa9cc1154e2c9f552f0fd",
706
+ "bytes": 4335
603
707
  },
604
708
  "mcp/handlers/v2-token-ops.d.ts": {
605
- "sha256": "2101c6f44398909b045adf0904dcec10448bb0fd69d85eab352488ee752959e0",
606
- "bytes": 1853
709
+ "sha256": "0403343468cd3835fb440b457e61050f13761ea60b23e3440ad0360b4ea07982",
710
+ "bytes": 1948
607
711
  },
608
712
  "mcp/handlers/v2-token-ops.js": {
609
713
  "sha256": "c786c2a8de7240989b2368762552373a2c3d397edd47122144c51e31a22d6203",
@@ -614,8 +718,8 @@
614
718
  "bytes": 397
615
719
  },
616
720
  "mcp/handlers/v2-workflow.js": {
617
- "sha256": "f0c28d26cc53079abd22143ebc2e39e197a5e6bf414fa83181d4293c3ce3d771",
618
- "bytes": 4899
721
+ "sha256": "ca2c4a36299d425e788eef4af042099eef7bf62d0ff8fc2a7308723a9a99f205",
722
+ "bytes": 5522
619
723
  },
620
724
  "mcp/handlers/workflow.d.ts": {
621
725
  "sha256": "050565039a20af3f7fc8311337ff4547438ecc59433e5744aacce8f203326774",
@@ -634,20 +738,20 @@
634
738
  "bytes": 7535
635
739
  },
636
740
  "mcp/output-schemas.d.ts": {
637
- "sha256": "ae6188036f2e379c9f5498f7256f658e5bdd5301024e7bd863d02ca3dfad9f41",
638
- "bytes": 43607
741
+ "sha256": "f18366a180449212d9a2b280dc9706f4f96a77ccead38bf11035c3859121fd84",
742
+ "bytes": 45137
639
743
  },
640
744
  "mcp/output-schemas.js": {
641
- "sha256": "3ad98beeb67c03622651e100e8a4c02374318e1967fa062335d6dda80664ad8e",
642
- "bytes": 10889
745
+ "sha256": "e7aeb43d06950e4a9ed1fa4ecd56418dc7eb32f54453634701b5dc39456eb3e8",
746
+ "bytes": 11565
643
747
  },
644
748
  "mcp/server.d.ts": {
645
749
  "sha256": "bec49b8d07e189a53db7100d2f0e1e84ffe03150f04e1b06908ee3282982b4a2",
646
750
  "bytes": 168
647
751
  },
648
752
  "mcp/server.js": {
649
- "sha256": "8c7afb047807dd5fcd461b813b7bc714ea375d0999dfe9a7c901bf1462798455",
650
- "bytes": 9940
753
+ "sha256": "37ab570be76b379a4076e78e5bc82a06b7ee1fc73d3d5010ad48b5650e54365a",
754
+ "bytes": 10631
651
755
  },
652
756
  "mcp/tool-description-provider.d.ts": {
653
757
  "sha256": "1d46abc3112e11b68e57197e846f5708293ec9b2281fa71a9124ee2aad71e41b",
@@ -662,8 +766,8 @@
662
766
  "bytes": 132
663
767
  },
664
768
  "mcp/tool-descriptions.js": {
665
- "sha256": "e5f98cd0791507b87b3d0883155e74aaf4a9f03fd17b795195f21835962bd4cf",
666
- "bytes": 15369
769
+ "sha256": "76d25a3a2bba38227ad199c4d1240769b6b14411ebecf965e9e00eaac2f2e01c",
770
+ "bytes": 16389
667
771
  },
668
772
  "mcp/tool-factory.d.ts": {
669
773
  "sha256": "0fe3c6b863b2d7aef0c3d659ff54f3a9ee8a0a3c2005b6565d2f8ad517bc7211",
@@ -678,28 +782,28 @@
678
782
  "bytes": 5976
679
783
  },
680
784
  "mcp/tools.js": {
681
- "sha256": "813dad3f02046e200d99c2228cbf53ad9de58a79e609356730c93b75903d4c01",
682
- "bytes": 8198
785
+ "sha256": "aa364f3e613fc61a39fc7336a723231da06852d92ec7840a95327aa370e42e1c",
786
+ "bytes": 8360
683
787
  },
684
788
  "mcp/types.d.ts": {
685
- "sha256": "9e29d5ae4ec1f80640f073f0d58b603158fe5b22897f44c1c77ed4abaef374f9",
686
- "bytes": 3638
789
+ "sha256": "564136878ad3e71300d5e82913590b1f43d3dfbafab36479c9a590853cd07a0a",
790
+ "bytes": 4050
687
791
  },
688
792
  "mcp/types.js": {
689
793
  "sha256": "0c12576fd0053115ff096fe26b38f77f1e830b7ec4781aaf94564827c4c9e81a",
690
794
  "bytes": 1253
691
795
  },
692
796
  "mcp/types/tool-description-types.d.ts": {
693
- "sha256": "41e31c87b6d5b2e0fb4b66b1e8fac3f74c9769c3ded8a26577804aeccb79ae7b",
694
- "bytes": 805
797
+ "sha256": "80984afa5283a0d651ff22c0c9b2d3ff14c85087aeaf735d306ae291d8cdfe4d",
798
+ "bytes": 823
695
799
  },
696
800
  "mcp/types/tool-description-types.js": {
697
- "sha256": "689e74ea09e25e51de6020e42de42c37965e55980635d8739fc9ad19ba341955",
698
- "bytes": 777
801
+ "sha256": "40c1e5f76edcbfbdf18f203dae2f295cce191b6af670436aeff5bc65d74d1a6b",
802
+ "bytes": 799
699
803
  },
700
804
  "mcp/types/workflow-tool-edition.d.ts": {
701
- "sha256": "e7228be685155777e3035963056edd503e6660985fe7b5f17032402ca6582c8c",
702
- "bytes": 1494
805
+ "sha256": "ebde63f0ea9de501946d75e050c9676c03d08b77b27ad858d88600249e480f6c",
806
+ "bytes": 1513
703
807
  },
704
808
  "mcp/types/workflow-tool-edition.js": {
705
809
  "sha256": "2dfd26acd3da2c249b728e7fc48c7eab3dc675f786e7689dbdeec53c25589369",
@@ -718,16 +822,16 @@
718
822
  "bytes": 408
719
823
  },
720
824
  "mcp/v2/tool-registry.js": {
721
- "sha256": "719429102bc33c9e5bcd7cf38b0242ecc038484de4159811fbe9b0efa2ebc460",
722
- "bytes": 2623
825
+ "sha256": "4b192604ddafd986416865041db7e395d205da6fa1d398bec07646900f6ce28c",
826
+ "bytes": 3078
723
827
  },
724
828
  "mcp/v2/tools.d.ts": {
725
- "sha256": "8fba15da4a60a46ed803046f9b61ea0b8947967880563562473d8a87de68d27c",
726
- "bytes": 3600
829
+ "sha256": "5da50237fcbce6240737441d134c8070256a23649b387d5c3438b41b2705905e",
830
+ "bytes": 4156
727
831
  },
728
832
  "mcp/v2/tools.js": {
729
- "sha256": "93f33152aebe0cbeb92daa727a3dc43ccb3f4cc1001e7564fdd7b31ee78b2475",
730
- "bytes": 5743
833
+ "sha256": "5c9b958f1a9eb609557ed5867fc9ea131a2a0a4aaf52ff05a38246dffe2b359d",
834
+ "bytes": 6435
731
835
  },
732
836
  "mcp/validation/bounded-json.d.ts": {
733
837
  "sha256": "82203ac6123d5c6989606c3b5405aaea99ab829c8958835f9ae3ba45b8bc8fd5",
@@ -1050,20 +1154,20 @@
1050
1154
  "bytes": 447
1051
1155
  },
1052
1156
  "v2/durable-core/constants.d.ts": {
1053
- "sha256": "2ed1fac01adbf4fd72f09d6b83ac86ce4a0e04dfb08ecbf725ed05721caa4b5a",
1054
- "bytes": 1001
1157
+ "sha256": "73121ae0a507f2ceb073c29e5f156e7958db47a47a034589c7534baa7769faa9",
1158
+ "bytes": 3511
1055
1159
  },
1056
1160
  "v2/durable-core/constants.js": {
1057
- "sha256": "2d6621470da3e3014d5c25598f5d5b39b66b1ff518d0976f7513c452bac27afd",
1058
- "bytes": 1537
1161
+ "sha256": "67a2be5aa35498610cd199edec0f6558fef6efbdd0739e53c53f1f9198d66067",
1162
+ "bytes": 3453
1059
1163
  },
1060
1164
  "v2/durable-core/domain/ack-advance-append-plan.d.ts": {
1061
- "sha256": "858e57b145ddb908fdddcf923e4ea2343f44f6d771dafe5c942aeca9dc8a2264",
1062
- "bytes": 1535
1165
+ "sha256": "957549bbdeec71cc36fee8e39ed3aca33c6e8110856d43f16ec3f4e4cfb28325",
1166
+ "bytes": 1745
1063
1167
  },
1064
1168
  "v2/durable-core/domain/ack-advance-append-plan.js": {
1065
- "sha256": "1ab1f71ad005cf2183491aedf20fa5476d06ce18c05ec271f3d98367728bdad2",
1066
- "bytes": 6531
1169
+ "sha256": "362bff69902fe67393c64001c175c7f38560277132320cfcc5d711f08b2d5920",
1170
+ "bytes": 7853
1067
1171
  },
1068
1172
  "v2/durable-core/domain/artifact-contract-validator.d.ts": {
1069
1173
  "sha256": "262d667fb49fc68a5a6db9f60d4a50c15b9e45ba9ef5980d5b2036a29582eac8",
@@ -1078,32 +1182,32 @@
1078
1182
  "bytes": 880
1079
1183
  },
1080
1184
  "v2/durable-core/domain/blocked-node-builder.js": {
1081
- "sha256": "b69e48b21273be6534fc04d37780e0a2eb9a95f24e578f84ab7759966b73886c",
1082
- "bytes": 3734
1185
+ "sha256": "e07b0fee68be1b9ce653f990cbe0dfde767765915c093a540a53448ceb0aa3fd",
1186
+ "bytes": 4011
1083
1187
  },
1084
1188
  "v2/durable-core/domain/blocking-decision.d.ts": {
1085
- "sha256": "6540ff9a947ad8a661984732c465f7051db8960acbda55c9aa17cbf0bbf3950d",
1086
- "bytes": 1148
1189
+ "sha256": "dd32c4354dd710f94629833e91c5f83cd316212116d63fac1305d7336d4ce353",
1190
+ "bytes": 1186
1087
1191
  },
1088
1192
  "v2/durable-core/domain/blocking-decision.js": {
1089
- "sha256": "f3c86be68aaa045c57c942459031a72df2b2d514e32a57905c1a57f8374e947f",
1090
- "bytes": 1718
1193
+ "sha256": "a85277cc35cfa48e2f2e23bd958dce4431d21e29b8eb152d0dc4d88bfa67e556",
1194
+ "bytes": 2124
1091
1195
  },
1092
1196
  "v2/durable-core/domain/bundle-builder.d.ts": {
1093
- "sha256": "4038983872901590c2aaaa6a27ad2af2f381e2816627f01f8d4276435c8c8a87",
1094
- "bytes": 1221
1197
+ "sha256": "cb08b33f82f7cab8ef1b5f441a531886a4e1d0fdff69105b121089dc2e790357",
1198
+ "bytes": 1254
1095
1199
  },
1096
1200
  "v2/durable-core/domain/bundle-builder.js": {
1097
- "sha256": "f5422dda0c2a6591d7adc6460be49eb3967298658b51ebf0afd4f041a5395305",
1098
- "bytes": 3468
1201
+ "sha256": "d5d5406b9aa7f10d5af5b24bd900d3d56b14cacf3dcaa9af112c0a7f299720bf",
1202
+ "bytes": 3459
1099
1203
  },
1100
1204
  "v2/durable-core/domain/bundle-validator.d.ts": {
1101
1205
  "sha256": "549df7b80ab5c2adcdb7c14e2ae7c668ca3531dfd53aab32bdd364180ef4cecd",
1102
1206
  "bytes": 334
1103
1207
  },
1104
1208
  "v2/durable-core/domain/bundle-validator.js": {
1105
- "sha256": "b68d6fbbbe5bbb207d566118f9d7080ce39f51ba3eb8568a588861ef5639341c",
1106
- "bytes": 5925
1209
+ "sha256": "cb06a60d9aa3ec93f3a1a991063c83a2d44bf751865b22f9fbc5f7a14cdf313f",
1210
+ "bytes": 6024
1107
1211
  },
1108
1212
  "v2/durable-core/domain/context-merge.d.ts": {
1109
1213
  "sha256": "e3068d49237d2ae351cf88c6829bf612dc7ced6f726b618e7f8aeb7462d34256",
@@ -1118,24 +1222,24 @@
1118
1222
  "bytes": 1520
1119
1223
  },
1120
1224
  "v2/durable-core/domain/decision-trace-builder.js": {
1121
- "sha256": "37699436cfd981a3ebfa2abfe9906623d5666fd6671473d76520f14c62efad61",
1122
- "bytes": 3602
1225
+ "sha256": "011f3155612d782c8877238893e53ac3c30962596173202dcbf1a1c4f04932a0",
1226
+ "bytes": 3711
1123
1227
  },
1124
1228
  "v2/durable-core/domain/function-definition-expander.d.ts": {
1125
1229
  "sha256": "2720e7c4dfbd9ec0cdf75eb4384fdbea18d4430aeae7f13d9215f0e5e4980468",
1126
1230
  "bytes": 687
1127
1231
  },
1128
1232
  "v2/durable-core/domain/function-definition-expander.js": {
1129
- "sha256": "ee0727cd5765f6b34893e77a31e148a88889d5b8d43ee28e615243763fa0b8d8",
1130
- "bytes": 2626
1233
+ "sha256": "866a509d0045e6f29fed6139af4f24f9aab5082ea3936a0be5cc70fa60091e15",
1234
+ "bytes": 2574
1131
1235
  },
1132
1236
  "v2/durable-core/domain/gap-builder.d.ts": {
1133
1237
  "sha256": "e8069d47eb586d7f9e986df487d0e8ee7affbfbc60ebff5df437fb7bd647c952",
1134
1238
  "bytes": 620
1135
1239
  },
1136
1240
  "v2/durable-core/domain/gap-builder.js": {
1137
- "sha256": "7d7869dad8d681ef15d1d302e9ed49be2286f807d9cf8163e7c3396ed5df83ce",
1138
- "bytes": 833
1241
+ "sha256": "2e01a0c1842cd30d02726a4ab46d0a9fcc5b4c5fd30d98334eb6b68bef56b2ef",
1242
+ "bytes": 908
1139
1243
  },
1140
1244
  "v2/durable-core/domain/loop-control-evaluator.d.ts": {
1141
1245
  "sha256": "8fd92ad809a19a00a856374abb5a3e3cc8cbfe7c4a26fa28bc2994294d0bac2e",
@@ -1166,16 +1270,16 @@
1166
1270
  "bytes": 605
1167
1271
  },
1168
1272
  "v2/durable-core/domain/observation-builder.js": {
1169
- "sha256": "473acd17a305b8b871f783047206c33abeaa1bd4bb50a22aea8bc7ac83a08705",
1170
- "bytes": 1470
1273
+ "sha256": "b1576b4274a07d89a0535a27506fbd5cbe9daffc021a78a1d202ade918d75c19",
1274
+ "bytes": 1569
1171
1275
  },
1172
1276
  "v2/durable-core/domain/outputs.d.ts": {
1173
- "sha256": "a81de0e210de9ca70b2a12998f226c2ba4396e7e5a484295c12bda81546995bf",
1174
- "bytes": 434
1277
+ "sha256": "adc32e4b86c8036eac61096fe83371140c7de140db414227041a8854435f8f54",
1278
+ "bytes": 485
1175
1279
  },
1176
1280
  "v2/durable-core/domain/outputs.js": {
1177
- "sha256": "cce2a664e516e5e44282e66fd2d9318d27bc50c6157c20a236b313c4a14268a2",
1178
- "bytes": 835
1281
+ "sha256": "f1ba9bbe4d6bcbb6a9e6701f2abe0ae26f93924c4a1e401eb02c2ca214437082",
1282
+ "bytes": 942
1179
1283
  },
1180
1284
  "v2/durable-core/domain/prompt-renderer.d.ts": {
1181
1285
  "sha256": "dd9854d489a03ac57975dd1ecee6e73a4bcc8b78e61c5cd5b394307aab708a7b",
@@ -1186,12 +1290,12 @@
1186
1290
  "bytes": 8638
1187
1291
  },
1188
1292
  "v2/durable-core/domain/reason-model.d.ts": {
1189
- "sha256": "508e4934e7bdafd34df3990d827e242e4af75a16f80ae23a901f6cf15afb053e",
1190
- "bytes": 3567
1293
+ "sha256": "6b32c3504cb35ca382e369b4eaf698f1c469be01448215aeab7ce35e3c2ff550",
1294
+ "bytes": 3585
1191
1295
  },
1192
1296
  "v2/durable-core/domain/reason-model.js": {
1193
- "sha256": "a39fa45d39e3fcba3fdae483c6afe24ed4d62b500586639e3fe24d9286079a49",
1194
- "bytes": 11035
1297
+ "sha256": "8042a61a9ef938309832bb2ec47e2b370cc3be10c9de76922393bedd01417449",
1298
+ "bytes": 10946
1195
1299
  },
1196
1300
  "v2/durable-core/domain/recap-recovery.d.ts": {
1197
1301
  "sha256": "82e7b20a22d409f729ccf79d345c00a7e27f1898a465dfca4cd789ff7766a3d6",
@@ -1222,56 +1326,96 @@
1222
1326
  "bytes": 948
1223
1327
  },
1224
1328
  "v2/durable-core/domain/validation-criteria-validator.js": {
1225
- "sha256": "702d0eace7fdb69e57d02aef284fc613628341525b699eff43317dcc5a41da43",
1226
- "bytes": 2167
1329
+ "sha256": "933651ba042c86e22d7b65820f97a54d2bcec009efa2856aea9649b03a44ee50",
1330
+ "bytes": 2161
1227
1331
  },
1228
1332
  "v2/durable-core/domain/validation-event-builder.d.ts": {
1229
1333
  "sha256": "58cf3487f53e3a5e255871d94096133f1baf7f12ab3825cdc1e9789493677134",
1230
1334
  "bytes": 923
1231
1335
  },
1232
1336
  "v2/durable-core/domain/validation-event-builder.js": {
1233
- "sha256": "10d9d198b831c345d9e0270f42a9937dadb0b88cf12a003f36357426a01df7c2",
1234
- "bytes": 4402
1337
+ "sha256": "e786f1f1991012032b9e45071679bc47bad21d422027e65701fb93e4035e6c01",
1338
+ "bytes": 4479
1235
1339
  },
1236
1340
  "v2/durable-core/domain/validation-loader.d.ts": {
1237
1341
  "sha256": "3bd9bf39bb656190c631f5c0ed87e87b597cc01ac11654283427e22551b9c816",
1238
1342
  "bytes": 518
1239
1343
  },
1240
1344
  "v2/durable-core/domain/validation-loader.js": {
1241
- "sha256": "278c49a3fc0498ceeb9f74426a92effdac5f4e89027c65068b1071265ce74562",
1242
- "bytes": 768
1345
+ "sha256": "a0eb1d9308d2e2a65f2d3528fe9cad8b878558f992b657e67dc997ae0302c067",
1346
+ "bytes": 843
1243
1347
  },
1244
1348
  "v2/durable-core/domain/validation-requirements-extractor.d.ts": {
1245
1349
  "sha256": "b1fc2178fc7cbea52fe32400c186c6a9c40622c148a788379e89e9b44c4838f1",
1246
1350
  "bytes": 188
1247
1351
  },
1248
1352
  "v2/durable-core/domain/validation-requirements-extractor.js": {
1249
- "sha256": "dc37e599678b4a7faf88759bd9e7a1b9622b98656dfe4731ddda74e48436857e",
1250
- "bytes": 1880
1353
+ "sha256": "2f7f1b5dd4fc01c5a2464c0ae348308f17ec1be1da85fd09c2d8aded9df53ee2",
1354
+ "bytes": 1732
1251
1355
  },
1252
1356
  "v2/durable-core/encoding/base32-lower.d.ts": {
1253
- "sha256": "1ae6d44917eaf2119286705dcc7240b9bcf7c5e965b780ce52aa17f3b893ad4f",
1254
- "bytes": 252
1357
+ "sha256": "43a93d86413c2e8831b6ef4ced84457095375735d8c5578ca73d7b987ba9ec84",
1358
+ "bytes": 627
1255
1359
  },
1256
1360
  "v2/durable-core/encoding/base32-lower.js": {
1257
- "sha256": "f3a36370e0dc8dcdc3becacb73ebded715d678b9aacab2dc626a8fa0ed84766f",
1258
- "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
1259
1371
  },
1260
1372
  "v2/durable-core/ids/attempt-id-derivation.d.ts": {
1261
- "sha256": "baee295f114d8d4a74e9fa529e7c72d458a7c7244f50fad9ebbaea06c57dfe92",
1262
- "bytes": 207
1373
+ "sha256": "abdfd0b2a8a95ea8145000a3c92179b861a36188de6624e7bfad6dcd264dab9e",
1374
+ "bytes": 417
1263
1375
  },
1264
1376
  "v2/durable-core/ids/attempt-id-derivation.js": {
1265
- "sha256": "c13da44f23890d85edfb64a471f4f4817e973a63b41287d79144a3c9c6a5dcea",
1266
- "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
1267
1387
  },
1268
1388
  "v2/durable-core/ids/index.d.ts": {
1269
- "sha256": "483055c4c668a7bf2901b0c48c14c61878316ec75727702c95edce8f2ef9f0b8",
1270
- "bytes": 2066
1389
+ "sha256": "690ebfa504a185af817171c34e7270020c748e775c000ca15f5ec7a35d8d3872",
1390
+ "bytes": 991
1271
1391
  },
1272
1392
  "v2/durable-core/ids/index.js": {
1273
- "sha256": "8bf9f85fc33cd113915be097f67ec4bfae63d5e774bd2d352ee89cd327a6e43d",
1274
- "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
1275
1419
  },
1276
1420
  "v2/durable-core/ids/with-healthy-session-lock.d.ts": {
1277
1421
  "sha256": "dc1812850b9ce69c0135d575b0994ac4fa7b874bf9db7a1838b6a3390ef31ae2",
@@ -1282,12 +1426,28 @@
1282
1426
  "bytes": 77
1283
1427
  },
1284
1428
  "v2/durable-core/ids/workflow-hash-ref.d.ts": {
1285
- "sha256": "b5f05431b91251c21cf47a0cf7ed8aff5016f3de6274ebef009a1a36a05b21e0",
1286
- "bytes": 350
1429
+ "sha256": "3341101296ed1fc63b23f94b92d6997839c8c4c2f6690984b00f8ac496063b98",
1430
+ "bytes": 420
1287
1431
  },
1288
1432
  "v2/durable-core/ids/workflow-hash-ref.js": {
1289
- "sha256": "c4f47a488858c0029bdf44b8817eebc21fd1b4f4c618af26992d21b8fff02c9b",
1290
- "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
1291
1451
  },
1292
1452
  "v2/durable-core/projections/snapshot-state.d.ts": {
1293
1453
  "sha256": "0ce739459968dad16fb135730d8ea70fa04ce24539b74982801cc8eec01a6130",
@@ -1310,8 +1470,8 @@
1310
1470
  "bytes": 2743
1311
1471
  },
1312
1472
  "v2/durable-core/schemas/artifacts/loop-control.js": {
1313
- "sha256": "9cd66b779720dec397ee484176015abbf9f6e813650a423cab241f50b30a028d",
1314
- "bytes": 2018
1473
+ "sha256": "9d8277a83fb4c6e2e07019feab437853c2eccd94b7e6958eda6500fb064d5f6e",
1474
+ "bytes": 2099
1315
1475
  },
1316
1476
  "v2/durable-core/schemas/compiled-workflow/index.d.ts": {
1317
1477
  "sha256": "5146bd86e5785117e260276775a3783871c141425a03f4643bf421a00e5b9bf2",
@@ -1322,16 +1482,16 @@
1322
1482
  "bytes": 1350
1323
1483
  },
1324
1484
  "v2/durable-core/schemas/execution-snapshot/blocked-snapshot.d.ts": {
1325
- "sha256": "b6ec952fb1590417e45e346a958f91aa228d97e6be5006d3aa8cec94ca0d9222",
1326
- "bytes": 23007
1485
+ "sha256": "63e6bdb43c77740935fb8bf49dfd96d5d783a01ae5ce61c0d0f9d61df8e838f6",
1486
+ "bytes": 23179
1327
1487
  },
1328
1488
  "v2/durable-core/schemas/execution-snapshot/blocked-snapshot.js": {
1329
- "sha256": "9f58b2eaa0f5a3c3344d71d3d39ed02cb2e9011b66b5a5c0efb1b3e4ae7fe62d",
1330
- "bytes": 4297
1489
+ "sha256": "9ad261ef17b2d0652ca7387205f2d1ff66203c54b31dc82c08ef8c9762d2fe7b",
1490
+ "bytes": 4364
1331
1491
  },
1332
1492
  "v2/durable-core/schemas/execution-snapshot/execution-snapshot.v1.d.ts": {
1333
- "sha256": "0248c48291361944db27b261138923569407e7fb3afea21cc51fb35060f5435f",
1334
- "bytes": 185298
1493
+ "sha256": "1515649328e6a00fe00053b7fc5aaa5a6dfa325e8c1ea54e99cd44fc54c73280",
1494
+ "bytes": 186498
1335
1495
  },
1336
1496
  "v2/durable-core/schemas/execution-snapshot/execution-snapshot.v1.js": {
1337
1497
  "sha256": "ec330ed72b7d5cc13ed4e000fd398f4c3c0f14e4d3e02ee4f59f10383377be94",
@@ -1354,12 +1514,12 @@
1354
1514
  "bytes": 2983
1355
1515
  },
1356
1516
  "v2/durable-core/schemas/export-bundle/index.d.ts": {
1357
- "sha256": "1bb957237e5275d6a53ddd666a1b40723649301230b8a1a29173c7c052a3f2c7",
1358
- "bytes": 465577
1517
+ "sha256": "856a1e4bcaa17ceb03bdd227b6007fac5221bd7063e0cd83a4eaddb43b1d3523",
1518
+ "bytes": 466802
1359
1519
  },
1360
1520
  "v2/durable-core/schemas/export-bundle/index.js": {
1361
- "sha256": "387b1444f81eb951ab3b66874b1e7407d41345ee60ef4e6dd43f8b4d84d97343",
1362
- "bytes": 4887
1521
+ "sha256": "6e3566b2d05ea6302bbf4d311b8ec3e94725a8523834efe7670a79e7bd7dc40d",
1522
+ "bytes": 4609
1363
1523
  },
1364
1524
  "v2/durable-core/schemas/lib/decision-trace-ref.d.ts": {
1365
1525
  "sha256": "7ca487c95669595193a5cadad35c15cb739712060d34c225e347ca8a791b4c42",
@@ -1370,12 +1530,12 @@
1370
1530
  "bytes": 1632
1371
1531
  },
1372
1532
  "v2/durable-core/schemas/lib/dedupe-key.d.ts": {
1373
- "sha256": "a27700de1c2f9ef2557f199229c3b586f0186b00ac5408d7595bc0d12e2242cb",
1374
- "bytes": 467
1533
+ "sha256": "990634582387e57bd6e24306c7c4d01da1c904ea23b9fb88b75b635dea2c8799",
1534
+ "bytes": 724
1375
1535
  },
1376
1536
  "v2/durable-core/schemas/lib/dedupe-key.js": {
1377
- "sha256": "d92a9e9d82ca19f4f08ca514c23e095759b9818aab84a5e3e5badbe36c51a8a4",
1378
- "bytes": 1172
1537
+ "sha256": "b150e118820082f3672f410b49d01dcbd867e38e97f40f0033e934a51222b326",
1538
+ "bytes": 1337
1379
1539
  },
1380
1540
  "v2/durable-core/schemas/lib/utf8-bounded-string.d.ts": {
1381
1541
  "sha256": "215179bd1d67f3c64adf263f0ec31078f5b1462048587f6de9e4e16c8f0a3088",
@@ -1385,13 +1545,45 @@
1385
1545
  "sha256": "090d11ce7470d2b4a5298bb1f0c357e7aa8d8d98635e3d55314e7043e4531a4f",
1386
1546
  "bytes": 521
1387
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
+ },
1388
1572
  "v2/durable-core/schemas/session/events.d.ts": {
1389
- "sha256": "534f73ede4fe136c3d0bc0bac6c4c87797377761ddd54d4068c87ecd1d1b9f13",
1390
- "bytes": 72113
1573
+ "sha256": "004bbfe44da4ec264aea85d68f3a078d11d805f3507a6fce07b4092cb44a1a70",
1574
+ "bytes": 72218
1391
1575
  },
1392
1576
  "v2/durable-core/schemas/session/events.js": {
1393
- "sha256": "c43234b957ee48876a2009dbfe9e37f01d61f23a409601c4d8baf4c5c91d94f8",
1394
- "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
1395
1587
  },
1396
1588
  "v2/durable-core/schemas/session/index.d.ts": {
1397
1589
  "sha256": "f4f500d33d212760f480d91fafd4474f7b12f9239a6c5e9c2d80d0fe96207b65",
@@ -1409,6 +1601,14 @@
1409
1601
  "sha256": "a825fae7d8bcc8b5cbdacebb2e089a4b47cb625046a60b573990a0a08df27bad",
1410
1602
  "bytes": 1526
1411
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
+ },
1412
1612
  "v2/durable-core/schemas/session/preferences.d.ts": {
1413
1613
  "sha256": "763697078bda9fa8fb7a499978a94d85d1852f0fd8fc07af295ac895d25dba66",
1414
1614
  "bytes": 401
@@ -1430,8 +1630,8 @@
1430
1630
  "bytes": 2206
1431
1631
  },
1432
1632
  "v2/durable-core/schemas/session/validation-event.js": {
1433
- "sha256": "fbb6dcb55cfe721a388648cb63d92c575bf16ca986bcd68923241775a84d2874",
1434
- "bytes": 2060
1633
+ "sha256": "b079e0d720c28abb2ac4c1844a1da7aa95ace7cc8b04213964dab9fccb3e6be9",
1634
+ "bytes": 2195
1435
1635
  },
1436
1636
  "v2/durable-core/tokens/binary-payload.d.ts": {
1437
1637
  "sha256": "ec1b0294c87871600ab088ae846dc508c5ad709c92c8fda95be8aaafb86fb53d",
@@ -1474,28 +1674,28 @@
1474
1674
  "bytes": 1096
1475
1675
  },
1476
1676
  "v2/durable-core/tokens/token-codec.d.ts": {
1477
- "sha256": "a92d41cfecbbea2bf243a46ebc35651f5d841da8a4f97ea987f1d2fe66ce854c",
1478
- "bytes": 2172
1677
+ "sha256": "fbb6a404c6d60afde5cfa33c9feecb54354658aa7533026aaa6c3c7755582d38",
1678
+ "bytes": 1272
1479
1679
  },
1480
1680
  "v2/durable-core/tokens/token-codec.js": {
1481
- "sha256": "ff0add14ad869a259a4e9f7c80776efbb0376841cb595a8b3d004863cf12ed12",
1482
- "bytes": 7485
1681
+ "sha256": "76cfd18c7cde51e4f4ae2360c483b8b79cd1bc4af37b7ff58c4cace7a381d12f",
1682
+ "bytes": 4302
1483
1683
  },
1484
1684
  "v2/durable-core/tokens/token-signer.d.ts": {
1485
- "sha256": "95803efa519d20079b313c065dcb3e890fd0c9d16892e7ecd6bc8821f0c7e106",
1486
- "bytes": 1887
1685
+ "sha256": "30b3da7d6463b8ec10ff91155fe33dd77ce8789df1159a287f0e46fdc42e1407",
1686
+ "bytes": 1051
1487
1687
  },
1488
1688
  "v2/durable-core/tokens/token-signer.js": {
1489
- "sha256": "6567004720c38213f64f2dd5850631278ffbcfaea287152b571bf7fab9575d66",
1490
- "bytes": 5855
1689
+ "sha256": "15a8f8b7dac5ab4449f389c75ce7c13a163f639ade481c3890a7f527d23f500d",
1690
+ "bytes": 3441
1491
1691
  },
1492
1692
  "v2/infra/local/base32/index.d.ts": {
1493
1693
  "sha256": "054ad32b03c22e9c797196024f2c2a43111f682ee4ab15f82ef3b9313c392723",
1494
1694
  "bytes": 300
1495
1695
  },
1496
1696
  "v2/infra/local/base32/index.js": {
1497
- "sha256": "74f61cc73d04f4e9048d02080a7707a656645bd00ad46c0226526580a34d6c78",
1498
- "bytes": 1723
1697
+ "sha256": "3ebd1f70dcbd90b848c787f3c72a71a2d481ae8372afe0490f534f093d896db3",
1698
+ "bytes": 863
1499
1699
  },
1500
1700
  "v2/infra/local/base64url/index.d.ts": {
1501
1701
  "sha256": "42cb6393959b47242cb6363f3336952391b803847b1e022c8ff16e103da4088b",
@@ -1510,8 +1710,8 @@
1510
1710
  "bytes": 425
1511
1711
  },
1512
1712
  "v2/infra/local/bech32m/index.js": {
1513
- "sha256": "58a9c91d4fe8c7974186ee007a36ce7c1bd7908b2600100ce3f06b3ecca80efc",
1514
- "bytes": 2121
1713
+ "sha256": "77e06962d87ab1bea526bada0ace81ee85fa5437f2dbbcf45d4f9cc089f3c8c7",
1714
+ "bytes": 2097
1515
1715
  },
1516
1716
  "v2/infra/local/crypto/index.d.ts": {
1517
1717
  "sha256": "d2f6cc8e812bd4fb5c83e59f46c4b5588baa1bf33c029239d8162f8669a64370",
@@ -1522,20 +1722,28 @@
1522
1722
  "bytes": 457
1523
1723
  },
1524
1724
  "v2/infra/local/data-dir/index.d.ts": {
1525
- "sha256": "31a95a746737e88b354b33368880684454bfe8c3cdb02a21776509c3c6fd450b",
1526
- "bytes": 698
1725
+ "sha256": "71333d489f957d106c1cd81e477793f807cc8a58d6ccc240e2539448a880a856",
1726
+ "bytes": 817
1527
1727
  },
1528
1728
  "v2/infra/local/data-dir/index.js": {
1529
- "sha256": "02d0ad7e3b8c615c6fa3fead6698664d282b2375ea3fc8bd563c12cc7853691c",
1530
- "bytes": 3012
1729
+ "sha256": "a01efc77fc442dfb326c970cb31241886d832b3330255ee0360b28e5d632a78c",
1730
+ "bytes": 3036
1731
+ },
1732
+ "v2/infra/local/directory-listing/index.d.ts": {
1733
+ "sha256": "dbf0a610bf4871eec89cc39f218ebb5267c695ccd8524613868abf5aa79d8d4a",
1734
+ "bytes": 447
1735
+ },
1736
+ "v2/infra/local/directory-listing/index.js": {
1737
+ "sha256": "1930cb982b9034f46751a000011ea069b6e03becd898973afad4b74e6ebc1759",
1738
+ "bytes": 566
1531
1739
  },
1532
1740
  "v2/infra/local/fs/index.d.ts": {
1533
- "sha256": "d830aed74ebb3372ea5efa21ec96680cd188fc76dea6078286f5788b3736d2bf",
1534
- "bytes": 1252
1741
+ "sha256": "fe3f06badea2d62e9ade3954f716d0b7aa4778c4d49e5fb9f6f58db6d2e9429a",
1742
+ "bytes": 1323
1535
1743
  },
1536
1744
  "v2/infra/local/fs/index.js": {
1537
- "sha256": "97ce973a4bd48aa43e890fb18dc7b8c8b3f8451400539bf15b4c79f3680e2ba3",
1538
- "bytes": 7045
1745
+ "sha256": "05fcd1345b3f003c19a13ee8db4ef657f23815c253e4fa36fa4bd7092f0a0b68",
1746
+ "bytes": 7179
1539
1747
  },
1540
1748
  "v2/infra/local/hmac-sha256/index.d.ts": {
1541
1749
  "sha256": "dda3865510dfaf2f13947410d998da6ffecc9a2e728b3574f81e69d5db859815",
@@ -1590,8 +1798,16 @@
1590
1798
  "bytes": 1447
1591
1799
  },
1592
1800
  "v2/infra/local/session-store/index.js": {
1593
- "sha256": "53b9ee8545d99e23cfeecb12b39d202fc552c3e89de9fe71b5d1aaaf9afa6d95",
1594
- "bytes": 29559
1801
+ "sha256": "a9f23fcb1e2ce4a1d1ffb54552fc9bf9421562fee5cfbc089bd1a008aa4d2c70",
1802
+ "bytes": 28456
1803
+ },
1804
+ "v2/infra/local/session-summary-provider/index.d.ts": {
1805
+ "sha256": "8843c26694d12147c322a4ff1f220cef53774c1ea7087241cb6badd12a360fda",
1806
+ "bytes": 1069
1807
+ },
1808
+ "v2/infra/local/session-summary-provider/index.js": {
1809
+ "sha256": "5dadd21632795d624d0be4be1957329242df6c105ccf507e024e397ab3e63e7f",
1810
+ "bytes": 5728
1595
1811
  },
1596
1812
  "v2/infra/local/sha256/index.d.ts": {
1597
1813
  "sha256": "8a727b7e54a38275ca6f9f1b8730f97cfc0a212df035df1bdc58e716e6824230",
@@ -1606,8 +1822,8 @@
1606
1822
  "bytes": 1017
1607
1823
  },
1608
1824
  "v2/infra/local/snapshot-store/index.js": {
1609
- "sha256": "7d0dfadd804e83701289d5f00cf429851dae3b9bd1decb65c11341d6a138e911",
1610
- "bytes": 3159
1825
+ "sha256": "3e893a7290f23ad212b1957c3770414702a4202ba5a44a71fc0d28a3431cec76",
1826
+ "bytes": 3143
1611
1827
  },
1612
1828
  "v2/infra/local/time-clock/index.d.ts": {
1613
1829
  "sha256": "8f2f6107bbe7bf11a4edddded920cffccec51c4676f29ede7db9059763617d08",
@@ -1658,16 +1874,24 @@
1658
1874
  "bytes": 77
1659
1875
  },
1660
1876
  "v2/ports/data-dir.port.d.ts": {
1661
- "sha256": "4f958bb4b89a87ede17942800903db3c8c55faffea514472fa916aad578050c9",
1662
- "bytes": 467
1877
+ "sha256": "bfaca40462a3334b9e8fe7e7f7136d36e85e35405cc017a403e9670a28bbe3c8",
1878
+ "bytes": 580
1663
1879
  },
1664
1880
  "v2/ports/data-dir.port.js": {
1665
1881
  "sha256": "d43aa81f5bc89faa359e0f97c814ba25155591ff078fbb9bfd40f8c7c9683230",
1666
1882
  "bytes": 77
1667
1883
  },
1884
+ "v2/ports/directory-listing.port.d.ts": {
1885
+ "sha256": "3184229b7793bbd3100611c6308d33a96145c4dc63ba451d8c29ff507084e7b4",
1886
+ "bytes": 207
1887
+ },
1888
+ "v2/ports/directory-listing.port.js": {
1889
+ "sha256": "d43aa81f5bc89faa359e0f97c814ba25155591ff078fbb9bfd40f8c7c9683230",
1890
+ "bytes": 77
1891
+ },
1668
1892
  "v2/ports/fs.port.d.ts": {
1669
- "sha256": "e752765aa1154de19c720590410a370c3ae485d73363dd66cf9cc17fcf75c103",
1670
- "bytes": 1534
1893
+ "sha256": "7b0d36b7a1abbf6f3f7279a122fe623bfa5d8b18f9a600c191d536c0e93204f7",
1894
+ "bytes": 1991
1671
1895
  },
1672
1896
  "v2/ports/fs.port.js": {
1673
1897
  "sha256": "d43aa81f5bc89faa359e0f97c814ba25155591ff078fbb9bfd40f8c7c9683230",
@@ -1706,8 +1930,8 @@
1706
1930
  "bytes": 77
1707
1931
  },
1708
1932
  "v2/ports/session-event-log-store.port.d.ts": {
1709
- "sha256": "80743c9f579d6aad94c47eaae80617c7ab82d192148e6734dcea70ac902d1b86",
1710
- "bytes": 2000
1933
+ "sha256": "97838c9212ba1f07d779cfe57591bc2dcbad05567aab99ce9714aba12a26ad26",
1934
+ "bytes": 2070
1711
1935
  },
1712
1936
  "v2/ports/session-event-log-store.port.js": {
1713
1937
  "sha256": "d43aa81f5bc89faa359e0f97c814ba25155591ff078fbb9bfd40f8c7c9683230",
@@ -1721,6 +1945,14 @@
1721
1945
  "sha256": "d43aa81f5bc89faa359e0f97c814ba25155591ff078fbb9bfd40f8c7c9683230",
1722
1946
  "bytes": 77
1723
1947
  },
1948
+ "v2/ports/session-summary-provider.port.d.ts": {
1949
+ "sha256": "41861cb0e70ca81e0d931d9f504226c9c7361f59db21a8beab95c2b8ed13cb57",
1950
+ "bytes": 400
1951
+ },
1952
+ "v2/ports/session-summary-provider.port.js": {
1953
+ "sha256": "d43aa81f5bc89faa359e0f97c814ba25155591ff078fbb9bfd40f8c7c9683230",
1954
+ "bytes": 77
1955
+ },
1724
1956
  "v2/ports/sha256.port.d.ts": {
1725
1957
  "sha256": "2ca3e0558992a96614d005582e1f38435de4335df82f8231f69eabf191272022",
1726
1958
  "bytes": 145
@@ -1762,52 +1994,60 @@
1762
1994
  "bytes": 77
1763
1995
  },
1764
1996
  "v2/projections/advance-outcomes.d.ts": {
1765
- "sha256": "1c1283e2484b81c13428d6b4c80adb1ca079cf9b7c858cee8d178af1e0828e0f",
1766
- "bytes": 903
1997
+ "sha256": "79ac0bfe0a7aac47c9bc524db8e76744196eb6697049285c0ebf2b2c15eb54ce",
1998
+ "bytes": 758
1767
1999
  },
1768
2000
  "v2/projections/advance-outcomes.js": {
1769
- "sha256": "9397ad22fcec863d2f491d5d120ed2e40358dbd94117fa44f550444a1c7a672a",
1770
- "bytes": 886
2001
+ "sha256": "f756a8ef3780de29293d1117157d3dd573a6723dc6b15e29cb7be5fe86dd650f",
2002
+ "bytes": 974
1771
2003
  },
1772
2004
  "v2/projections/artifacts.d.ts": {
1773
2005
  "sha256": "1e62d7ba964a664ac7344749b769cf614b232ff7f5962d3dbdb4afda54f9f407",
1774
2006
  "bytes": 955
1775
2007
  },
1776
2008
  "v2/projections/artifacts.js": {
1777
- "sha256": "aa8b2328fd44ba36415e0cbd1feda6a0878760714a84593c674e0bd9990cd606",
1778
- "bytes": 1891
2009
+ "sha256": "e20ae7c41813de53701dc5993b4ead5e09af9eb724340dfd8d7a0b2670857217",
2010
+ "bytes": 2007
1779
2011
  },
1780
2012
  "v2/projections/capabilities.d.ts": {
1781
- "sha256": "2a1049c38dfd388fcbcb970b8d5b4914a38c974362c6102fc91244edd3ccac0f",
1782
- "bytes": 1156
2013
+ "sha256": "ee4c4bb728b5fc7343a43c9bb13a981a9bf0bd1b39e68ff8c866b4119012eac1",
2014
+ "bytes": 1011
1783
2015
  },
1784
2016
  "v2/projections/capabilities.js": {
1785
- "sha256": "6821faa07e120e6211252e308a3248fad450f520e0c949f8058a798dd60fdba0",
1786
- "bytes": 1242
2017
+ "sha256": "3a4b3168e0be478c378446a8eb8cf572051c0abc8a0d6b02f49859eaed7ff64d",
2018
+ "bytes": 1330
1787
2019
  },
1788
2020
  "v2/projections/gaps.d.ts": {
1789
- "sha256": "fda92508c65ba71717bb7a02ee8d3b8de0a3d67df10ba041315b61fa73c47ff2",
1790
- "bytes": 1137
2021
+ "sha256": "889421b067d41c2177b7f2f96f5c5f1e87f11698dc557b4c5549150cb3ebb964",
2022
+ "bytes": 992
1791
2023
  },
1792
2024
  "v2/projections/gaps.js": {
1793
- "sha256": "1e3aaacf4b35ec25c213040b3715cf5aa7efc9507393f5fee0b7de5ebd38a525",
1794
- "bytes": 1917
2025
+ "sha256": "e25b0e42de1472922f69505ccea5611df35bd7548f44e6ad9f27748f11958c6e",
2026
+ "bytes": 2005
1795
2027
  },
1796
2028
  "v2/projections/node-outputs.d.ts": {
1797
- "sha256": "bbf8a23c5a1006dd8d9b405e510b23ba5810a406ca9be876423a52b150143ad1",
1798
- "bytes": 1328
2029
+ "sha256": "f9eb6e2ae243084455b98252bea7a8ee0c866e646472bd4234682dd54db6436e",
2030
+ "bytes": 1183
1799
2031
  },
1800
2032
  "v2/projections/node-outputs.js": {
1801
- "sha256": "be1ce853c684f1ffa6289192578f5ab6bf45a2a113aa2a80843309331ada54d9",
1802
- "bytes": 3709
2033
+ "sha256": "72b9bfe1ec25245b4ce051960daef9e3003505d25465ab5989e1274ceece4b59",
2034
+ "bytes": 3881
1803
2035
  },
1804
2036
  "v2/projections/preferences.d.ts": {
1805
- "sha256": "d7447264a3b1184edc1000ff547eeeef882de64a97fe61611ae5f27db5d5f364",
1806
- "bytes": 1134
2037
+ "sha256": "7cd16a7c0aaa92ff10daf9780ed6b4b2214260ea86f3458af68a3c699ba5c8af",
2038
+ "bytes": 989
1807
2039
  },
1808
2040
  "v2/projections/preferences.js": {
1809
- "sha256": "2f769d3bf9c4bf45c95c793785c45df8803f52731b4ffaf57bef73df279da397",
1810
- "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
1811
2051
  },
1812
2052
  "v2/projections/projection-timing.d.ts": {
1813
2053
  "sha256": "90251745071420d9ce5789e04c924418f72a86a8b7a68fe6faf0393cef888d27",
@@ -1817,29 +2057,37 @@
1817
2057
  "sha256": "c8190e4899ba9695c7c7a9e58e872d4a56c90dcb4dfde659d6c2801a8cb895a7",
1818
2058
  "bytes": 732
1819
2059
  },
2060
+ "v2/projections/resume-ranking.d.ts": {
2061
+ "sha256": "50ef48d0b195f89f01c0051be453666e6a680e356ca9c328a754aced90ee8d7a",
2062
+ "bytes": 2337
2063
+ },
2064
+ "v2/projections/resume-ranking.js": {
2065
+ "sha256": "2cc54d484865507e65cc6202dfb7c42df4535e4cfd6faca6b0d9ce059852a8bc",
2066
+ "bytes": 4281
2067
+ },
1820
2068
  "v2/projections/run-context.d.ts": {
1821
- "sha256": "7bdc4b2bacfb4b42005b7a83d7ddaf8a8d414bed90b948c02dbeeacd741b31cc",
1822
- "bytes": 909
2069
+ "sha256": "a4d57470a435ac9860f60b3244d1b828853995027cd510d8da42762d21b2a687",
2070
+ "bytes": 764
1823
2071
  },
1824
2072
  "v2/projections/run-context.js": {
1825
- "sha256": "41429486096e791e7ee3c806a3432421179c9a1a0972380e7e89d584bab733d7",
1826
- "bytes": 1339
2073
+ "sha256": "7c1aeb42cc99f4794f72b3368e194fd7f996be9c53af74de431da38fa463a120",
2074
+ "bytes": 1466
1827
2075
  },
1828
2076
  "v2/projections/run-dag.d.ts": {
1829
- "sha256": "597061f3e9830fd8adf2c211208ba19a59d2a327de2c0ad301d102f7bbef08c9",
1830
- "bytes": 1536
2077
+ "sha256": "408d145ae8ace99bafb97bcc97cfcf716ef497dcaf8e12be78efa9d617d507a8",
2078
+ "bytes": 1530
1831
2079
  },
1832
2080
  "v2/projections/run-dag.js": {
1833
- "sha256": "2717047d48b201020d411c0b9fd47c0f8192aff4ffbb441dcfa52043a92b2cc1",
1834
- "bytes": 8031
2081
+ "sha256": "f52b630249f3c3a0ac8ab53a7f37167fda036fc1d14cfe461c02ddb65d9d4981",
2082
+ "bytes": 8873
1835
2083
  },
1836
2084
  "v2/projections/run-status-signals.d.ts": {
1837
- "sha256": "7af814efae31db0cb71747c7fe90724d3b196b681a724469455d7e2d51599f50",
1838
- "bytes": 1060
2085
+ "sha256": "078197dfebb1c0fe97577e1da3737dee2154757499dfecfdbdd3960df91f4a03",
2086
+ "bytes": 915
1839
2087
  },
1840
2088
  "v2/projections/run-status-signals.js": {
1841
- "sha256": "ec84bb24a85392d8ed2b720d79008d1f65db4d6cbd0d94a773260c30c7e2506a",
1842
- "bytes": 2042
2089
+ "sha256": "0c5c9841e27f271380aed866a093571bde61854ec5b27b75906291120dd0226e",
2090
+ "bytes": 2157
1843
2091
  },
1844
2092
  "v2/projections/session-health.d.ts": {
1845
2093
  "sha256": "0a7096bfc0d32eea9743c34a0b982e32f7eeec9e63ec7af10e27ec21be246630",
@@ -1857,29 +2105,45 @@
1857
2105
  "sha256": "6ea788b80605db6d2057b3d5e520be48ace8afe6d8f37bf55cef00ba1471a6b7",
1858
2106
  "bytes": 1935
1859
2107
  },
2108
+ "v2/usecases/enumerate-sessions.d.ts": {
2109
+ "sha256": "6043d64b45360dfc6a15b822d9f013a0832127596706bf81569dfce256236d2d",
2110
+ "bytes": 499
2111
+ },
2112
+ "v2/usecases/enumerate-sessions.js": {
2113
+ "sha256": "99e135a7c7411ce850c9dd89963ef6a05d3488078d6c6b2c540cb2d2043a2e89",
2114
+ "bytes": 526
2115
+ },
1860
2116
  "v2/usecases/execution-session-gate.d.ts": {
1861
2117
  "sha256": "339c4a8e02a77416e725e063a57d39a20788244498ae2c7a31dc48d111af6280",
1862
2118
  "bytes": 2084
1863
2119
  },
1864
2120
  "v2/usecases/execution-session-gate.js": {
1865
- "sha256": "41a25f3046ed474c6c6223655ca1c21d0666aea171c024f51b85071619abfa52",
1866
- "bytes": 7635
2121
+ "sha256": "0619bab6c13bcaf3711b93bef075ca99cd339bf8a333d12efc830ca07924d553",
2122
+ "bytes": 7455
1867
2123
  },
1868
2124
  "v2/usecases/export-session.d.ts": {
1869
2125
  "sha256": "037c6efb463c121feb41eff43d3b035e8443a12d25fcffb5387453ac5a49ae44",
1870
2126
  "bytes": 2049
1871
2127
  },
1872
2128
  "v2/usecases/export-session.js": {
1873
- "sha256": "a91125866d50fe0a00bc8ef7d1a29bd43958b8e4eaff2e73a8247384e2d113db",
1874
- "bytes": 4092
2129
+ "sha256": "1ac4021a72d854908bb226e5b864accad421cbb42a60f85395a7328502e433ca",
2130
+ "bytes": 4258
1875
2131
  },
1876
2132
  "v2/usecases/import-session.d.ts": {
1877
- "sha256": "30c470707f5370f2b90d786f1d959a0a01bc4fecf3296a523a49518c626f99a8",
1878
- "bytes": 1514
2133
+ "sha256": "7729af87509895fafa1f16fc5ff6c23deea41b20546e40c1951cb4bb52204f0d",
2134
+ "bytes": 1531
1879
2135
  },
1880
2136
  "v2/usecases/import-session.js": {
1881
2137
  "sha256": "9b9c8922cc2e6d6904f564c35ff0e402a2e755187f36ee7e54e76826f51bed5c",
1882
2138
  "bytes": 2788
2139
+ },
2140
+ "v2/usecases/resume-session.d.ts": {
2141
+ "sha256": "02eec4908e02dc591bff06b0d38d686aad64719694fd353670b2b1d17d8f9543",
2142
+ "bytes": 434
2143
+ },
2144
+ "v2/usecases/resume-session.js": {
2145
+ "sha256": "db50776bbbd18f0a07c0c1b0d94689f78596d980824f4fe73f5cbe47a62d0d60",
2146
+ "bytes": 393
1883
2147
  }
1884
2148
  }
1885
2149
  }