niceeval 0.12.2-canary.31 → 0.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2039) hide show
  1. package/INDEX.md +10 -10
  2. package/README.md +2 -0
  3. package/README.zh.md +2 -0
  4. package/bin/niceeval.js +15 -0
  5. package/dist/agents/claude-code.cjs +9 -1
  6. package/dist/agents/claude-code.cjs.map +1 -1
  7. package/dist/agents/post-setup.cjs +0 -2
  8. package/dist/agents/post-setup.cjs.map +1 -1
  9. package/dist/agents/provisioner.cjs +2 -13
  10. package/dist/agents/provisioner.cjs.map +1 -1
  11. package/dist/agents/provisioner.d.cts +0 -5
  12. package/dist/agents/provisioner.d.mts +0 -5
  13. package/dist/agents/provisioner.d.ts +0 -5
  14. package/dist/agents/provisioner.js +22 -26
  15. package/dist/agents/sdk-streams.cjs +2 -1
  16. package/dist/agents/sdk-streams.cjs.map +1 -1
  17. package/dist/agents/types.cjs.map +1 -1
  18. package/dist/agents/types.d.cts +2 -10
  19. package/dist/agents/types.d.mts +2 -10
  20. package/dist/agents/types.d.ts +2 -10
  21. package/dist/analysis/api.cjs +689 -0
  22. package/dist/analysis/api.cjs.map +1 -0
  23. package/dist/analysis/api.d.cts +126 -0
  24. package/dist/analysis/api.d.mts +126 -0
  25. package/dist/analysis/api.d.ts +126 -0
  26. package/dist/analysis/api.js +24 -0
  27. package/dist/analysis/api.js.map +1 -0
  28. package/dist/analysis/bindings.cjs +617 -0
  29. package/dist/analysis/bindings.cjs.map +1 -0
  30. package/dist/analysis/bindings.d.cts +8313 -0
  31. package/dist/analysis/bindings.d.mts +8313 -0
  32. package/dist/analysis/bindings.d.ts +8313 -0
  33. package/dist/analysis/bindings.js +22 -0
  34. package/dist/analysis/bindings.js.map +1 -0
  35. package/dist/analysis/contracts.cjs +39 -0
  36. package/dist/analysis/contracts.cjs.map +1 -0
  37. package/dist/analysis/contracts.d.cts +293 -0
  38. package/dist/analysis/contracts.d.mts +293 -0
  39. package/dist/analysis/contracts.d.ts +293 -0
  40. package/dist/analysis/contracts.js +12 -0
  41. package/dist/analysis/contracts.js.map +1 -0
  42. package/dist/analysis/cost-decimal.cjs +177 -0
  43. package/dist/analysis/cost-decimal.cjs.map +1 -0
  44. package/dist/analysis/cost-decimal.d.cts +51 -0
  45. package/dist/analysis/cost-decimal.d.mts +51 -0
  46. package/dist/analysis/cost-decimal.d.ts +51 -0
  47. package/dist/analysis/cost-decimal.js +28 -0
  48. package/dist/analysis/cost-decimal.js.map +1 -0
  49. package/dist/analysis/cost-projection.cjs +430 -0
  50. package/dist/analysis/cost-projection.cjs.map +1 -0
  51. package/dist/analysis/cost-projection.d.cts +37 -0
  52. package/dist/analysis/cost-projection.d.mts +37 -0
  53. package/dist/analysis/cost-projection.d.ts +37 -0
  54. package/dist/analysis/cost-projection.js +10 -0
  55. package/dist/analysis/cost-projection.js.map +1 -0
  56. package/dist/analysis/cost.cjs +814 -0
  57. package/dist/analysis/cost.cjs.map +1 -0
  58. package/dist/analysis/cost.d.cts +310 -0
  59. package/dist/analysis/cost.d.mts +310 -0
  60. package/dist/analysis/cost.d.ts +310 -0
  61. package/dist/analysis/cost.js +26 -0
  62. package/dist/analysis/cost.js.map +1 -0
  63. package/dist/analysis/definitions.cjs +346 -0
  64. package/dist/analysis/definitions.cjs.map +1 -0
  65. package/dist/analysis/definitions.d.cts +230 -0
  66. package/dist/analysis/definitions.d.mts +230 -0
  67. package/dist/analysis/definitions.d.ts +230 -0
  68. package/dist/analysis/definitions.js +70 -0
  69. package/dist/analysis/definitions.js.map +1 -0
  70. package/dist/analysis/domain-view.cjs +3 -0
  71. package/dist/analysis/domain-view.cjs.map +1 -0
  72. package/dist/analysis/domain-view.d.cts +367 -0
  73. package/dist/analysis/domain-view.d.mts +367 -0
  74. package/dist/analysis/domain-view.d.ts +367 -0
  75. package/dist/analysis/domain-view.js +4 -0
  76. package/dist/analysis/domain-view.js.map +1 -0
  77. package/dist/analysis/file-changes.cjs +225 -0
  78. package/dist/analysis/file-changes.cjs.map +1 -0
  79. package/dist/analysis/file-changes.d.cts +30 -0
  80. package/dist/analysis/file-changes.d.mts +30 -0
  81. package/dist/analysis/file-changes.d.ts +30 -0
  82. package/dist/analysis/file-changes.js +6 -0
  83. package/dist/analysis/file-changes.js.map +1 -0
  84. package/dist/analysis/host.cjs +8 -0
  85. package/dist/analysis/host.cjs.map +1 -0
  86. package/dist/analysis/host.d.cts +19 -0
  87. package/dist/analysis/host.d.mts +19 -0
  88. package/dist/analysis/host.d.ts +19 -0
  89. package/dist/analysis/host.js +6 -0
  90. package/dist/analysis/host.js.map +1 -0
  91. package/dist/analysis/host.mjs +6 -0
  92. package/dist/analysis/host.mjs.map +1 -0
  93. package/dist/analysis/index.cjs +45 -8
  94. package/dist/analysis/index.cjs.map +1 -1
  95. package/dist/analysis/index.d.cts +10 -2
  96. package/dist/analysis/index.d.mts +10 -2
  97. package/dist/analysis/index.d.ts +10 -2
  98. package/dist/analysis/index.js +70 -6
  99. package/dist/analysis/index.mjs +70 -6
  100. package/dist/assertions/api.cjs.map +1 -1
  101. package/dist/assertions/api.d.cts +1 -1
  102. package/dist/assertions/api.d.mts +1 -1
  103. package/dist/assertions/api.d.ts +1 -1
  104. package/dist/assertions/diff.cjs +2 -2
  105. package/dist/assertions/diff.cjs.map +1 -1
  106. package/dist/assertions/diff.d.cts +2 -2
  107. package/dist/assertions/diff.d.mts +2 -2
  108. package/dist/assertions/diff.d.ts +2 -2
  109. package/dist/assertions/judge.cjs +11 -10
  110. package/dist/assertions/judge.cjs.map +1 -1
  111. package/dist/assertions/record/attachment.cjs +64 -81
  112. package/dist/assertions/record/attachment.cjs.map +1 -1
  113. package/dist/assertions/record/attachment.d.cts +88 -143
  114. package/dist/assertions/record/attachment.d.mts +88 -143
  115. package/dist/assertions/record/attachment.d.ts +88 -143
  116. package/dist/assertions/record/attachment.js +12 -16
  117. package/dist/assertions/record/codec.cjs +178 -100
  118. package/dist/assertions/record/codec.cjs.map +1 -1
  119. package/dist/assertions/record/codec.d.cts +75 -56
  120. package/dist/assertions/record/codec.d.mts +75 -56
  121. package/dist/assertions/record/codec.d.ts +75 -56
  122. package/dist/assertions/record/codec.js +36 -32
  123. package/dist/assertions/record/diff.cjs +545 -134
  124. package/dist/assertions/record/diff.cjs.map +1 -1
  125. package/dist/assertions/record/diff.d.cts +73 -25
  126. package/dist/assertions/record/diff.d.mts +73 -25
  127. package/dist/assertions/record/diff.d.ts +73 -25
  128. package/dist/assertions/record/diff.js +12 -14
  129. package/dist/assertions/record/index.js +70 -72
  130. package/dist/assertions/record/model.cjs.map +1 -1
  131. package/dist/assertions/record/model.d.cts +62 -70
  132. package/dist/assertions/record/model.d.mts +62 -70
  133. package/dist/assertions/record/model.d.ts +62 -70
  134. package/dist/assertions/record/producer.cjs +5 -2
  135. package/dist/assertions/record/producer.cjs.map +1 -1
  136. package/dist/assertions/record/producer.d.cts +18 -18
  137. package/dist/assertions/record/producer.d.mts +18 -18
  138. package/dist/assertions/record/producer.d.ts +18 -18
  139. package/dist/assertions/record/producer.js +2 -2
  140. package/dist/assertions/runtime.cjs +14 -9
  141. package/dist/assertions/runtime.cjs.map +1 -1
  142. package/dist/assertions/workspace-diff.cjs +18 -4
  143. package/dist/assertions/workspace-diff.cjs.map +1 -1
  144. package/dist/assertions/workspace-diff.d.cts +3 -1
  145. package/dist/assertions/workspace-diff.d.mts +3 -1
  146. package/dist/assertions/workspace-diff.d.ts +3 -1
  147. package/dist/assertions/workspace-diff.js +14 -12
  148. package/dist/attempt-locator-resolution.cjs +33 -38
  149. package/dist/attempt-locator-resolution.cjs.map +1 -1
  150. package/dist/attempt-locator-resolution.d.cts +15 -8
  151. package/dist/attempt-locator-resolution.d.mts +15 -8
  152. package/dist/attempt-locator-resolution.d.ts +15 -8
  153. package/dist/cli/record.cjs +16 -89
  154. package/dist/cli/record.cjs.map +1 -1
  155. package/dist/cli/record.d.cts +2 -9
  156. package/dist/cli/record.d.mts +2 -9
  157. package/dist/cli/record.d.ts +2 -9
  158. package/dist/cli/record.js +2 -6
  159. package/dist/cli.cjs +609 -245
  160. package/dist/cli.cjs.map +1 -1
  161. package/dist/cli.d.cts +6 -5
  162. package/dist/cli.d.mts +6 -5
  163. package/dist/cli.d.ts +6 -5
  164. package/dist/context/assert-first.cjs +13 -4
  165. package/dist/context/assert-first.cjs.map +1 -1
  166. package/dist/context/assert-first.d.cts +3 -4
  167. package/dist/context/assert-first.d.mts +3 -4
  168. package/dist/context/assert-first.d.ts +3 -4
  169. package/dist/context/send-retry.cjs +18 -21
  170. package/dist/context/send-retry.cjs.map +1 -1
  171. package/dist/context/send-retry.d.cts +0 -3
  172. package/dist/context/send-retry.d.mts +0 -3
  173. package/dist/context/send-retry.d.ts +0 -3
  174. package/dist/context/session.cjs +46 -42
  175. package/dist/context/session.cjs.map +1 -1
  176. package/dist/context/session.d.cts +4 -6
  177. package/dist/context/session.d.mts +4 -6
  178. package/dist/context/session.d.ts +4 -6
  179. package/dist/coordination/host/index.cjs +10 -0
  180. package/dist/coordination/host/index.cjs.map +1 -0
  181. package/dist/coordination/host/index.d.cts +6 -0
  182. package/dist/coordination/host/index.d.mts +6 -0
  183. package/dist/coordination/host/index.d.ts +6 -0
  184. package/dist/coordination/host/index.js +6 -0
  185. package/dist/coordination/host/index.mjs +6 -0
  186. package/dist/coordination/host/runtime.cjs +57 -0
  187. package/dist/coordination/host/runtime.cjs.map +1 -0
  188. package/dist/coordination/host/runtime.d.cts +13 -0
  189. package/dist/coordination/host/runtime.d.mts +13 -0
  190. package/dist/coordination/host/runtime.d.ts +13 -0
  191. package/dist/coordination/host/runtime.js +8 -0
  192. package/dist/coordination/host/types.cjs.map +1 -0
  193. package/dist/coordination/host/types.d.cts +37 -0
  194. package/dist/coordination/host/types.d.mts +37 -0
  195. package/dist/coordination/host/types.d.ts +37 -0
  196. package/dist/coordination/identity.cjs +48 -0
  197. package/dist/coordination/identity.cjs.map +1 -0
  198. package/dist/coordination/identity.d.cts +14 -0
  199. package/dist/coordination/identity.d.mts +14 -0
  200. package/dist/coordination/identity.d.ts +14 -0
  201. package/dist/coordination/identity.js +6 -0
  202. package/dist/coordination/index.cjs +23 -0
  203. package/dist/coordination/index.cjs.map +1 -0
  204. package/dist/coordination/index.d.cts +6 -0
  205. package/dist/coordination/index.d.mts +6 -0
  206. package/dist/coordination/index.d.ts +6 -0
  207. package/dist/coordination/index.js +16 -0
  208. package/dist/coordination/platform/index.cjs +18 -0
  209. package/dist/coordination/platform/index.cjs.map +1 -0
  210. package/dist/coordination/platform/index.d.cts +1 -0
  211. package/dist/coordination/platform/index.d.mts +1 -0
  212. package/dist/coordination/platform/index.d.ts +1 -0
  213. package/dist/coordination/platform/index.js +6 -0
  214. package/dist/coordination/platform/node.cjs +251 -0
  215. package/dist/coordination/platform/node.cjs.map +1 -0
  216. package/dist/coordination/platform/node.d.cts +3 -0
  217. package/dist/coordination/platform/node.d.mts +3 -0
  218. package/dist/coordination/platform/node.d.ts +3 -0
  219. package/dist/coordination/platform/node.js +6 -0
  220. package/dist/coordination/platform/node.js.map +1 -0
  221. package/dist/coordination/record-leases.cjs +22 -0
  222. package/dist/coordination/record-leases.cjs.map +1 -0
  223. package/dist/coordination/record-leases.d.cts +39 -0
  224. package/dist/coordination/record-leases.d.mts +39 -0
  225. package/dist/coordination/record-leases.d.ts +39 -0
  226. package/dist/coordination/record-leases.js +10 -0
  227. package/dist/coordination/record-leases.js.map +1 -0
  228. package/dist/eval/experiment-id.cjs +1 -5
  229. package/dist/eval/experiment-id.cjs.map +1 -1
  230. package/dist/eval/experiment-id.d.cts +0 -2
  231. package/dist/eval/experiment-id.d.mts +0 -2
  232. package/dist/eval/experiment-id.d.ts +0 -2
  233. package/dist/eval/experiment-id.js +0 -4
  234. package/dist/eval/record/attachment.cjs +7 -47
  235. package/dist/eval/record/attachment.cjs.map +1 -1
  236. package/dist/eval/record/attachment.d.cts +8 -24
  237. package/dist/eval/record/attachment.d.mts +8 -24
  238. package/dist/eval/record/attachment.d.ts +8 -24
  239. package/dist/eval/record/attachment.js +4 -10
  240. package/dist/eval/record/coherence.cjs +6 -6
  241. package/dist/eval/record/coherence.cjs.map +1 -1
  242. package/dist/eval/record/coherence.d.cts +16 -16
  243. package/dist/eval/record/coherence.d.mts +16 -16
  244. package/dist/eval/record/coherence.d.ts +16 -16
  245. package/dist/eval/record/coherence.js +2 -2
  246. package/dist/eval/record/eligibility.cjs +53 -135
  247. package/dist/eval/record/eligibility.cjs.map +1 -1
  248. package/dist/eval/record/eligibility.d.cts +38 -140
  249. package/dist/eval/record/eligibility.d.mts +38 -140
  250. package/dist/eval/record/eligibility.d.ts +38 -140
  251. package/dist/eval/record/eligibility.js +16 -38
  252. package/dist/eval/record/evaluation-plan.cjs +18 -23
  253. package/dist/eval/record/evaluation-plan.cjs.map +1 -1
  254. package/dist/eval/record/evaluation-plan.d.cts +6 -9
  255. package/dist/eval/record/evaluation-plan.d.mts +6 -9
  256. package/dist/eval/record/evaluation-plan.d.ts +6 -9
  257. package/dist/eval/record/evaluation-plan.js +2 -2
  258. package/dist/eval/record/evaluation-record.cjs +161 -454
  259. package/dist/eval/record/evaluation-record.cjs.map +1 -1
  260. package/dist/eval/record/evaluation-record.d.cts +67 -128
  261. package/dist/eval/record/evaluation-record.d.mts +67 -128
  262. package/dist/eval/record/evaluation-record.d.ts +67 -128
  263. package/dist/eval/record/evaluation-record.js +16 -16
  264. package/dist/eval/record/evaluation.cjs +59 -174
  265. package/dist/eval/record/evaluation.cjs.map +1 -1
  266. package/dist/eval/record/evaluation.d.cts +43 -119
  267. package/dist/eval/record/evaluation.d.mts +43 -119
  268. package/dist/eval/record/evaluation.d.ts +43 -119
  269. package/dist/eval/record/evaluation.js +20 -32
  270. package/dist/eval/record/index.js +144 -238
  271. package/dist/eval/record/membership-provenance.cjs +58 -191
  272. package/dist/eval/record/membership-provenance.cjs.map +1 -1
  273. package/dist/eval/record/membership-provenance.d.cts +83 -659
  274. package/dist/eval/record/membership-provenance.d.mts +83 -659
  275. package/dist/eval/record/membership-provenance.d.ts +83 -659
  276. package/dist/eval/record/membership-provenance.js +34 -54
  277. package/dist/eval/record/score.cjs +58 -170
  278. package/dist/eval/record/score.cjs.map +1 -1
  279. package/dist/eval/record/score.d.cts +36 -104
  280. package/dist/eval/record/score.d.mts +36 -104
  281. package/dist/eval/record/score.d.ts +36 -104
  282. package/dist/eval/record/score.js +22 -40
  283. package/dist/eval/record/sealed-assertion.cjs +10 -10
  284. package/dist/eval/record/sealed-assertion.cjs.map +1 -1
  285. package/dist/eval/record/sealed-assertion.d.cts +12 -12
  286. package/dist/eval/record/sealed-assertion.d.mts +12 -12
  287. package/dist/eval/record/sealed-assertion.d.ts +12 -12
  288. package/dist/eval/record/sealed-assertion.js +10 -10
  289. package/dist/eval/record/verdict.cjs +42 -64
  290. package/dist/eval/record/verdict.cjs.map +1 -1
  291. package/dist/eval/record/verdict.d.cts +35 -48
  292. package/dist/eval/record/verdict.d.mts +35 -48
  293. package/dist/eval/record/verdict.d.ts +35 -48
  294. package/dist/eval/record/verdict.js +16 -32
  295. package/dist/experiment/host/index.cjs +210 -0
  296. package/dist/experiment/host/index.cjs.map +1 -0
  297. package/dist/experiment/host/index.d.cts +125 -0
  298. package/dist/experiment/host/index.d.mts +125 -0
  299. package/dist/experiment/host/index.d.ts +125 -0
  300. package/dist/experiment/host/index.js +6 -0
  301. package/dist/experiment/host/index.mjs +6 -0
  302. package/dist/experiment/host/index.mjs.map +1 -0
  303. package/dist/fresh-import.cjs +33 -119
  304. package/dist/fresh-import.cjs.map +1 -1
  305. package/dist/i18n/en.cjs +10 -5
  306. package/dist/i18n/en.cjs.map +1 -1
  307. package/dist/i18n/en.d.cts +9 -4
  308. package/dist/i18n/en.d.mts +9 -4
  309. package/dist/i18n/en.d.ts +9 -4
  310. package/dist/index.cjs +1 -4
  311. package/dist/index.cjs.map +1 -1
  312. package/dist/index.d.cts +0 -2
  313. package/dist/index.d.mts +0 -2
  314. package/dist/index.d.ts +0 -2
  315. package/dist/index.js +18 -20
  316. package/dist/index.mjs +18 -20
  317. package/dist/o11y/cost.cjs +16 -6
  318. package/dist/o11y/cost.cjs.map +1 -1
  319. package/dist/o11y/parsers/bub.cjs +16 -4
  320. package/dist/o11y/parsers/bub.cjs.map +1 -1
  321. package/dist/o11y/parsers/hermes.cjs +19 -6
  322. package/dist/o11y/parsers/hermes.cjs.map +1 -1
  323. package/dist/o11y/parsers/openclaw.cjs +5 -10
  324. package/dist/o11y/parsers/openclaw.cjs.map +1 -1
  325. package/dist/o11y/parsers/opencode.cjs +6 -11
  326. package/dist/o11y/parsers/opencode.cjs.map +1 -1
  327. package/dist/o11y/prices.json +1335 -557
  328. package/dist/o11y/record/capture.cjs +38 -38
  329. package/dist/o11y/record/capture.cjs.map +1 -1
  330. package/dist/o11y/record/capture.d.cts +25 -25
  331. package/dist/o11y/record/capture.d.mts +25 -25
  332. package/dist/o11y/record/capture.d.ts +25 -25
  333. package/dist/o11y/record/capture.js +26 -26
  334. package/dist/o11y/record/codec.cjs +139 -140
  335. package/dist/o11y/record/codec.cjs.map +1 -1
  336. package/dist/o11y/record/codec.d.cts +262 -266
  337. package/dist/o11y/record/codec.d.mts +262 -266
  338. package/dist/o11y/record/codec.d.ts +262 -266
  339. package/dist/o11y/record/codec.js +58 -60
  340. package/dist/o11y/record/errors.cjs +20 -20
  341. package/dist/o11y/record/errors.cjs.map +1 -1
  342. package/dist/o11y/record/errors.d.cts +18 -18
  343. package/dist/o11y/record/errors.d.mts +18 -18
  344. package/dist/o11y/record/errors.d.ts +18 -18
  345. package/dist/o11y/record/errors.js +20 -20
  346. package/dist/o11y/record/families.cjs +269 -264
  347. package/dist/o11y/record/families.cjs.map +1 -1
  348. package/dist/o11y/record/families.d.cts +1589 -1573
  349. package/dist/o11y/record/families.d.mts +1589 -1573
  350. package/dist/o11y/record/families.d.ts +1589 -1573
  351. package/dist/o11y/record/families.js +64 -64
  352. package/dist/o11y/record/family-projectors.cjs +31 -58
  353. package/dist/o11y/record/family-projectors.cjs.map +1 -1
  354. package/dist/o11y/record/family-projectors.d.cts +2933 -34
  355. package/dist/o11y/record/family-projectors.d.mts +2933 -34
  356. package/dist/o11y/record/family-projectors.d.ts +2933 -34
  357. package/dist/o11y/record/family-projectors.js +10 -4
  358. package/dist/o11y/record/family-writers.cjs +207 -336
  359. package/dist/o11y/record/family-writers.cjs.map +1 -1
  360. package/dist/o11y/record/family-writers.d.cts +637 -5260
  361. package/dist/o11y/record/family-writers.d.mts +637 -5260
  362. package/dist/o11y/record/family-writers.d.ts +637 -5260
  363. package/dist/o11y/record/family-writers.js +14 -56
  364. package/dist/o11y/record/index.js +446 -484
  365. package/dist/o11y/record/limits.cjs +45 -45
  366. package/dist/o11y/record/limits.cjs.map +1 -1
  367. package/dist/o11y/record/limits.d.cts +32 -32
  368. package/dist/o11y/record/limits.d.mts +32 -32
  369. package/dist/o11y/record/limits.d.ts +32 -32
  370. package/dist/o11y/record/limits.js +64 -64
  371. package/dist/o11y/record/model.cjs +271 -277
  372. package/dist/o11y/record/model.cjs.map +1 -1
  373. package/dist/o11y/record/model.d.cts +160 -186
  374. package/dist/o11y/record/model.d.mts +160 -186
  375. package/dist/o11y/record/model.d.ts +160 -186
  376. package/dist/o11y/record/model.js +154 -154
  377. package/dist/o11y/record/runner-producer.cjs +649 -520
  378. package/dist/o11y/record/runner-producer.cjs.map +1 -1
  379. package/dist/o11y/record/runner-producer.d.cts +39 -25
  380. package/dist/o11y/record/runner-producer.d.mts +39 -25
  381. package/dist/o11y/record/runner-producer.d.ts +39 -25
  382. package/dist/o11y/record/runner-producer.js +26 -22
  383. package/dist/o11y/record/validation.cjs +75 -75
  384. package/dist/o11y/record/validation.cjs.map +1 -1
  385. package/dist/o11y/record/validation.d.cts +35 -35
  386. package/dist/o11y/record/validation.d.mts +35 -35
  387. package/dist/o11y/record/validation.d.ts +35 -35
  388. package/dist/o11y/record/validation.js +24 -24
  389. package/dist/o11y/types.cjs.map +1 -1
  390. package/dist/o11y/types.d.cts +7 -5
  391. package/dist/o11y/types.d.mts +7 -5
  392. package/dist/o11y/types.d.ts +7 -5
  393. package/dist/plugin/contracts.cjs.map +1 -1
  394. package/dist/plugin/contracts.d.cts +0 -3
  395. package/dist/plugin/contracts.d.mts +0 -3
  396. package/dist/plugin/contracts.d.ts +0 -3
  397. package/dist/plugins/record/attachment.cjs +0 -59
  398. package/dist/plugins/record/attachment.cjs.map +1 -1
  399. package/dist/plugins/record/attachment.d.cts +6 -14
  400. package/dist/plugins/record/attachment.d.mts +6 -14
  401. package/dist/plugins/record/attachment.d.ts +6 -14
  402. package/dist/plugins/record/attachment.js +0 -16
  403. package/dist/plugins/record/capability.cjs +0 -255
  404. package/dist/plugins/record/capability.cjs.map +1 -1
  405. package/dist/plugins/record/capability.d.cts +1 -93
  406. package/dist/plugins/record/capability.d.mts +1 -93
  407. package/dist/plugins/record/capability.d.ts +1 -93
  408. package/dist/plugins/record/capability.js +0 -22
  409. package/dist/plugins/record/codec.cjs +0 -241
  410. package/dist/plugins/record/codec.cjs.map +1 -1
  411. package/dist/plugins/record/codec.d.cts +2 -28
  412. package/dist/plugins/record/codec.d.mts +2 -28
  413. package/dist/plugins/record/codec.d.ts +2 -28
  414. package/dist/plugins/record/codec.js +0 -44
  415. package/dist/plugins/record/index.cjs +0 -51
  416. package/dist/plugins/record/index.cjs.map +1 -1
  417. package/dist/plugins/record/index.d.cts +5 -9
  418. package/dist/plugins/record/index.d.mts +5 -9
  419. package/dist/plugins/record/index.d.ts +5 -9
  420. package/dist/plugins/record/index.js +0 -90
  421. package/dist/plugins/record/migration.cjs +0 -30
  422. package/dist/plugins/record/migration.cjs.map +1 -1
  423. package/dist/plugins/record/migration.d.cts +3 -20
  424. package/dist/plugins/record/migration.d.mts +3 -20
  425. package/dist/plugins/record/migration.d.ts +3 -20
  426. package/dist/plugins/record/migration.js +0 -2
  427. package/dist/plugins/record/model.cjs.map +1 -1
  428. package/dist/plugins/record/model.d.cts +2 -93
  429. package/dist/plugins/record/model.d.mts +2 -93
  430. package/dist/plugins/record/model.d.ts +2 -93
  431. package/dist/plugins/record/provenance.cjs +0 -316
  432. package/dist/plugins/record/provenance.cjs.map +1 -1
  433. package/dist/plugins/record/provenance.d.cts +1 -78
  434. package/dist/plugins/record/provenance.d.mts +1 -78
  435. package/dist/plugins/record/provenance.d.ts +1 -78
  436. package/dist/plugins/record/provenance.js +0 -20
  437. package/dist/record/attachment/blob-policy.cjs +3 -0
  438. package/dist/record/attachment/blob-policy.cjs.map +1 -0
  439. package/dist/record/attachment/blob-policy.d.cts +18 -0
  440. package/dist/record/attachment/blob-policy.d.mts +18 -0
  441. package/dist/record/attachment/blob-policy.d.ts +18 -0
  442. package/dist/record/attachment/blob-policy.js +4 -0
  443. package/dist/record/attachment/blob-policy.js.map +1 -0
  444. package/dist/record/attachment/blob-ref.cjs +42 -0
  445. package/dist/record/attachment/blob-ref.cjs.map +1 -0
  446. package/dist/record/attachment/blob-ref.d.cts +22 -0
  447. package/dist/record/attachment/blob-ref.d.mts +22 -0
  448. package/dist/record/attachment/blob-ref.d.ts +22 -0
  449. package/dist/record/attachment/blob-ref.js +14 -0
  450. package/dist/record/attachment/blob-ref.js.map +1 -0
  451. package/dist/record/attachment/errors.cjs +6 -34
  452. package/dist/record/attachment/errors.cjs.map +1 -1
  453. package/dist/record/attachment/errors.d.cts +2 -24
  454. package/dist/record/attachment/errors.d.mts +2 -24
  455. package/dist/record/attachment/errors.d.ts +2 -24
  456. package/dist/record/attachment/errors.js +4 -10
  457. package/dist/record/attachment/index.cjs +2 -8
  458. package/dist/record/attachment/index.cjs.map +1 -1
  459. package/dist/record/attachment/index.d.cts +3 -3
  460. package/dist/record/attachment/index.d.mts +3 -3
  461. package/dist/record/attachment/index.d.ts +3 -3
  462. package/dist/record/attachment/index.js +6 -18
  463. package/dist/record/attachment/internal.cjs +5 -14
  464. package/dist/record/attachment/internal.cjs.map +1 -1
  465. package/dist/record/attachment/internal.d.cts +3 -2
  466. package/dist/record/attachment/internal.d.mts +3 -2
  467. package/dist/record/attachment/internal.d.ts +3 -2
  468. package/dist/record/attachment/internal.js +12 -30
  469. package/dist/record/attachment/runtime.cjs +155 -745
  470. package/dist/record/attachment/runtime.cjs.map +1 -1
  471. package/dist/record/attachment/runtime.d.cts +25 -68
  472. package/dist/record/attachment/runtime.d.mts +25 -68
  473. package/dist/record/attachment/runtime.d.ts +25 -68
  474. package/dist/record/attachment/runtime.js +16 -48
  475. package/dist/record/attachment/types.cjs +3 -26
  476. package/dist/record/attachment/types.cjs.map +1 -1
  477. package/dist/record/attachment/types.d.cts +33 -132
  478. package/dist/record/attachment/types.d.mts +33 -132
  479. package/dist/record/attachment/types.d.ts +33 -132
  480. package/dist/record/attachment/types.js +10 -22
  481. package/dist/record/codec/core.cjs +102 -85
  482. package/dist/record/codec/core.cjs.map +1 -1
  483. package/dist/record/codec/core.d.cts +205 -55
  484. package/dist/record/codec/core.d.mts +205 -55
  485. package/dist/record/codec/core.d.ts +205 -55
  486. package/dist/record/codec/core.js +50 -42
  487. package/dist/record/codec/identifiers.cjs +24 -2
  488. package/dist/record/codec/identifiers.cjs.map +1 -1
  489. package/dist/record/codec/identifiers.d.cts +11 -2
  490. package/dist/record/codec/identifiers.d.mts +11 -2
  491. package/dist/record/codec/identifiers.d.ts +11 -2
  492. package/dist/record/codec/identifiers.js +36 -18
  493. package/dist/record/codec/index.js +86 -60
  494. package/dist/record/definition/attachment.cjs +108 -0
  495. package/dist/record/definition/attachment.cjs.map +1 -0
  496. package/dist/record/definition/attachment.d.cts +77 -0
  497. package/dist/record/definition/attachment.d.mts +77 -0
  498. package/dist/record/definition/attachment.d.ts +77 -0
  499. package/dist/record/definition/attachment.js +8 -0
  500. package/dist/record/definition/attachment.js.map +1 -0
  501. package/dist/record/definition/canonical.cjs +271 -0
  502. package/dist/record/definition/canonical.cjs.map +1 -0
  503. package/dist/record/definition/canonical.d.cts +38 -0
  504. package/dist/record/definition/canonical.d.mts +38 -0
  505. package/dist/record/definition/canonical.d.ts +38 -0
  506. package/dist/record/definition/canonical.js +10 -0
  507. package/dist/record/definition/canonical.js.map +1 -0
  508. package/dist/record/definition/core.cjs +13 -0
  509. package/dist/record/definition/core.cjs.map +1 -0
  510. package/dist/record/definition/core.d.cts +10 -0
  511. package/dist/record/definition/core.d.mts +10 -0
  512. package/dist/record/definition/core.d.ts +10 -0
  513. package/dist/record/definition/core.js +6 -0
  514. package/dist/record/definition/core.js.map +1 -0
  515. package/dist/record/definition/index.cjs +21 -0
  516. package/dist/record/definition/index.cjs.map +1 -0
  517. package/dist/record/definition/index.d.cts +4 -0
  518. package/dist/record/definition/index.d.mts +4 -0
  519. package/dist/record/definition/index.d.ts +4 -0
  520. package/dist/record/definition/index.js +16 -0
  521. package/dist/record/definition/index.js.map +1 -0
  522. package/dist/record/definition/schema-codec.cjs +347 -0
  523. package/dist/record/definition/schema-codec.cjs.map +1 -0
  524. package/dist/record/definition/schema-codec.d.cts +48 -0
  525. package/dist/record/definition/schema-codec.d.mts +48 -0
  526. package/dist/record/definition/schema-codec.d.ts +48 -0
  527. package/dist/record/definition/schema-codec.js +8 -0
  528. package/dist/record/definition/schema-codec.js.map +1 -0
  529. package/dist/record/errors/record-errors.cjs +2 -2
  530. package/dist/record/errors/record-errors.cjs.map +1 -1
  531. package/dist/record/errors/record-errors.d.cts +2 -2
  532. package/dist/record/errors/record-errors.d.mts +2 -2
  533. package/dist/record/errors/record-errors.d.ts +2 -2
  534. package/dist/record/family/artifacts.cjs +83 -0
  535. package/dist/record/family/artifacts.cjs.map +1 -0
  536. package/dist/record/family/artifacts.d.cts +225 -0
  537. package/dist/record/family/artifacts.d.mts +225 -0
  538. package/dist/record/family/artifacts.d.ts +225 -0
  539. package/dist/record/family/artifacts.js +14 -0
  540. package/dist/record/family/artifacts.js.map +1 -0
  541. package/dist/record/family/assertions.cjs +172 -0
  542. package/dist/record/family/assertions.cjs.map +1 -0
  543. package/dist/record/family/assertions.d.cts +292 -0
  544. package/dist/record/family/assertions.d.mts +292 -0
  545. package/dist/record/family/assertions.d.ts +292 -0
  546. package/dist/record/family/assertions.js +20 -0
  547. package/dist/record/family/assertions.js.map +1 -0
  548. package/dist/record/family/catalog.cjs +91 -0
  549. package/dist/record/family/catalog.cjs.map +1 -0
  550. package/dist/record/family/catalog.d.cts +3653 -0
  551. package/dist/record/family/catalog.d.mts +3653 -0
  552. package/dist/record/family/catalog.d.ts +3653 -0
  553. package/dist/record/family/catalog.js +34 -0
  554. package/dist/record/family/catalog.js.map +1 -0
  555. package/dist/record/family/common.cjs +80 -0
  556. package/dist/record/family/common.cjs.map +1 -0
  557. package/dist/record/family/common.d.cts +44 -0
  558. package/dist/record/family/common.d.mts +44 -0
  559. package/dist/record/family/common.d.ts +44 -0
  560. package/dist/record/family/common.js +28 -0
  561. package/dist/record/family/common.js.map +1 -0
  562. package/dist/record/family/file-changes.cjs +278 -0
  563. package/dist/record/family/file-changes.cjs.map +1 -0
  564. package/dist/record/family/file-changes.d.cts +643 -0
  565. package/dist/record/family/file-changes.d.mts +643 -0
  566. package/dist/record/family/file-changes.d.ts +643 -0
  567. package/dist/record/family/file-changes.js +32 -0
  568. package/dist/record/family/file-changes.js.map +1 -0
  569. package/dist/record/family/index.cjs +24 -0
  570. package/dist/record/family/index.cjs.map +1 -0
  571. package/dist/record/family/index.d.cts +7 -0
  572. package/dist/record/family/index.d.mts +7 -0
  573. package/dist/record/family/index.d.ts +7 -0
  574. package/dist/record/family/index.js +148 -0
  575. package/dist/record/family/index.js.map +1 -0
  576. package/dist/record/family/observability.cjs +511 -0
  577. package/dist/record/family/observability.cjs.map +1 -0
  578. package/dist/record/family/observability.d.cts +2879 -0
  579. package/dist/record/family/observability.d.mts +2879 -0
  580. package/dist/record/family/observability.d.ts +2879 -0
  581. package/dist/record/family/observability.js +30 -0
  582. package/dist/record/family/observability.js.map +1 -0
  583. package/dist/record/family/source-navigation.cjs +215 -0
  584. package/dist/record/family/source-navigation.cjs.map +1 -0
  585. package/dist/record/family/source-navigation.d.cts +330 -0
  586. package/dist/record/family/source-navigation.d.mts +330 -0
  587. package/dist/record/family/source-navigation.d.ts +330 -0
  588. package/dist/record/family/source-navigation.js +24 -0
  589. package/dist/record/family/source-navigation.js.map +1 -0
  590. package/dist/record/family/sources.cjs +82 -0
  591. package/dist/record/family/sources.cjs.map +1 -0
  592. package/dist/record/family/sources.d.cts +81 -0
  593. package/dist/record/family/sources.d.mts +81 -0
  594. package/dist/record/family/sources.d.ts +81 -0
  595. package/dist/record/family/sources.js +14 -0
  596. package/dist/record/family/sources.js.map +1 -0
  597. package/dist/record/host/index.cjs +11 -0
  598. package/dist/record/host/index.cjs.map +1 -0
  599. package/dist/record/host/index.d.cts +7 -0
  600. package/dist/record/host/index.d.mts +7 -0
  601. package/dist/record/host/index.d.ts +7 -0
  602. package/dist/record/host/index.js +6 -0
  603. package/dist/record/host/index.js.map +1 -0
  604. package/dist/record/host/index.mjs +6 -0
  605. package/dist/record/host/index.mjs.map +1 -0
  606. package/dist/record/host/runtime.cjs +1696 -0
  607. package/dist/record/host/runtime.cjs.map +1 -0
  608. package/dist/record/host/runtime.d.cts +2 -0
  609. package/dist/record/host/runtime.d.mts +2 -0
  610. package/dist/record/host/runtime.d.ts +2 -0
  611. package/dist/record/host/runtime.js +6 -0
  612. package/dist/record/host/types.cjs +9 -0
  613. package/dist/record/host/types.cjs.map +1 -0
  614. package/dist/record/host/types.d.cts +259 -0
  615. package/dist/record/host/types.d.mts +259 -0
  616. package/dist/record/host/types.d.ts +259 -0
  617. package/dist/record/host/types.js +14 -0
  618. package/dist/record/host/types.js.map +1 -0
  619. package/dist/record/index.cjs +19 -52
  620. package/dist/record/index.cjs.map +1 -1
  621. package/dist/record/index.d.cts +14 -11
  622. package/dist/record/index.d.mts +14 -11
  623. package/dist/record/index.d.ts +14 -11
  624. package/dist/record/index.js +16 -310
  625. package/dist/record/index.mjs +20 -0
  626. package/dist/record/index.mjs.map +1 -0
  627. package/dist/record/maintenance/runtime.cjs +9 -11
  628. package/dist/record/maintenance/runtime.cjs.map +1 -1
  629. package/dist/record/maintenance/runtime.d.cts +4 -5
  630. package/dist/record/maintenance/runtime.d.mts +4 -5
  631. package/dist/record/maintenance/runtime.d.ts +4 -5
  632. package/dist/record/maintenance/types.cjs.map +1 -1
  633. package/dist/record/maintenance/types.d.cts +7 -8
  634. package/dist/record/maintenance/types.d.mts +7 -8
  635. package/dist/record/maintenance/types.d.ts +7 -8
  636. package/dist/record/migration/index.cjs +2 -25
  637. package/dist/record/migration/index.cjs.map +1 -1
  638. package/dist/record/migration/index.d.cts +11 -8
  639. package/dist/record/migration/index.d.mts +11 -8
  640. package/dist/record/migration/index.d.ts +11 -8
  641. package/dist/record/migration/index.js +2 -44
  642. package/dist/record/model/core.cjs +1 -4
  643. package/dist/record/model/core.cjs.map +1 -1
  644. package/dist/record/model/core.d.cts +59 -39
  645. package/dist/record/model/core.d.mts +59 -39
  646. package/dist/record/model/core.d.ts +59 -39
  647. package/dist/record/model/definition.cjs +147 -0
  648. package/dist/record/model/definition.cjs.map +1 -0
  649. package/dist/record/model/definition.d.cts +463 -0
  650. package/dist/record/model/definition.d.mts +463 -0
  651. package/dist/record/model/definition.d.ts +463 -0
  652. package/dist/record/model/definition.js +40 -0
  653. package/dist/record/model/definition.js.map +1 -0
  654. package/dist/record/model/identifiers.cjs +52 -10
  655. package/dist/record/model/identifiers.cjs.map +1 -1
  656. package/dist/record/model/identifiers.d.cts +44 -3
  657. package/dist/record/model/identifiers.d.mts +44 -3
  658. package/dist/record/model/identifiers.d.ts +44 -3
  659. package/dist/record/model/identifiers.js +62 -36
  660. package/dist/record/model/index.cjs +1 -0
  661. package/dist/record/model/index.cjs.map +1 -1
  662. package/dist/record/model/index.d.cts +1 -0
  663. package/dist/record/model/index.d.mts +1 -0
  664. package/dist/record/model/index.d.ts +1 -0
  665. package/dist/record/model/index.js +86 -48
  666. package/dist/record/model/read-state.cjs.map +1 -1
  667. package/dist/record/model/read-state.d.cts +6 -9
  668. package/dist/record/model/read-state.d.mts +6 -9
  669. package/dist/record/model/read-state.d.ts +6 -9
  670. package/dist/record/model/run-context.cjs +80 -0
  671. package/dist/record/model/run-context.cjs.map +1 -0
  672. package/dist/record/model/run-context.d.cts +30 -0
  673. package/dist/record/model/run-context.d.mts +30 -0
  674. package/dist/record/model/run-context.d.ts +30 -0
  675. package/dist/record/model/run-context.js +14 -0
  676. package/dist/record/model/run-context.js.map +1 -0
  677. package/dist/record/model/validation.cjs +155 -54
  678. package/dist/record/model/validation.cjs.map +1 -1
  679. package/dist/record/model/validation.d.cts +16 -11
  680. package/dist/record/model/validation.d.mts +16 -11
  681. package/dist/record/model/validation.d.ts +16 -11
  682. package/dist/record/model/validation.js +10 -8
  683. package/dist/record/platform/errors.cjs +2 -8
  684. package/dist/record/platform/errors.cjs.map +1 -1
  685. package/dist/record/platform/errors.d.cts +3 -13
  686. package/dist/record/platform/errors.d.mts +3 -13
  687. package/dist/record/platform/errors.d.ts +3 -13
  688. package/dist/record/platform/errors.js +0 -2
  689. package/dist/record/platform/index.js +38 -48
  690. package/dist/record/platform/node.cjs +3 -142
  691. package/dist/record/platform/node.cjs.map +1 -1
  692. package/dist/record/platform/node.d.cts +2 -4
  693. package/dist/record/platform/node.d.mts +2 -4
  694. package/dist/record/platform/node.d.ts +2 -4
  695. package/dist/record/platform/node.js +0 -4
  696. package/dist/record/platform/root.cjs +0 -11
  697. package/dist/record/platform/root.cjs.map +1 -1
  698. package/dist/record/platform/root.d.cts +0 -2
  699. package/dist/record/platform/root.d.mts +0 -2
  700. package/dist/record/platform/root.d.ts +0 -2
  701. package/dist/record/platform/services.cjs +1 -7
  702. package/dist/record/platform/services.cjs.map +1 -1
  703. package/dist/record/platform/services.d.cts +2 -29
  704. package/dist/record/platform/services.d.mts +2 -29
  705. package/dist/record/platform/services.d.ts +2 -29
  706. package/dist/record/platform/services.js +2 -6
  707. package/dist/record/reader/errors.cjs.map +1 -1
  708. package/dist/record/reader/errors.d.cts +3 -2
  709. package/dist/record/reader/errors.d.mts +3 -2
  710. package/dist/record/reader/errors.d.ts +3 -2
  711. package/dist/record/reader/format.cjs +26 -40
  712. package/dist/record/reader/format.cjs.map +1 -1
  713. package/dist/record/reader/format.d.cts +6 -7
  714. package/dist/record/reader/format.d.mts +6 -7
  715. package/dist/record/reader/format.d.ts +6 -7
  716. package/dist/record/reader/index.js +22 -30
  717. package/dist/record/reader/runtime.cjs +112 -636
  718. package/dist/record/reader/runtime.cjs.map +1 -1
  719. package/dist/record/reader/runtime.d.cts +43 -12
  720. package/dist/record/reader/runtime.d.mts +43 -12
  721. package/dist/record/reader/runtime.d.ts +43 -12
  722. package/dist/record/reader/runtime.js +6 -10
  723. package/dist/record/reader/types.cjs +3 -6
  724. package/dist/record/reader/types.cjs.map +1 -1
  725. package/dist/record/reader/types.d.cts +3 -42
  726. package/dist/record/reader/types.d.mts +3 -42
  727. package/dist/record/reader/types.d.ts +3 -42
  728. package/dist/record/reader/types.js +0 -4
  729. package/dist/record/writer/errors.cjs +7 -0
  730. package/dist/record/writer/errors.cjs.map +1 -1
  731. package/dist/record/writer/errors.d.cts +5 -0
  732. package/dist/record/writer/errors.d.mts +5 -0
  733. package/dist/record/writer/errors.d.ts +5 -0
  734. package/dist/record/writer/errors.js +6 -4
  735. package/dist/record/writer/index.cjs +0 -1
  736. package/dist/record/writer/index.cjs.map +1 -1
  737. package/dist/record/writer/index.d.cts +0 -1
  738. package/dist/record/writer/index.d.mts +0 -1
  739. package/dist/record/writer/index.d.ts +0 -1
  740. package/dist/record/writer/index.js +10 -10
  741. package/dist/record/writer/types.cjs.map +1 -1
  742. package/dist/record/writer/types.d.cts +12 -17
  743. package/dist/record/writer/types.d.mts +12 -17
  744. package/dist/record/writer/types.d.ts +12 -17
  745. package/dist/report/assets/colors.cjs +70 -0
  746. package/dist/report/assets/colors.cjs.map +1 -0
  747. package/dist/report/assets/colors.d.cts +22 -0
  748. package/dist/report/assets/colors.d.mts +22 -0
  749. package/dist/report/assets/colors.d.ts +22 -0
  750. package/dist/report/assets/colors.js +18 -0
  751. package/dist/report/assets/colors.js.map +1 -0
  752. package/dist/report/assets/enhance.js +466 -0
  753. package/dist/report/assets/series-encoding.cjs +116 -0
  754. package/dist/report/assets/series-encoding.cjs.map +1 -0
  755. package/dist/report/assets/series-encoding.d.cts +36 -0
  756. package/dist/report/assets/series-encoding.d.mts +36 -0
  757. package/dist/report/assets/series-encoding.d.ts +36 -0
  758. package/dist/report/assets/series-encoding.js +22 -0
  759. package/dist/report/assets/series-encoding.js.map +1 -0
  760. package/dist/report/assets/styles.css +2678 -0
  761. package/dist/report/built-in/analysis-values.cjs +28 -0
  762. package/dist/report/built-in/analysis-values.cjs.map +1 -0
  763. package/dist/report/built-in/analysis-values.d.cts +41 -0
  764. package/dist/report/built-in/analysis-values.d.mts +41 -0
  765. package/dist/report/built-in/analysis-values.d.ts +41 -0
  766. package/dist/report/built-in/analysis-values.js +10 -0
  767. package/dist/report/built-in/analysis-values.js.map +1 -0
  768. package/dist/report/built-in/attempt-overview.cjs +62 -384
  769. package/dist/report/built-in/attempt-overview.cjs.map +1 -1
  770. package/dist/report/built-in/attempt-overview.d.cts +4 -8
  771. package/dist/report/built-in/attempt-overview.d.mts +4 -8
  772. package/dist/report/built-in/attempt-overview.d.ts +4 -8
  773. package/dist/report/built-in/execution.cjs +40 -747
  774. package/dist/report/built-in/execution.cjs.map +1 -1
  775. package/dist/report/built-in/execution.d.cts +10 -19
  776. package/dist/report/built-in/execution.d.mts +10 -19
  777. package/dist/report/built-in/execution.d.ts +10 -19
  778. package/dist/report/built-in/index.cjs +15 -28
  779. package/dist/report/built-in/index.cjs.map +1 -1
  780. package/dist/report/built-in/index.d.cts +4 -6
  781. package/dist/report/built-in/index.d.mts +4 -6
  782. package/dist/report/built-in/index.d.ts +4 -6
  783. package/dist/report/built-in/index.js +22 -31
  784. package/dist/report/built-in/index.mjs +22 -31
  785. package/dist/report/built-in/machine.cjs +41 -0
  786. package/dist/report/built-in/machine.cjs.map +1 -0
  787. package/dist/report/built-in/machine.d.cts +29 -0
  788. package/dist/report/built-in/machine.d.mts +29 -0
  789. package/dist/report/built-in/machine.d.ts +29 -0
  790. package/dist/report/built-in/machine.js +8 -0
  791. package/dist/report/built-in/machine.js.map +1 -0
  792. package/dist/report/built-in/overview.cjs +38 -200
  793. package/dist/report/built-in/overview.cjs.map +1 -1
  794. package/dist/report/built-in/overview.d.cts +5 -5
  795. package/dist/report/built-in/overview.d.mts +5 -5
  796. package/dist/report/built-in/overview.d.ts +5 -5
  797. package/dist/report/built-in/overview.js +0 -2
  798. package/dist/report/built-in/result-components.cjs +325 -0
  799. package/dist/report/built-in/result-components.cjs.map +1 -0
  800. package/dist/report/built-in/result-components.d.cts +94 -0
  801. package/dist/report/built-in/result-components.d.mts +94 -0
  802. package/dist/report/built-in/result-components.d.ts +94 -0
  803. package/dist/report/built-in/result-components.js +24 -0
  804. package/dist/report/built-in/result-components.js.map +1 -0
  805. package/dist/report/built-in/run-membership-overview.cjs +48 -184
  806. package/dist/report/built-in/run-membership-overview.cjs.map +1 -1
  807. package/dist/report/built-in/run-membership-overview.d.cts +5 -5
  808. package/dist/report/built-in/run-membership-overview.d.mts +5 -5
  809. package/dist/report/built-in/run-membership-overview.d.ts +5 -5
  810. package/dist/report/built-in/sandbox-history.cjs +31 -372
  811. package/dist/report/built-in/sandbox-history.cjs.map +1 -1
  812. package/dist/report/built-in/sandbox-history.d.cts +5 -8
  813. package/dist/report/built-in/sandbox-history.d.mts +5 -8
  814. package/dist/report/built-in/sandbox-history.d.ts +5 -8
  815. package/dist/report/built-in/source.cjs +40 -150
  816. package/dist/report/built-in/source.cjs.map +1 -1
  817. package/dist/report/built-in/source.d.cts +10 -11
  818. package/dist/report/built-in/source.d.mts +10 -11
  819. package/dist/report/built-in/source.d.ts +10 -11
  820. package/dist/report/built-in/source.js +1 -0
  821. package/dist/report/built-in/standard.cjs +135 -0
  822. package/dist/report/built-in/standard.cjs.map +1 -0
  823. package/dist/report/built-in/standard.d.cts +91 -0
  824. package/dist/report/built-in/standard.d.mts +91 -0
  825. package/dist/report/built-in/standard.d.ts +91 -0
  826. package/dist/report/built-in/standard.js +17 -0
  827. package/dist/report/built-in/standard.js.map +1 -0
  828. package/dist/report/components/attempt-detail/compute.cjs +763 -0
  829. package/dist/report/components/attempt-detail/compute.cjs.map +1 -0
  830. package/dist/report/components/attempt-detail/compute.d.cts +370 -0
  831. package/dist/report/components/attempt-detail/compute.d.mts +370 -0
  832. package/dist/report/components/attempt-detail/compute.d.ts +370 -0
  833. package/dist/report/components/attempt-detail/compute.js +46 -0
  834. package/dist/report/components/attempt-detail/compute.js.map +1 -0
  835. package/dist/report/components/attempt-detail/content.cjs +411 -0
  836. package/dist/report/components/attempt-detail/content.cjs.map +1 -0
  837. package/dist/report/components/attempt-detail/content.d.cts +34 -0
  838. package/dist/report/components/attempt-detail/content.d.mts +34 -0
  839. package/dist/report/components/attempt-detail/content.d.ts +34 -0
  840. package/dist/report/components/attempt-detail/content.js +30 -0
  841. package/dist/report/components/attempt-detail/content.js.map +1 -0
  842. package/dist/report/components/attempt-detail/index.cjs +314 -0
  843. package/dist/report/components/attempt-detail/index.cjs.map +1 -0
  844. package/dist/report/components/attempt-detail/index.d.cts +27 -0
  845. package/dist/report/components/attempt-detail/index.d.mts +27 -0
  846. package/dist/report/components/attempt-detail/index.d.ts +27 -0
  847. package/dist/report/components/attempt-detail/index.js +34 -0
  848. package/dist/report/components/attempt-detail/index.js.map +1 -0
  849. package/dist/report/components/attempt-detail/validate.cjs +497 -0
  850. package/dist/report/components/attempt-detail/validate.cjs.map +1 -0
  851. package/dist/report/components/attempt-detail/validate.d.cts +14 -0
  852. package/dist/report/components/attempt-detail/validate.d.mts +14 -0
  853. package/dist/report/components/attempt-detail/validate.d.ts +14 -0
  854. package/dist/report/components/attempt-detail/validate.js +30 -0
  855. package/dist/report/components/attempt-detail/validate.js.map +1 -0
  856. package/dist/report/components/entity-lists/compute.cjs +426 -0
  857. package/dist/report/components/entity-lists/compute.cjs.map +1 -0
  858. package/dist/report/components/entity-lists/compute.d.cts +107 -0
  859. package/dist/report/components/entity-lists/compute.d.mts +107 -0
  860. package/dist/report/components/entity-lists/compute.d.ts +107 -0
  861. package/dist/report/components/entity-lists/compute.js +12 -0
  862. package/dist/report/components/entity-lists/compute.js.map +1 -0
  863. package/dist/report/components/entity-lists/content.cjs +275 -0
  864. package/dist/report/components/entity-lists/content.cjs.map +1 -0
  865. package/dist/report/components/entity-lists/content.d.cts +4 -0
  866. package/dist/report/components/entity-lists/content.d.mts +4 -0
  867. package/dist/report/components/entity-lists/content.d.ts +4 -0
  868. package/dist/report/components/entity-lists/content.js +8 -0
  869. package/dist/report/components/entity-lists/content.js.map +1 -0
  870. package/dist/report/components/entity-lists/index.cjs +48 -0
  871. package/dist/report/components/entity-lists/index.cjs.map +1 -0
  872. package/dist/report/components/entity-lists/index.d.cts +39 -0
  873. package/dist/report/components/entity-lists/index.d.mts +39 -0
  874. package/dist/report/components/entity-lists/index.d.ts +39 -0
  875. package/dist/report/components/entity-lists/index.js +22 -0
  876. package/dist/report/components/entity-lists/index.js.map +1 -0
  877. package/dist/report/components/experiment-detail/compute.cjs +228 -0
  878. package/dist/report/components/experiment-detail/compute.cjs.map +1 -0
  879. package/dist/report/components/experiment-detail/compute.d.cts +72 -0
  880. package/dist/report/components/experiment-detail/compute.d.mts +72 -0
  881. package/dist/report/components/experiment-detail/compute.d.ts +72 -0
  882. package/dist/report/components/experiment-detail/compute.js +6 -0
  883. package/dist/report/components/experiment-detail/compute.js.map +1 -0
  884. package/dist/report/components/experiment-detail/index.cjs +84 -0
  885. package/dist/report/components/experiment-detail/index.cjs.map +1 -0
  886. package/dist/report/components/experiment-detail/index.d.cts +13 -0
  887. package/dist/report/components/experiment-detail/index.d.mts +13 -0
  888. package/dist/report/components/experiment-detail/index.d.ts +13 -0
  889. package/dist/report/components/experiment-detail/index.js +6 -0
  890. package/dist/report/components/experiment-detail/index.js.map +1 -0
  891. package/dist/report/components/site-components/HeroCard.cjs +38 -0
  892. package/dist/report/components/site-components/HeroCard.cjs.map +1 -0
  893. package/dist/report/components/site-components/HeroCard.d.cts +14 -0
  894. package/dist/report/components/site-components/HeroCard.d.mts +14 -0
  895. package/dist/report/components/site-components/HeroCard.d.ts +14 -0
  896. package/dist/report/components/site-components/HeroCard.js +6 -0
  897. package/dist/report/components/site-components/HeroCard.js.map +1 -0
  898. package/dist/report/components/site-components/PoweredBy.cjs +12 -0
  899. package/dist/report/components/site-components/PoweredBy.cjs.map +1 -0
  900. package/dist/report/components/site-components/PoweredBy.d.cts +5 -0
  901. package/dist/report/components/site-components/PoweredBy.d.mts +5 -0
  902. package/dist/report/components/site-components/PoweredBy.d.ts +5 -0
  903. package/dist/report/components/site-components/PoweredBy.js +8 -0
  904. package/dist/report/components/site-components/PoweredBy.js.map +1 -0
  905. package/dist/report/components/site-components/compute.cjs +130 -0
  906. package/dist/report/components/site-components/compute.cjs.map +1 -0
  907. package/dist/report/components/site-components/compute.d.cts +36 -0
  908. package/dist/report/components/site-components/compute.d.mts +36 -0
  909. package/dist/report/components/site-components/compute.d.ts +36 -0
  910. package/dist/report/components/site-components/compute.js +16 -0
  911. package/dist/report/components/site-components/compute.js.map +1 -0
  912. package/dist/report/components/site-components/content.cjs +9 -0
  913. package/dist/report/components/site-components/content.cjs.map +1 -0
  914. package/dist/report/components/site-components/content.d.cts +118 -0
  915. package/dist/report/components/site-components/content.d.mts +118 -0
  916. package/dist/report/components/site-components/content.d.ts +118 -0
  917. package/dist/report/components/site-components/content.js +12 -0
  918. package/dist/report/components/site-components/content.js.map +1 -0
  919. package/dist/report/components/site-components/faces.cjs +33 -0
  920. package/dist/report/components/site-components/faces.cjs.map +1 -0
  921. package/dist/report/components/site-components/faces.d.cts +9 -0
  922. package/dist/report/components/site-components/faces.d.mts +9 -0
  923. package/dist/report/components/site-components/faces.d.ts +9 -0
  924. package/dist/report/components/site-components/faces.js +6 -0
  925. package/dist/report/components/site-components/faces.js.map +1 -0
  926. package/dist/report/components/site-components/hero-types.cjs +3 -0
  927. package/dist/report/components/site-components/hero-types.cjs.map +1 -0
  928. package/dist/report/components/site-components/hero-types.d.cts +17 -0
  929. package/dist/report/components/site-components/hero-types.d.mts +17 -0
  930. package/dist/report/components/site-components/hero-types.d.ts +17 -0
  931. package/dist/report/components/site-components/hero-types.js +4 -0
  932. package/dist/report/components/site-components/hero-types.js.map +1 -0
  933. package/dist/report/components/site-components/index.cjs +90 -0
  934. package/dist/report/components/site-components/index.cjs.map +1 -0
  935. package/dist/report/components/site-components/index.d.cts +58 -0
  936. package/dist/report/components/site-components/index.d.mts +58 -0
  937. package/dist/report/components/site-components/index.d.ts +58 -0
  938. package/dist/report/components/site-components/index.js +26 -0
  939. package/dist/report/components/site-components/index.js.map +1 -0
  940. package/dist/report/components/site-components/projections.cjs +86 -0
  941. package/dist/report/components/site-components/projections.cjs.map +1 -0
  942. package/dist/report/components/site-components/projections.d.cts +11 -0
  943. package/dist/report/components/site-components/projections.d.mts +11 -0
  944. package/dist/report/components/site-components/projections.d.ts +11 -0
  945. package/dist/report/components/site-components/projections.js +12 -0
  946. package/dist/report/components/site-components/projections.js.map +1 -0
  947. package/dist/report/components/site-components/scope-warnings.cjs +89 -0
  948. package/dist/report/components/site-components/scope-warnings.cjs.map +1 -0
  949. package/dist/report/components/site-components/scope-warnings.d.cts +34 -0
  950. package/dist/report/components/site-components/scope-warnings.d.mts +34 -0
  951. package/dist/report/components/site-components/scope-warnings.d.ts +34 -0
  952. package/dist/report/components/site-components/scope-warnings.js +8 -0
  953. package/dist/report/components/site-components/scope-warnings.js.map +1 -0
  954. package/dist/report/components/site-components/snapshot-diagnostics.cjs +43 -0
  955. package/dist/report/components/site-components/snapshot-diagnostics.cjs.map +1 -0
  956. package/dist/report/components/site-components/snapshot-diagnostics.d.cts +15 -0
  957. package/dist/report/components/site-components/snapshot-diagnostics.d.mts +15 -0
  958. package/dist/report/components/site-components/snapshot-diagnostics.d.ts +15 -0
  959. package/dist/report/components/site-components/snapshot-diagnostics.js +8 -0
  960. package/dist/report/components/site-components/snapshot-diagnostics.js.map +1 -0
  961. package/dist/report/components/site-components/validators.cjs +140 -0
  962. package/dist/report/components/site-components/validators.cjs.map +1 -0
  963. package/dist/report/components/site-components/validators.d.cts +9 -0
  964. package/dist/report/components/site-components/validators.d.mts +9 -0
  965. package/dist/report/components/site-components/validators.d.ts +9 -0
  966. package/dist/report/components/site-components/validators.js +16 -0
  967. package/dist/report/components/site-components/validators.js.map +1 -0
  968. package/dist/report/components/summaries/compute.cjs +224 -0
  969. package/dist/report/components/summaries/compute.cjs.map +1 -0
  970. package/dist/report/components/summaries/compute.d.cts +78 -0
  971. package/dist/report/components/summaries/compute.d.mts +78 -0
  972. package/dist/report/components/summaries/compute.d.ts +78 -0
  973. package/dist/report/components/summaries/compute.js +10 -0
  974. package/dist/report/components/summaries/compute.js.map +1 -0
  975. package/dist/report/components/summaries/index.cjs +68 -0
  976. package/dist/report/components/summaries/index.cjs.map +1 -0
  977. package/dist/report/components/summaries/index.d.cts +42 -0
  978. package/dist/report/components/summaries/index.d.mts +42 -0
  979. package/dist/report/components/summaries/index.d.ts +42 -0
  980. package/dist/report/components/summaries/index.js +12 -0
  981. package/dist/report/components/summaries/index.js.map +1 -0
  982. package/dist/report/components/summaries/stability-overview.cjs +27 -0
  983. package/dist/report/components/summaries/stability-overview.cjs.map +1 -0
  984. package/dist/report/components/summaries/stability-overview.d.cts +19 -0
  985. package/dist/report/components/summaries/stability-overview.d.mts +19 -0
  986. package/dist/report/components/summaries/stability-overview.d.ts +19 -0
  987. package/dist/report/components/summaries/stability-overview.js +6 -0
  988. package/dist/report/components/summaries/stability-overview.js.map +1 -0
  989. package/dist/report/definition/cell.cjs +90 -0
  990. package/dist/report/definition/cell.cjs.map +1 -0
  991. package/dist/report/definition/cell.d.cts +99 -0
  992. package/dist/report/definition/cell.d.mts +99 -0
  993. package/dist/report/definition/cell.d.ts +99 -0
  994. package/dist/report/definition/cell.js +8 -0
  995. package/dist/report/definition/cell.js.map +1 -0
  996. package/dist/report/definition/grid-layout.cjs +151 -0
  997. package/dist/report/definition/grid-layout.cjs.map +1 -0
  998. package/dist/report/definition/grid-layout.d.cts +77 -0
  999. package/dist/report/definition/grid-layout.d.mts +77 -0
  1000. package/dist/report/definition/grid-layout.d.ts +77 -0
  1001. package/dist/report/definition/grid-layout.js +20 -0
  1002. package/dist/report/definition/grid-layout.js.map +1 -0
  1003. package/dist/report/definition/primitives/callouts-logic.cjs +113 -0
  1004. package/dist/report/definition/primitives/callouts-logic.cjs.map +1 -0
  1005. package/dist/report/definition/primitives/callouts-logic.d.cts +26 -0
  1006. package/dist/report/definition/primitives/callouts-logic.d.mts +26 -0
  1007. package/dist/report/definition/primitives/callouts-logic.d.ts +26 -0
  1008. package/dist/report/definition/primitives/callouts-logic.js +20 -0
  1009. package/dist/report/definition/primitives/callouts-logic.js.map +1 -0
  1010. package/dist/report/definition/primitives/callouts.cjs +105 -0
  1011. package/dist/report/definition/primitives/callouts.cjs.map +1 -0
  1012. package/dist/report/definition/primitives/callouts.d.cts +9 -0
  1013. package/dist/report/definition/primitives/callouts.d.mts +9 -0
  1014. package/dist/report/definition/primitives/callouts.d.ts +9 -0
  1015. package/dist/report/definition/primitives/callouts.js +6 -0
  1016. package/dist/report/definition/primitives/callouts.js.map +1 -0
  1017. package/dist/report/definition/primitives/chart-map.cjs +138 -0
  1018. package/dist/report/definition/primitives/chart-map.cjs.map +1 -0
  1019. package/dist/report/definition/primitives/chart-map.d.cts +77 -0
  1020. package/dist/report/definition/primitives/chart-map.d.mts +77 -0
  1021. package/dist/report/definition/primitives/chart-map.d.ts +77 -0
  1022. package/dist/report/definition/primitives/chart-map.js +12 -0
  1023. package/dist/report/definition/primitives/chart-map.js.map +1 -0
  1024. package/dist/report/definition/primitives/chart.cjs +651 -0
  1025. package/dist/report/definition/primitives/chart.cjs.map +1 -0
  1026. package/dist/report/definition/primitives/chart.d.cts +43 -0
  1027. package/dist/report/definition/primitives/chart.d.mts +43 -0
  1028. package/dist/report/definition/primitives/chart.d.ts +43 -0
  1029. package/dist/report/definition/primitives/chart.js +8 -0
  1030. package/dist/report/definition/primitives/chart.js.map +1 -0
  1031. package/dist/report/definition/primitives/conversation.cjs +255 -0
  1032. package/dist/report/definition/primitives/conversation.cjs.map +1 -0
  1033. package/dist/report/definition/primitives/conversation.d.cts +71 -0
  1034. package/dist/report/definition/primitives/conversation.d.mts +71 -0
  1035. package/dist/report/definition/primitives/conversation.d.ts +71 -0
  1036. package/dist/report/definition/primitives/conversation.js +16 -0
  1037. package/dist/report/definition/primitives/conversation.js.map +1 -0
  1038. package/dist/report/definition/primitives/copy-block.cjs +55 -0
  1039. package/dist/report/definition/primitives/copy-block.cjs.map +1 -0
  1040. package/dist/report/definition/primitives/copy-block.d.cts +19 -0
  1041. package/dist/report/definition/primitives/copy-block.d.mts +19 -0
  1042. package/dist/report/definition/primitives/copy-block.d.ts +19 -0
  1043. package/dist/report/definition/primitives/copy-block.js +6 -0
  1044. package/dist/report/definition/primitives/copy-block.js.map +1 -0
  1045. package/dist/report/definition/primitives/diff-lines.cjs +163 -0
  1046. package/dist/report/definition/primitives/diff-lines.cjs.map +1 -0
  1047. package/dist/report/definition/primitives/diff-lines.d.cts +68 -0
  1048. package/dist/report/definition/primitives/diff-lines.d.mts +68 -0
  1049. package/dist/report/definition/primitives/diff-lines.d.ts +68 -0
  1050. package/dist/report/definition/primitives/diff-lines.js +28 -0
  1051. package/dist/report/definition/primitives/diff-lines.js.map +1 -0
  1052. package/dist/report/definition/primitives/diff-view.cjs +155 -0
  1053. package/dist/report/definition/primitives/diff-view.cjs.map +1 -0
  1054. package/dist/report/definition/primitives/diff-view.d.cts +14 -0
  1055. package/dist/report/definition/primitives/diff-view.d.mts +14 -0
  1056. package/dist/report/definition/primitives/diff-view.d.ts +14 -0
  1057. package/dist/report/definition/primitives/diff-view.js +8 -0
  1058. package/dist/report/definition/primitives/diff-view.js.map +1 -0
  1059. package/dist/report/definition/primitives/downloads.cjs +89 -0
  1060. package/dist/report/definition/primitives/downloads.cjs.map +1 -0
  1061. package/dist/report/definition/primitives/downloads.d.cts +28 -0
  1062. package/dist/report/definition/primitives/downloads.d.mts +28 -0
  1063. package/dist/report/definition/primitives/downloads.d.ts +28 -0
  1064. package/dist/report/definition/primitives/downloads.js +8 -0
  1065. package/dist/report/definition/primitives/downloads.js.map +1 -0
  1066. package/dist/report/definition/primitives/markdown.cjs +290 -0
  1067. package/dist/report/definition/primitives/markdown.cjs.map +1 -0
  1068. package/dist/report/definition/primitives/markdown.d.cts +29 -0
  1069. package/dist/report/definition/primitives/markdown.d.mts +29 -0
  1070. package/dist/report/definition/primitives/markdown.d.ts +29 -0
  1071. package/dist/report/definition/primitives/markdown.js +16 -0
  1072. package/dist/report/definition/primitives/markdown.js.map +1 -0
  1073. package/dist/report/definition/primitives/marks.cjs +96 -0
  1074. package/dist/report/definition/primitives/marks.cjs.map +1 -0
  1075. package/dist/report/definition/primitives/marks.d.cts +125 -0
  1076. package/dist/report/definition/primitives/marks.d.mts +125 -0
  1077. package/dist/report/definition/primitives/marks.d.ts +125 -0
  1078. package/dist/report/definition/primitives/marks.js +14 -0
  1079. package/dist/report/definition/primitives/marks.js.map +1 -0
  1080. package/dist/report/definition/primitives/points-dataset.cjs +147 -0
  1081. package/dist/report/definition/primitives/points-dataset.cjs.map +1 -0
  1082. package/dist/report/definition/primitives/points-dataset.d.cts +17 -0
  1083. package/dist/report/definition/primitives/points-dataset.d.mts +17 -0
  1084. package/dist/report/definition/primitives/points-dataset.d.ts +17 -0
  1085. package/dist/report/definition/primitives/points-dataset.js +6 -0
  1086. package/dist/report/definition/primitives/points-dataset.js.map +1 -0
  1087. package/dist/report/definition/primitives/shared.cjs +131 -0
  1088. package/dist/report/definition/primitives/shared.cjs.map +1 -0
  1089. package/dist/report/definition/primitives/shared.d.cts +67 -0
  1090. package/dist/report/definition/primitives/shared.d.mts +67 -0
  1091. package/dist/report/definition/primitives/shared.d.ts +67 -0
  1092. package/dist/report/definition/primitives/shared.js +34 -0
  1093. package/dist/report/definition/primitives/shared.js.map +1 -0
  1094. package/dist/report/definition/primitives/source-view.cjs +204 -0
  1095. package/dist/report/definition/primitives/source-view.cjs.map +1 -0
  1096. package/dist/report/definition/primitives/source-view.d.cts +47 -0
  1097. package/dist/report/definition/primitives/source-view.d.mts +47 -0
  1098. package/dist/report/definition/primitives/source-view.d.ts +47 -0
  1099. package/dist/report/definition/primitives/source-view.js +8 -0
  1100. package/dist/report/definition/primitives/source-view.js.map +1 -0
  1101. package/dist/report/definition/primitives/text-panel-state.cjs +38 -0
  1102. package/dist/report/definition/primitives/text-panel-state.cjs.map +1 -0
  1103. package/dist/report/definition/primitives/text-panel-state.d.cts +9 -0
  1104. package/dist/report/definition/primitives/text-panel-state.d.mts +9 -0
  1105. package/dist/report/definition/primitives/text-panel-state.d.ts +9 -0
  1106. package/dist/report/definition/primitives/text-panel-state.js +12 -0
  1107. package/dist/report/definition/primitives/text-panel-state.js.map +1 -0
  1108. package/dist/report/definition/primitives/tool-evidence.cjs +95 -0
  1109. package/dist/report/definition/primitives/tool-evidence.cjs.map +1 -0
  1110. package/dist/report/definition/primitives/tool-evidence.d.cts +11 -0
  1111. package/dist/report/definition/primitives/tool-evidence.d.mts +11 -0
  1112. package/dist/report/definition/primitives/tool-evidence.d.ts +11 -0
  1113. package/dist/report/definition/primitives/tool-evidence.js +6 -0
  1114. package/dist/report/definition/primitives/tool-evidence.js.map +1 -0
  1115. package/dist/report/definition/primitives/turn-trace.cjs +205 -0
  1116. package/dist/report/definition/primitives/turn-trace.cjs.map +1 -0
  1117. package/dist/report/definition/primitives/turn-trace.d.cts +8 -0
  1118. package/dist/report/definition/primitives/turn-trace.d.mts +8 -0
  1119. package/dist/report/definition/primitives/turn-trace.d.ts +8 -0
  1120. package/dist/report/definition/primitives/turn-trace.js +6 -0
  1121. package/dist/report/definition/primitives/turn-trace.js.map +1 -0
  1122. package/dist/report/definition/primitives/waterfall.cjs +206 -0
  1123. package/dist/report/definition/primitives/waterfall.cjs.map +1 -0
  1124. package/dist/report/definition/primitives/waterfall.d.cts +34 -0
  1125. package/dist/report/definition/primitives/waterfall.d.mts +34 -0
  1126. package/dist/report/definition/primitives/waterfall.d.ts +34 -0
  1127. package/dist/report/definition/primitives/waterfall.js +8 -0
  1128. package/dist/report/definition/primitives/waterfall.js.map +1 -0
  1129. package/dist/report/definition/primitives.cjs +826 -0
  1130. package/dist/report/definition/primitives.cjs.map +1 -0
  1131. package/dist/report/definition/primitives.d.cts +194 -0
  1132. package/dist/report/definition/primitives.d.mts +194 -0
  1133. package/dist/report/definition/primitives.d.ts +194 -0
  1134. package/dist/report/definition/primitives.js +84 -0
  1135. package/dist/report/definition/primitives.js.map +1 -0
  1136. package/dist/report/definition/report.cjs +778 -0
  1137. package/dist/report/definition/report.cjs.map +1 -0
  1138. package/dist/report/definition/report.d.cts +203 -0
  1139. package/dist/report/definition/report.d.mts +203 -0
  1140. package/dist/report/definition/report.d.ts +203 -0
  1141. package/dist/report/definition/report.js +16 -0
  1142. package/dist/report/definition/report.js.map +1 -0
  1143. package/dist/report/definition/table-text.cjs +184 -0
  1144. package/dist/report/definition/table-text.cjs.map +1 -0
  1145. package/dist/report/definition/table-text.d.cts +14 -0
  1146. package/dist/report/definition/table-text.d.mts +14 -0
  1147. package/dist/report/definition/table-text.d.ts +14 -0
  1148. package/dist/report/definition/table-text.js +6 -0
  1149. package/dist/report/definition/table-text.js.map +1 -0
  1150. package/dist/report/definition/tree.cjs +685 -0
  1151. package/dist/report/definition/tree.cjs.map +1 -0
  1152. package/dist/report/definition/tree.d.cts +165 -0
  1153. package/dist/report/definition/tree.d.mts +165 -0
  1154. package/dist/report/definition/tree.d.ts +165 -0
  1155. package/dist/report/definition/tree.js +44 -0
  1156. package/dist/report/definition/tree.js.map +1 -0
  1157. package/dist/report/execution/machine.cjs +587 -0
  1158. package/dist/report/execution/machine.cjs.map +1 -0
  1159. package/dist/report/execution/machine.d.cts +291 -0
  1160. package/dist/report/execution/machine.d.mts +291 -0
  1161. package/dist/report/execution/machine.d.ts +291 -0
  1162. package/dist/report/execution/machine.js +36 -0
  1163. package/dist/report/execution/machine.js.map +1 -0
  1164. package/dist/report/execution/model.cjs +91 -463
  1165. package/dist/report/execution/model.cjs.map +1 -1
  1166. package/dist/report/execution/model.d.cts +57 -39
  1167. package/dist/report/execution/model.d.mts +57 -39
  1168. package/dist/report/execution/model.d.ts +57 -39
  1169. package/dist/report/execution/model.js +36 -12
  1170. package/dist/report/execution/paths.cjs +182 -0
  1171. package/dist/report/execution/paths.cjs.map +1 -0
  1172. package/dist/report/execution/paths.d.cts +27 -0
  1173. package/dist/report/execution/paths.d.mts +27 -0
  1174. package/dist/report/execution/paths.d.ts +27 -0
  1175. package/dist/report/execution/paths.js +20 -0
  1176. package/dist/report/execution/paths.js.map +1 -0
  1177. package/dist/report/extension/assets.cjs +143 -0
  1178. package/dist/report/extension/assets.cjs.map +1 -0
  1179. package/dist/report/extension/assets.d.cts +17 -0
  1180. package/dist/report/extension/assets.d.mts +17 -0
  1181. package/dist/report/extension/assets.d.ts +17 -0
  1182. package/dist/report/extension/assets.js +10 -0
  1183. package/dist/report/extension/assets.js.map +1 -0
  1184. package/dist/report/extension/define.cjs +119 -0
  1185. package/dist/report/extension/define.cjs.map +1 -0
  1186. package/dist/report/extension/define.d.cts +11 -0
  1187. package/dist/report/extension/define.d.mts +11 -0
  1188. package/dist/report/extension/define.d.ts +11 -0
  1189. package/dist/report/extension/define.js +6 -0
  1190. package/dist/report/extension/define.js.map +1 -0
  1191. package/dist/report/extension/index.cjs +10 -0
  1192. package/dist/report/extension/index.cjs.map +1 -0
  1193. package/dist/report/extension/index.d.cts +6 -0
  1194. package/dist/report/extension/index.d.mts +6 -0
  1195. package/dist/report/extension/index.d.ts +6 -0
  1196. package/dist/report/extension/index.js +10 -0
  1197. package/dist/report/extension/index.js.map +1 -0
  1198. package/dist/report/extension/index.mjs +10 -0
  1199. package/dist/report/extension/index.mjs.map +1 -0
  1200. package/dist/report/extension/meta.cjs +59 -0
  1201. package/dist/report/extension/meta.cjs.map +1 -0
  1202. package/dist/report/extension/meta.d.cts +13 -0
  1203. package/dist/report/extension/meta.d.mts +13 -0
  1204. package/dist/report/extension/meta.d.ts +13 -0
  1205. package/dist/report/extension/meta.js +12 -0
  1206. package/dist/report/extension/meta.js.map +1 -0
  1207. package/dist/report/extension/types.cjs +3 -0
  1208. package/dist/report/extension/types.cjs.map +1 -0
  1209. package/dist/report/extension/types.d.cts +44 -0
  1210. package/dist/report/extension/types.d.mts +44 -0
  1211. package/dist/report/extension/types.d.ts +44 -0
  1212. package/dist/report/extension/types.js +4 -0
  1213. package/dist/report/extension/types.js.map +1 -0
  1214. package/dist/report/host/execute.cjs +457 -1238
  1215. package/dist/report/host/execute.cjs.map +1 -1
  1216. package/dist/report/host/execute.d.cts +66 -19
  1217. package/dist/report/host/execute.d.mts +66 -19
  1218. package/dist/report/host/execute.d.ts +66 -19
  1219. package/dist/report/host/execute.js +10 -2
  1220. package/dist/report/host/from-record.cjs +441 -27
  1221. package/dist/report/host/from-record.cjs.map +1 -1
  1222. package/dist/report/host/from-record.d.cts +62 -30
  1223. package/dist/report/host/from-record.d.mts +62 -30
  1224. package/dist/report/host/from-record.d.ts +62 -30
  1225. package/dist/report/host/from-record.js +8 -4
  1226. package/dist/report/host/index.cjs +31 -18
  1227. package/dist/report/host/index.cjs.map +1 -1
  1228. package/dist/report/host/index.d.cts +20 -11
  1229. package/dist/report/host/index.d.mts +20 -11
  1230. package/dist/report/host/index.d.ts +20 -11
  1231. package/dist/report/host/index.js +2 -20
  1232. package/dist/report/host/index.mjs +6 -0
  1233. package/dist/report/host/index.mjs.map +1 -0
  1234. package/dist/report/host/machine.cjs +102 -0
  1235. package/dist/report/host/machine.cjs.map +1 -0
  1236. package/dist/report/host/machine.d.cts +7 -0
  1237. package/dist/report/host/machine.d.mts +7 -0
  1238. package/dist/report/host/machine.d.ts +7 -0
  1239. package/dist/report/host/machine.js +6 -0
  1240. package/dist/report/host/machine.js.map +1 -0
  1241. package/dist/report/host/node/loader.cjs +40 -19
  1242. package/dist/report/host/node/loader.cjs.map +1 -1
  1243. package/dist/report/host/node/loader.d.cts +8 -7
  1244. package/dist/report/host/node/loader.d.mts +8 -7
  1245. package/dist/report/host/node/loader.d.ts +8 -7
  1246. package/dist/report/host/node.cjs +1 -1
  1247. package/dist/report/host/node.cjs.map +1 -1
  1248. package/dist/report/host/node.d.cts +3 -3
  1249. package/dist/report/host/node.d.mts +3 -3
  1250. package/dist/report/host/node.d.ts +3 -3
  1251. package/dist/report/host/progress.cjs +41 -0
  1252. package/dist/report/host/progress.cjs.map +1 -0
  1253. package/dist/report/host/progress.d.cts +22 -0
  1254. package/dist/report/host/progress.d.mts +22 -0
  1255. package/dist/report/host/progress.d.ts +22 -0
  1256. package/dist/report/host/progress.js +8 -0
  1257. package/dist/report/host/progress.js.map +1 -0
  1258. package/dist/report/host/show-target.cjs +214 -0
  1259. package/dist/report/host/show-target.cjs.map +1 -0
  1260. package/dist/report/host/show-target.d.cts +107 -0
  1261. package/dist/report/host/show-target.d.mts +107 -0
  1262. package/dist/report/host/show-target.d.ts +107 -0
  1263. package/dist/report/host/show-target.js +8 -0
  1264. package/dist/report/host/show-target.js.map +1 -0
  1265. package/dist/report/host/site-assets.cjs +11 -0
  1266. package/dist/report/host/site-assets.cjs.map +1 -0
  1267. package/dist/report/host/site-assets.d.cts +7 -0
  1268. package/dist/report/host/site-assets.d.mts +7 -0
  1269. package/dist/report/host/site-assets.d.ts +7 -0
  1270. package/dist/report/host/site-assets.js +8 -0
  1271. package/dist/report/host/site-assets.js.map +1 -0
  1272. package/dist/report/host/site-runtime.cjs +91 -0
  1273. package/dist/report/host/site-runtime.cjs.map +1 -0
  1274. package/dist/report/host/site-runtime.d.cts +9 -0
  1275. package/dist/report/host/site-runtime.d.mts +9 -0
  1276. package/dist/report/host/site-runtime.d.ts +9 -0
  1277. package/dist/report/host/site-runtime.js +10 -0
  1278. package/dist/report/host/site-runtime.js.map +1 -0
  1279. package/dist/report/host/static.cjs +694 -99
  1280. package/dist/report/host/static.cjs.map +1 -1
  1281. package/dist/report/host/static.d.cts +36 -19
  1282. package/dist/report/host/static.d.mts +36 -19
  1283. package/dist/report/host/static.d.ts +36 -19
  1284. package/dist/report/host/static.js +14 -4
  1285. package/dist/report/host/target-route.cjs +58 -0
  1286. package/dist/report/host/target-route.cjs.map +1 -0
  1287. package/dist/report/host/target-route.d.cts +15 -0
  1288. package/dist/report/host/target-route.d.mts +15 -0
  1289. package/dist/report/host/target-route.d.ts +15 -0
  1290. package/dist/report/host/target-route.js +8 -0
  1291. package/dist/report/host/target-route.js.map +1 -0
  1292. package/dist/report/host/view-session.cjs +68 -51
  1293. package/dist/report/host/view-session.cjs.map +1 -1
  1294. package/dist/report/host/view-session.d.cts +38 -44
  1295. package/dist/report/host/view-session.d.mts +38 -44
  1296. package/dist/report/host/view-session.d.ts +38 -44
  1297. package/dist/report/index.cjs +111 -52
  1298. package/dist/report/index.cjs.map +1 -1
  1299. package/dist/report/index.d.cts +39 -11
  1300. package/dist/report/index.d.mts +39 -11
  1301. package/dist/report/index.d.ts +39 -11
  1302. package/dist/report/index.js +188 -116
  1303. package/dist/report/index.mjs +188 -116
  1304. package/dist/report/library/details.cjs +166 -0
  1305. package/dist/report/library/details.cjs.map +1 -0
  1306. package/dist/report/library/details.d.cts +29 -0
  1307. package/dist/report/library/details.d.mts +29 -0
  1308. package/dist/report/library/details.d.ts +29 -0
  1309. package/dist/report/library/details.js +18 -0
  1310. package/dist/report/library/details.js.map +1 -0
  1311. package/dist/report/model/aggregate.cjs +243 -0
  1312. package/dist/report/model/aggregate.cjs.map +1 -0
  1313. package/dist/report/model/aggregate.d.cts +88 -0
  1314. package/dist/report/model/aggregate.d.mts +88 -0
  1315. package/dist/report/model/aggregate.d.ts +88 -0
  1316. package/dist/report/model/aggregate.js +26 -0
  1317. package/dist/report/model/aggregate.js.map +1 -0
  1318. package/dist/report/model/chart/math.cjs +206 -0
  1319. package/dist/report/model/chart/math.cjs.map +1 -0
  1320. package/dist/report/model/chart/math.d.cts +73 -0
  1321. package/dist/report/model/chart/math.d.mts +73 -0
  1322. package/dist/report/model/chart/math.d.ts +73 -0
  1323. package/dist/report/model/chart/math.js +14 -0
  1324. package/dist/report/model/chart/math.js.map +1 -0
  1325. package/dist/report/model/chart/plot.cjs +94 -0
  1326. package/dist/report/model/chart/plot.cjs.map +1 -0
  1327. package/dist/report/model/chart/plot.d.cts +52 -0
  1328. package/dist/report/model/chart/plot.d.mts +52 -0
  1329. package/dist/report/model/chart/plot.d.ts +52 -0
  1330. package/dist/report/model/chart/plot.js +8 -0
  1331. package/dist/report/model/chart/plot.js.map +1 -0
  1332. package/dist/report/model/conversions.cjs +100 -0
  1333. package/dist/report/model/conversions.cjs.map +1 -0
  1334. package/dist/report/model/conversions.d.cts +40 -0
  1335. package/dist/report/model/conversions.d.mts +40 -0
  1336. package/dist/report/model/conversions.d.ts +40 -0
  1337. package/dist/report/model/conversions.js +24 -0
  1338. package/dist/report/model/conversions.js.map +1 -0
  1339. package/dist/report/model/dataset.cjs +255 -0
  1340. package/dist/report/model/dataset.cjs.map +1 -0
  1341. package/dist/report/model/dataset.d.cts +33 -0
  1342. package/dist/report/model/dataset.d.mts +33 -0
  1343. package/dist/report/model/dataset.d.ts +33 -0
  1344. package/dist/report/model/dataset.js +22 -0
  1345. package/dist/report/model/dataset.js.map +1 -0
  1346. package/dist/report/model/format.cjs +377 -0
  1347. package/dist/report/model/format.cjs.map +1 -0
  1348. package/dist/report/model/format.d.cts +98 -0
  1349. package/dist/report/model/format.d.mts +98 -0
  1350. package/dist/report/model/format.d.ts +98 -0
  1351. package/dist/report/model/format.js +38 -0
  1352. package/dist/report/model/format.js.map +1 -0
  1353. package/dist/report/model/locale.cjs +437 -0
  1354. package/dist/report/model/locale.cjs.map +1 -0
  1355. package/dist/report/model/locale.d.cts +220 -0
  1356. package/dist/report/model/locale.d.mts +220 -0
  1357. package/dist/report/model/locale.d.ts +220 -0
  1358. package/dist/report/model/locale.js +20 -0
  1359. package/dist/report/model/locale.js.map +1 -0
  1360. package/dist/report/model/metrics.cjs +254 -0
  1361. package/dist/report/model/metrics.cjs.map +1 -0
  1362. package/dist/report/model/metrics.d.cts +73 -0
  1363. package/dist/report/model/metrics.d.mts +73 -0
  1364. package/dist/report/model/metrics.d.ts +73 -0
  1365. package/dist/report/model/metrics.js +26 -0
  1366. package/dist/report/model/metrics.js.map +1 -0
  1367. package/dist/report/model/pricing.cjs +126 -0
  1368. package/dist/report/model/pricing.cjs.map +1 -0
  1369. package/dist/report/model/pricing.d.cts +37 -0
  1370. package/dist/report/model/pricing.d.mts +37 -0
  1371. package/dist/report/model/pricing.d.ts +37 -0
  1372. package/dist/report/model/pricing.js +16 -0
  1373. package/dist/report/model/pricing.js.map +1 -0
  1374. package/dist/report/model/text-layout.cjs +8 -0
  1375. package/dist/report/model/text-layout.cjs.map +1 -1
  1376. package/dist/report/model/text-layout.d.cts +7 -0
  1377. package/dist/report/model/text-layout.d.mts +7 -0
  1378. package/dist/report/model/text-layout.d.ts +7 -0
  1379. package/dist/report/model/text-layout.js +30 -18
  1380. package/dist/report/model/types.cjs +3 -0
  1381. package/dist/report/model/types.cjs.map +1 -0
  1382. package/dist/report/model/types.d.cts +64 -0
  1383. package/dist/report/model/types.d.mts +64 -0
  1384. package/dist/report/model/types.d.ts +64 -0
  1385. package/dist/report/model/types.js +4 -0
  1386. package/dist/report/model/types.js.map +1 -0
  1387. package/dist/report/presentation.cjs +219 -0
  1388. package/dist/report/presentation.cjs.map +1 -0
  1389. package/dist/report/presentation.d.cts +114 -0
  1390. package/dist/report/presentation.d.mts +114 -0
  1391. package/dist/report/presentation.d.ts +114 -0
  1392. package/dist/report/presentation.js +18 -0
  1393. package/dist/report/react/enhance.js +466 -0
  1394. package/dist/report/react/index.cjs +40 -0
  1395. package/dist/report/react/index.cjs.map +1 -0
  1396. package/dist/report/react/index.d.cts +9 -0
  1397. package/dist/report/react/index.d.mts +9 -0
  1398. package/dist/report/react/index.d.ts +9 -0
  1399. package/dist/report/react/index.js +64 -0
  1400. package/dist/report/react/index.js.map +1 -0
  1401. package/dist/report/react/index.mjs +64 -0
  1402. package/dist/report/react/index.mjs.map +1 -0
  1403. package/dist/report/react/styles.css +2678 -0
  1404. package/dist/report/runtime/resolved-page.cjs +317 -0
  1405. package/dist/report/runtime/resolved-page.cjs.map +1 -0
  1406. package/dist/report/runtime/resolved-page.d.cts +133 -0
  1407. package/dist/report/runtime/resolved-page.d.mts +133 -0
  1408. package/dist/report/runtime/resolved-page.d.ts +133 -0
  1409. package/dist/report/runtime/resolved-page.js +14 -0
  1410. package/dist/report/runtime/resolved-page.js.map +1 -0
  1411. package/dist/report/runtime/text.cjs +32 -0
  1412. package/dist/report/runtime/text.cjs.map +1 -0
  1413. package/dist/report/runtime/text.d.cts +24 -0
  1414. package/dist/report/runtime/text.d.mts +24 -0
  1415. package/dist/report/runtime/text.d.ts +24 -0
  1416. package/dist/report/runtime/text.js +8 -0
  1417. package/dist/report/runtime/text.js.map +1 -0
  1418. package/dist/report/runtime/web.cjs +31 -0
  1419. package/dist/report/runtime/web.cjs.map +1 -0
  1420. package/dist/report/runtime/web.d.cts +21 -0
  1421. package/dist/report/runtime/web.d.mts +21 -0
  1422. package/dist/report/runtime/web.d.ts +21 -0
  1423. package/dist/report/runtime/web.js +8 -0
  1424. package/dist/report/runtime/web.js.map +1 -0
  1425. package/dist/report/theme.cjs +141 -0
  1426. package/dist/report/theme.cjs.map +1 -0
  1427. package/dist/report/theme.d.cts +57 -0
  1428. package/dist/report/theme.d.mts +57 -0
  1429. package/dist/report/theme.d.ts +57 -0
  1430. package/dist/report/theme.js +20 -0
  1431. package/dist/runner/accept.cjs +74 -87
  1432. package/dist/runner/accept.cjs.map +1 -1
  1433. package/dist/runner/accept.d.cts +14 -17
  1434. package/dist/runner/accept.d.mts +14 -17
  1435. package/dist/runner/accept.d.ts +14 -17
  1436. package/dist/runner/accept.js +4 -8
  1437. package/dist/runner/adoption.cjs +346 -408
  1438. package/dist/runner/adoption.cjs.map +1 -1
  1439. package/dist/runner/adoption.d.cts +132 -116
  1440. package/dist/runner/adoption.d.mts +132 -116
  1441. package/dist/runner/adoption.d.ts +132 -116
  1442. package/dist/runner/adoption.js +42 -46
  1443. package/dist/runner/attempt.cjs +175 -74
  1444. package/dist/runner/attempt.cjs.map +1 -1
  1445. package/dist/runner/attempt.d.cts +1 -1
  1446. package/dist/runner/attempt.d.mts +1 -1
  1447. package/dist/runner/attempt.d.ts +1 -1
  1448. package/dist/runner/cleanup-timeout.cjs +12 -6
  1449. package/dist/runner/cleanup-timeout.cjs.map +1 -1
  1450. package/dist/runner/cleanup-timeout.d.cts +5 -5
  1451. package/dist/runner/cleanup-timeout.d.mts +5 -5
  1452. package/dist/runner/cleanup-timeout.d.ts +5 -5
  1453. package/dist/runner/execution-identity.cjs +25 -0
  1454. package/dist/runner/execution-identity.cjs.map +1 -0
  1455. package/dist/runner/execution-identity.d.cts +39 -0
  1456. package/dist/runner/execution-identity.d.mts +39 -0
  1457. package/dist/runner/execution-identity.d.ts +39 -0
  1458. package/dist/runner/execution-identity.js +8 -0
  1459. package/dist/runner/execution-identity.js.map +1 -0
  1460. package/dist/runner/feedback/failure.cjs +0 -2
  1461. package/dist/runner/feedback/failure.cjs.map +1 -1
  1462. package/dist/runner/feedback/human.cjs +47 -20
  1463. package/dist/runner/feedback/human.cjs.map +1 -1
  1464. package/dist/runner/feedback/index.cjs.map +1 -1
  1465. package/dist/runner/feedback/index.d.cts +1 -1
  1466. package/dist/runner/feedback/index.d.mts +1 -1
  1467. package/dist/runner/feedback/index.d.ts +1 -1
  1468. package/dist/runner/feedback/json.cjs +29 -7
  1469. package/dist/runner/feedback/json.cjs.map +1 -1
  1470. package/dist/runner/feedback/json.d.cts +14 -1
  1471. package/dist/runner/feedback/json.d.mts +14 -1
  1472. package/dist/runner/feedback/json.d.ts +14 -1
  1473. package/dist/runner/feedback/reducer.cjs +3 -1
  1474. package/dist/runner/feedback/reducer.cjs.map +1 -1
  1475. package/dist/runner/feedback/sink.cjs +1 -1
  1476. package/dist/runner/feedback/sink.cjs.map +1 -1
  1477. package/dist/runner/feedback/sink.d.cts +6 -6
  1478. package/dist/runner/feedback/sink.d.mts +6 -6
  1479. package/dist/runner/feedback/sink.d.ts +6 -6
  1480. package/dist/runner/fingerprint.cjs +8 -2
  1481. package/dist/runner/fingerprint.cjs.map +1 -1
  1482. package/dist/runner/fingerprint.d.cts +9 -0
  1483. package/dist/runner/fingerprint.d.mts +9 -0
  1484. package/dist/runner/fingerprint.d.ts +9 -0
  1485. package/dist/runner/fingerprint.js +4 -2
  1486. package/dist/runner/gate-lease.cjs +24 -12
  1487. package/dist/runner/gate-lease.cjs.map +1 -1
  1488. package/dist/runner/ledger.cjs +27 -5
  1489. package/dist/runner/ledger.cjs.map +1 -1
  1490. package/dist/runner/lock.cjs +24 -11
  1491. package/dist/runner/lock.cjs.map +1 -1
  1492. package/dist/runner/project-current.cjs +63 -0
  1493. package/dist/runner/project-current.cjs.map +1 -1
  1494. package/dist/runner/project-current.d.cts +2 -0
  1495. package/dist/runner/project-current.d.mts +2 -0
  1496. package/dist/runner/project-current.d.ts +2 -0
  1497. package/dist/runner/record.cjs +659 -667
  1498. package/dist/runner/record.cjs.map +1 -1
  1499. package/dist/runner/record.d.cts +54 -81
  1500. package/dist/runner/record.d.mts +54 -81
  1501. package/dist/runner/record.d.ts +54 -81
  1502. package/dist/runner/rename-experiment.cjs +95 -54
  1503. package/dist/runner/rename-experiment.cjs.map +1 -1
  1504. package/dist/runner/rename-experiment.d.cts +19 -21
  1505. package/dist/runner/rename-experiment.d.mts +19 -21
  1506. package/dist/runner/rename-experiment.d.ts +19 -21
  1507. package/dist/runner/rename-experiment.js +2 -4
  1508. package/dist/runner/report.cjs +7 -2
  1509. package/dist/runner/report.cjs.map +1 -1
  1510. package/dist/runner/reporters/braintrust.cjs +4 -16
  1511. package/dist/runner/reporters/braintrust.cjs.map +1 -1
  1512. package/dist/runner/reporters/braintrust.d.cts +22 -5
  1513. package/dist/runner/reporters/braintrust.d.mts +22 -5
  1514. package/dist/runner/reporters/braintrust.d.ts +22 -5
  1515. package/dist/runner/reuse-plan.cjs +256 -435
  1516. package/dist/runner/reuse-plan.cjs.map +1 -1
  1517. package/dist/runner/reuse-plan.d.cts +43 -63
  1518. package/dist/runner/reuse-plan.d.mts +43 -63
  1519. package/dist/runner/reuse-plan.d.ts +43 -63
  1520. package/dist/runner/reuse-plan.js +6 -8
  1521. package/dist/runner/reuse-readback.cjs +157 -170
  1522. package/dist/runner/reuse-readback.cjs.map +1 -1
  1523. package/dist/runner/reuse-readback.d.cts +46 -62
  1524. package/dist/runner/reuse-readback.d.mts +46 -62
  1525. package/dist/runner/reuse-readback.d.ts +46 -62
  1526. package/dist/runner/reuse-readback.js +0 -2
  1527. package/dist/runner/run.cjs +110 -135
  1528. package/dist/runner/run.cjs.map +1 -1
  1529. package/dist/runner/run.d.cts +1 -1
  1530. package/dist/runner/run.d.mts +1 -1
  1531. package/dist/runner/run.d.ts +1 -1
  1532. package/dist/runner/sandbox-pool.cjs +55 -43
  1533. package/dist/runner/sandbox-pool.cjs.map +1 -1
  1534. package/dist/runner/sandbox-record-producer.cjs +21 -6
  1535. package/dist/runner/sandbox-record-producer.cjs.map +1 -1
  1536. package/dist/runner/sandbox-record-producer.d.cts +6 -4
  1537. package/dist/runner/sandbox-record-producer.d.mts +6 -4
  1538. package/dist/runner/sandbox-record-producer.d.ts +6 -4
  1539. package/dist/runner/sandbox-record-producer.js +4 -0
  1540. package/dist/runner/source-producer.cjs +208 -268
  1541. package/dist/runner/source-producer.cjs.map +1 -1
  1542. package/dist/runner/source-producer.d.cts +32 -17
  1543. package/dist/runner/source-producer.d.mts +32 -17
  1544. package/dist/runner/source-producer.d.ts +32 -17
  1545. package/dist/runner/source-producer.js +6 -4
  1546. package/dist/runner/timing.cjs +13 -9
  1547. package/dist/runner/timing.cjs.map +1 -1
  1548. package/dist/runner/types.cjs +3 -2
  1549. package/dist/runner/types.cjs.map +1 -1
  1550. package/dist/runner/types.d.cts +34 -52
  1551. package/dist/runner/types.d.mts +34 -52
  1552. package/dist/runner/types.d.ts +34 -52
  1553. package/dist/runner/types.js +30 -28
  1554. package/dist/sample/analysis.cjs +925 -919
  1555. package/dist/sample/analysis.cjs.map +1 -1
  1556. package/dist/sample/analysis.d.cts +32 -144
  1557. package/dist/sample/analysis.d.mts +32 -144
  1558. package/dist/sample/analysis.d.ts +32 -144
  1559. package/dist/sample/analysis.js +14 -26
  1560. package/dist/sample/capability.cjs +761 -0
  1561. package/dist/sample/capability.cjs.map +1 -0
  1562. package/dist/sample/capability.d.cts +189 -0
  1563. package/dist/sample/capability.d.mts +189 -0
  1564. package/dist/sample/capability.d.ts +189 -0
  1565. package/dist/sample/capability.js +36 -0
  1566. package/dist/sample/capability.js.map +1 -0
  1567. package/dist/sample/index.cjs +9 -13
  1568. package/dist/sample/index.cjs.map +1 -1
  1569. package/dist/sample/index.d.cts +2 -2
  1570. package/dist/sample/index.d.mts +2 -2
  1571. package/dist/sample/index.d.ts +2 -2
  1572. package/dist/sample/index.js +10 -24
  1573. package/dist/sandbox/build-coordinator.cjs +146 -147
  1574. package/dist/sandbox/build-coordinator.cjs.map +1 -1
  1575. package/dist/sandbox/case-types.cjs.map +1 -1
  1576. package/dist/sandbox/case-types.d.cts +6 -0
  1577. package/dist/sandbox/case-types.d.mts +6 -0
  1578. package/dist/sandbox/case-types.d.ts +6 -0
  1579. package/dist/sandbox/commands.cjs.map +1 -1
  1580. package/dist/sandbox/commands.d.cts +0 -2
  1581. package/dist/sandbox/commands.d.mts +0 -2
  1582. package/dist/sandbox/commands.d.ts +0 -2
  1583. package/dist/sandbox/compose.cjs +212 -153
  1584. package/dist/sandbox/compose.cjs.map +1 -1
  1585. package/dist/sandbox/compose.d.cts +11 -2
  1586. package/dist/sandbox/compose.d.mts +11 -2
  1587. package/dist/sandbox/compose.d.ts +11 -2
  1588. package/dist/sandbox/compose.js +32 -30
  1589. package/dist/sandbox/docker.cjs +59 -38
  1590. package/dist/sandbox/docker.cjs.map +1 -1
  1591. package/dist/sandbox/docker.d.cts +2 -1
  1592. package/dist/sandbox/docker.d.mts +2 -1
  1593. package/dist/sandbox/docker.d.ts +2 -1
  1594. package/dist/sandbox/e2b.cjs +30 -18
  1595. package/dist/sandbox/e2b.cjs.map +1 -1
  1596. package/dist/sandbox/index.cjs +2 -2
  1597. package/dist/sandbox/index.cjs.map +1 -1
  1598. package/dist/sandbox/index.d.cts +2 -2
  1599. package/dist/sandbox/index.d.mts +2 -2
  1600. package/dist/sandbox/index.d.ts +2 -2
  1601. package/dist/sandbox/index.js +52 -52
  1602. package/dist/sandbox/index.mjs +52 -52
  1603. package/dist/sandbox/io-retry.cjs +18 -14
  1604. package/dist/sandbox/io-retry.cjs.map +1 -1
  1605. package/dist/sandbox/io-retry.d.cts +7 -4
  1606. package/dist/sandbox/io-retry.d.mts +7 -4
  1607. package/dist/sandbox/io-retry.d.ts +7 -4
  1608. package/dist/sandbox/keep.cjs +79 -52
  1609. package/dist/sandbox/keep.cjs.map +1 -1
  1610. package/dist/sandbox/layer.cjs.map +1 -1
  1611. package/dist/sandbox/layer.d.cts +3 -3
  1612. package/dist/sandbox/layer.d.mts +3 -3
  1613. package/dist/sandbox/layer.d.ts +3 -3
  1614. package/dist/sandbox/paths.cjs +96 -12
  1615. package/dist/sandbox/paths.cjs.map +1 -1
  1616. package/dist/sandbox/paths.d.cts +16 -0
  1617. package/dist/sandbox/paths.d.mts +16 -0
  1618. package/dist/sandbox/paths.d.ts +16 -0
  1619. package/dist/sandbox/paths.js +10 -8
  1620. package/dist/sandbox/prepare-commands.cjs +0 -5
  1621. package/dist/sandbox/prepare-commands.cjs.map +1 -1
  1622. package/dist/sandbox/prepare-commands.d.cts +1 -1
  1623. package/dist/sandbox/prepare-commands.d.mts +1 -1
  1624. package/dist/sandbox/prepare-commands.d.ts +1 -1
  1625. package/dist/sandbox/record/attachment.cjs +16 -53
  1626. package/dist/sandbox/record/attachment.cjs.map +1 -1
  1627. package/dist/sandbox/record/attachment.d.cts +11 -15
  1628. package/dist/sandbox/record/attachment.d.mts +11 -15
  1629. package/dist/sandbox/record/attachment.d.ts +11 -15
  1630. package/dist/sandbox/record/attachment.js +2 -6
  1631. package/dist/sandbox/record/codec.cjs +17 -17
  1632. package/dist/sandbox/record/codec.cjs.map +1 -1
  1633. package/dist/sandbox/record/codec.d.cts +12 -12
  1634. package/dist/sandbox/record/codec.d.mts +12 -12
  1635. package/dist/sandbox/record/codec.d.ts +12 -12
  1636. package/dist/sandbox/record/codec.js +4 -4
  1637. package/dist/sandbox/record/model.cjs +7 -7
  1638. package/dist/sandbox/record/model.cjs.map +1 -1
  1639. package/dist/sandbox/record/model.d.cts +13 -13
  1640. package/dist/sandbox/record/model.d.mts +13 -13
  1641. package/dist/sandbox/record/model.d.ts +13 -13
  1642. package/dist/sandbox/record/model.js +6 -6
  1643. package/dist/sandbox/record/projector.cjs +16 -25
  1644. package/dist/sandbox/record/projector.cjs.map +1 -1
  1645. package/dist/sandbox/record/projector.d.cts +4 -18
  1646. package/dist/sandbox/record/projector.d.mts +4 -18
  1647. package/dist/sandbox/record/projector.d.ts +4 -18
  1648. package/dist/sandbox/record/projector.js +2 -2
  1649. package/dist/sandbox/registry.cjs +19 -9
  1650. package/dist/sandbox/registry.cjs.map +1 -1
  1651. package/dist/sandbox/request-executor.cjs +63 -0
  1652. package/dist/sandbox/request-executor.cjs.map +1 -0
  1653. package/dist/sandbox/request-executor.d.cts +16 -0
  1654. package/dist/sandbox/request-executor.d.mts +16 -0
  1655. package/dist/sandbox/request-executor.d.ts +16 -0
  1656. package/dist/sandbox/request-executor.js +8 -0
  1657. package/dist/sandbox/request-executor.js.map +1 -0
  1658. package/dist/sandbox/retry.cjs +42 -38
  1659. package/dist/sandbox/retry.cjs.map +1 -1
  1660. package/dist/sandbox/retry.d.cts +6 -6
  1661. package/dist/sandbox/retry.d.mts +6 -6
  1662. package/dist/sandbox/retry.d.ts +6 -6
  1663. package/dist/sandbox/runtime.cjs +47 -56
  1664. package/dist/sandbox/runtime.cjs.map +1 -1
  1665. package/dist/sandbox/runtime.d.cts +1 -1
  1666. package/dist/sandbox/runtime.d.mts +1 -1
  1667. package/dist/sandbox/runtime.d.ts +1 -1
  1668. package/dist/sandbox/transfer-errors.cjs +37 -5
  1669. package/dist/sandbox/transfer-errors.cjs.map +1 -1
  1670. package/dist/sandbox/transfer-errors.d.cts +14 -0
  1671. package/dist/sandbox/transfer-errors.d.mts +14 -0
  1672. package/dist/sandbox/transfer-errors.d.ts +14 -0
  1673. package/dist/sandbox/transfer-errors.js +12 -8
  1674. package/dist/sandbox/types.cjs.map +1 -1
  1675. package/dist/sandbox/types.d.cts +0 -7
  1676. package/dist/sandbox/types.d.mts +0 -7
  1677. package/dist/sandbox/types.d.ts +0 -7
  1678. package/dist/sandbox/vercel.cjs +10 -14
  1679. package/dist/sandbox/vercel.cjs.map +1 -1
  1680. package/dist/sources/attachment.cjs +103 -248
  1681. package/dist/sources/attachment.cjs.map +1 -1
  1682. package/dist/sources/attachment.d.cts +47 -319
  1683. package/dist/sources/attachment.d.mts +47 -319
  1684. package/dist/sources/attachment.d.ts +47 -319
  1685. package/dist/sources/attachment.js +8 -18
  1686. package/dist/sources/codec.cjs +56 -56
  1687. package/dist/sources/codec.cjs.map +1 -1
  1688. package/dist/sources/codec.d.cts +63 -63
  1689. package/dist/sources/codec.d.mts +63 -63
  1690. package/dist/sources/codec.d.ts +63 -63
  1691. package/dist/sources/codec.js +44 -44
  1692. package/dist/sources/index.cjs +0 -2
  1693. package/dist/sources/index.cjs.map +1 -1
  1694. package/dist/sources/index.d.cts +0 -2
  1695. package/dist/sources/index.d.mts +0 -2
  1696. package/dist/sources/index.d.ts +0 -2
  1697. package/dist/sources/index.js +72 -86
  1698. package/dist/sources/model.cjs +2 -2
  1699. package/dist/sources/model.cjs.map +1 -1
  1700. package/dist/sources/model.d.cts +41 -41
  1701. package/dist/sources/model.d.mts +41 -41
  1702. package/dist/sources/model.d.ts +41 -41
  1703. package/dist/sources/model.js +2 -2
  1704. package/dist/sources/projector.cjs +39 -268
  1705. package/dist/sources/projector.cjs.map +1 -1
  1706. package/dist/sources/projector.d.cts +40 -8
  1707. package/dist/sources/projector.d.mts +40 -8
  1708. package/dist/sources/projector.d.ts +40 -8
  1709. package/dist/sources/projector.js +4 -6
  1710. package/dist/types.js +30 -28
  1711. package/dist/view/data.cjs.map +1 -1
  1712. package/dist/view/data.d.cts +5 -4
  1713. package/dist/view/data.d.mts +5 -4
  1714. package/dist/view/data.d.ts +5 -4
  1715. package/dist/view/index.cjs +3 -4
  1716. package/dist/view/index.cjs.map +1 -1
  1717. package/dist/view/index.d.cts +2 -2
  1718. package/dist/view/index.d.mts +2 -2
  1719. package/dist/view/index.d.ts +2 -2
  1720. package/dist/view/index.js +2 -4
  1721. package/dist/view/report-view-cache.cjs +200 -0
  1722. package/dist/view/report-view-cache.cjs.map +1 -0
  1723. package/dist/view/report-view-cache.d.cts +67 -0
  1724. package/dist/view/report-view-cache.d.mts +67 -0
  1725. package/dist/view/report-view-cache.d.ts +67 -0
  1726. package/dist/view/report-view-cache.js +8 -0
  1727. package/dist/view/report-view-cache.js.map +1 -0
  1728. package/dist/view/server.cjs +99 -102
  1729. package/dist/view/server.cjs.map +1 -1
  1730. package/dist/view/server.d.cts +0 -6
  1731. package/dist/view/server.d.mts +0 -6
  1732. package/dist/view/server.d.ts +0 -6
  1733. package/dist/view/shared/types.cjs.map +1 -1
  1734. package/dist/view/site.cjs +19 -27
  1735. package/dist/view/site.cjs.map +1 -1
  1736. package/dist/view/site.d.cts +10 -12
  1737. package/dist/view/site.d.mts +10 -12
  1738. package/dist/view/site.d.ts +10 -12
  1739. package/dist/view/site.js +2 -4
  1740. package/docs-site/zh/examples/integrations/ai-sdk-v7.mdx +8 -8
  1741. package/docs-site/zh/examples/integrations/claude-sdk.mdx +8 -8
  1742. package/docs-site/zh/examples/integrations/codex-sdk.mdx +4 -4
  1743. package/docs-site/zh/examples/integrations/langgraph.mdx +6 -6
  1744. package/docs-site/zh/examples/integrations/pi-sdk.mdx +9 -9
  1745. package/docs-site/zh/explanation/adapter.mdx +3 -1
  1746. package/docs-site/zh/explanation/assert.mdx +6 -6
  1747. package/docs-site/zh/explanation/drive.mdx +1 -1
  1748. package/docs-site/zh/explanation/evals.mdx +6 -3
  1749. package/docs-site/zh/explanation/hitl.mdx +4 -2
  1750. package/docs-site/zh/explanation/judge.mdx +6 -6
  1751. package/docs-site/zh/explanation/overview.mdx +28 -29
  1752. package/docs-site/zh/explanation/record.mdx +26 -36
  1753. package/docs-site/zh/explanation/runner.mdx +7 -8
  1754. package/docs-site/zh/index.mdx +1 -1
  1755. package/docs-site/zh/introduction.mdx +1 -1
  1756. package/docs-site/zh/reference/cli.mdx +16 -19
  1757. package/docs-site/zh/reference/define-agent.mdx +0 -8
  1758. package/docs-site/zh/reference/define-config.mdx +6 -2
  1759. package/docs-site/zh/reference/define-eval.mdx +7 -5
  1760. package/docs-site/zh/reference/events.mdx +6 -3
  1761. package/docs-site/zh/reference/report-components.mdx +92 -88
  1762. package/docs-site/zh/reference/results-data.mdx +39 -49
  1763. package/docs-site/zh/troubleshooting/debug-sandbox.mdx +1 -1
  1764. package/docs-site/zh/troubleshooting/debugging.mdx +27 -28
  1765. package/docs-site/zh/tutorials/agent-feedback-loop.mdx +4 -4
  1766. package/docs-site/zh/tutorials/agent-onboarding.mdx +2 -2
  1767. package/docs-site/zh/tutorials/authoring.mdx +6 -3
  1768. package/docs-site/zh/tutorials/connect-your-agent.mdx +2 -2
  1769. package/docs-site/zh/tutorials/custom-reports.mdx +148 -76
  1770. package/docs-site/zh/tutorials/deploy-report-site.mdx +14 -17
  1771. package/docs-site/zh/tutorials/evaluation-kinds.mdx +3 -3
  1772. package/docs-site/zh/tutorials/fixtures.mdx +5 -5
  1773. package/docs-site/zh/tutorials/handle-execution-failures.mdx +1 -1
  1774. package/docs-site/zh/tutorials/install-custom-sandbox-agent.mdx +1 -1
  1775. package/docs-site/zh/tutorials/publish-report.mdx +28 -28
  1776. package/docs-site/zh/tutorials/quickstart.mdx +2 -2
  1777. package/docs-site/zh/tutorials/reporters.mdx +4 -4
  1778. package/docs-site/zh/tutorials/rerun-and-cache.mdx +5 -5
  1779. package/docs-site/zh/tutorials/sandbox-agent.mdx +2 -2
  1780. package/docs-site/zh/tutorials/sandbox-providers.mdx +3 -3
  1781. package/docs-site/zh/tutorials/theming.mdx +47 -19
  1782. package/docs-site/zh/tutorials/viewing-results.mdx +43 -80
  1783. package/docs-site/zh/tutorials/write-experiment.mdx +16 -11
  1784. package/docs-site/zh/tutorials/write-send.mdx +11 -3
  1785. package/package.json +83 -11
  1786. package/dist/assertions/record/diff-model.cjs +0 -120
  1787. package/dist/assertions/record/diff-model.cjs.map +0 -1
  1788. package/dist/assertions/record/diff-model.d.cts +0 -47
  1789. package/dist/assertions/record/diff-model.d.mts +0 -47
  1790. package/dist/assertions/record/diff-model.d.ts +0 -47
  1791. package/dist/assertions/record/diff-model.js +0 -12
  1792. package/dist/assertions/record/diff-model.js.map +0 -1
  1793. package/dist/projection/attachment-result.cjs +0 -50
  1794. package/dist/projection/attachment-result.cjs.map +0 -1
  1795. package/dist/projection/attachment-result.d.cts +0 -38
  1796. package/dist/projection/attachment-result.d.mts +0 -38
  1797. package/dist/projection/attachment-result.d.ts +0 -38
  1798. package/dist/projection/attachment-result.js +0 -6
  1799. package/dist/projection/attachment-result.js.map +0 -1
  1800. package/dist/projection/attempt-selection.cjs +0 -87
  1801. package/dist/projection/attempt-selection.cjs.map +0 -1
  1802. package/dist/projection/attempt-selection.d.cts +0 -40
  1803. package/dist/projection/attempt-selection.d.mts +0 -40
  1804. package/dist/projection/attempt-selection.d.ts +0 -40
  1805. package/dist/projection/attempt-selection.js +0 -8
  1806. package/dist/projection/attempt-selection.js.map +0 -1
  1807. package/dist/projection/coverage.cjs +0 -106
  1808. package/dist/projection/coverage.cjs.map +0 -1
  1809. package/dist/projection/coverage.d.cts +0 -43
  1810. package/dist/projection/coverage.d.mts +0 -43
  1811. package/dist/projection/coverage.d.ts +0 -43
  1812. package/dist/projection/coverage.js +0 -6
  1813. package/dist/projection/coverage.js.map +0 -1
  1814. package/dist/projection/index.cjs +0 -36
  1815. package/dist/projection/index.cjs.map +0 -1
  1816. package/dist/projection/index.d.cts +0 -25
  1817. package/dist/projection/index.d.mts +0 -25
  1818. package/dist/projection/index.d.ts +0 -25
  1819. package/dist/projection/index.js +0 -46
  1820. package/dist/projection/index.mjs +0 -46
  1821. package/dist/projection/model.cjs +0 -3
  1822. package/dist/projection/model.cjs.map +0 -1
  1823. package/dist/projection/model.d.cts +0 -49
  1824. package/dist/projection/model.d.mts +0 -49
  1825. package/dist/projection/model.d.ts +0 -49
  1826. package/dist/projection/model.js +0 -4
  1827. package/dist/projection/model.js.map +0 -1
  1828. package/dist/projection/projector.cjs +0 -111
  1829. package/dist/projection/projector.cjs.map +0 -1
  1830. package/dist/projection/projector.d.cts +0 -51
  1831. package/dist/projection/projector.d.mts +0 -51
  1832. package/dist/projection/projector.d.ts +0 -51
  1833. package/dist/projection/projector.js +0 -16
  1834. package/dist/projection/projector.js.map +0 -1
  1835. package/dist/projection/runtime.cjs +0 -246
  1836. package/dist/projection/runtime.cjs.map +0 -1
  1837. package/dist/projection/runtime.d.cts +0 -14
  1838. package/dist/projection/runtime.d.mts +0 -14
  1839. package/dist/projection/runtime.d.ts +0 -14
  1840. package/dist/projection/runtime.js +0 -6
  1841. package/dist/record/migration/errors.cjs +0 -68
  1842. package/dist/record/migration/errors.cjs.map +0 -1
  1843. package/dist/record/migration/errors.d.cts +0 -73
  1844. package/dist/record/migration/errors.d.mts +0 -73
  1845. package/dist/record/migration/errors.d.ts +0 -73
  1846. package/dist/record/migration/errors.js +0 -22
  1847. package/dist/record/migration/errors.js.map +0 -1
  1848. package/dist/record/migration/identity.cjs +0 -27
  1849. package/dist/record/migration/identity.cjs.map +0 -1
  1850. package/dist/record/migration/identity.d.cts +0 -5
  1851. package/dist/record/migration/identity.d.mts +0 -5
  1852. package/dist/record/migration/identity.d.ts +0 -5
  1853. package/dist/record/migration/identity.js +0 -8
  1854. package/dist/record/migration/internal.cjs +0 -3
  1855. package/dist/record/migration/internal.cjs.map +0 -1
  1856. package/dist/record/migration/internal.d.cts +0 -111
  1857. package/dist/record/migration/internal.d.mts +0 -111
  1858. package/dist/record/migration/internal.d.ts +0 -111
  1859. package/dist/record/migration/internal.js +0 -4
  1860. package/dist/record/migration/internal.js.map +0 -1
  1861. package/dist/record/migration/orchestrate.cjs +0 -368
  1862. package/dist/record/migration/orchestrate.cjs.map +0 -1
  1863. package/dist/record/migration/orchestrate.d.cts +0 -113
  1864. package/dist/record/migration/orchestrate.d.mts +0 -113
  1865. package/dist/record/migration/orchestrate.d.ts +0 -113
  1866. package/dist/record/migration/orchestrate.js +0 -16
  1867. package/dist/record/migration/orchestrate.js.map +0 -1
  1868. package/dist/record/migration/plan.cjs +0 -63
  1869. package/dist/record/migration/plan.cjs.map +0 -1
  1870. package/dist/record/migration/plan.d.cts +0 -32
  1871. package/dist/record/migration/plan.d.mts +0 -32
  1872. package/dist/record/migration/plan.d.ts +0 -32
  1873. package/dist/record/migration/plan.js +0 -10
  1874. package/dist/record/migration/plan.js.map +0 -1
  1875. package/dist/record/migration/registry.cjs +0 -150
  1876. package/dist/record/migration/registry.cjs.map +0 -1
  1877. package/dist/record/migration/registry.d.cts +0 -61
  1878. package/dist/record/migration/registry.d.mts +0 -61
  1879. package/dist/record/migration/registry.d.ts +0 -61
  1880. package/dist/record/migration/registry.js +0 -14
  1881. package/dist/record/migration/registry.js.map +0 -1
  1882. package/dist/record/migration/storage.cjs +0 -382
  1883. package/dist/record/migration/storage.cjs.map +0 -1
  1884. package/dist/record/migration/storage.d.cts +0 -18
  1885. package/dist/record/migration/storage.d.mts +0 -18
  1886. package/dist/record/migration/storage.d.ts +0 -18
  1887. package/dist/record/migration/storage.js +0 -6
  1888. package/dist/record/migration/storage.js.map +0 -1
  1889. package/dist/record/migration/types.cjs.map +0 -1
  1890. package/dist/record/migration/types.d.cts +0 -16
  1891. package/dist/record/migration/types.d.mts +0 -16
  1892. package/dist/record/migration/types.d.ts +0 -16
  1893. package/dist/record/reader/internal.cjs +0 -17
  1894. package/dist/record/reader/internal.cjs.map +0 -1
  1895. package/dist/record/reader/internal.d.cts +0 -26
  1896. package/dist/record/reader/internal.d.mts +0 -26
  1897. package/dist/record/reader/internal.d.ts +0 -26
  1898. package/dist/record/reader/internal.js +0 -8
  1899. package/dist/record/reader/internal.js.map +0 -1
  1900. package/dist/record/writer/runtime.cjs +0 -656
  1901. package/dist/record/writer/runtime.cjs.map +0 -1
  1902. package/dist/record/writer/runtime.d.cts +0 -7
  1903. package/dist/record/writer/runtime.d.mts +0 -7
  1904. package/dist/record/writer/runtime.d.ts +0 -7
  1905. package/dist/record/writer/runtime.js +0 -6
  1906. package/dist/report/author/identity.cjs +0 -268
  1907. package/dist/report/author/identity.cjs.map +0 -1
  1908. package/dist/report/author/identity.d.cts +0 -75
  1909. package/dist/report/author/identity.d.mts +0 -75
  1910. package/dist/report/author/identity.d.ts +0 -75
  1911. package/dist/report/author/identity.js +0 -34
  1912. package/dist/report/author/identity.js.map +0 -1
  1913. package/dist/report/author/index.cjs +0 -19
  1914. package/dist/report/author/index.cjs.map +0 -1
  1915. package/dist/report/author/index.d.cts +0 -4
  1916. package/dist/report/author/index.d.mts +0 -4
  1917. package/dist/report/author/index.d.ts +0 -4
  1918. package/dist/report/author/index.js +0 -30
  1919. package/dist/report/author/internal.cjs +0 -98
  1920. package/dist/report/author/internal.cjs.map +0 -1
  1921. package/dist/report/author/internal.d.cts +0 -91
  1922. package/dist/report/author/internal.d.mts +0 -91
  1923. package/dist/report/author/internal.d.ts +0 -91
  1924. package/dist/report/author/internal.js +0 -18
  1925. package/dist/report/author/internal.js.map +0 -1
  1926. package/dist/report/author/model.cjs +0 -467
  1927. package/dist/report/author/model.cjs.map +0 -1
  1928. package/dist/report/author/model.d.cts +0 -241
  1929. package/dist/report/author/model.d.mts +0 -241
  1930. package/dist/report/author/model.d.ts +0 -241
  1931. package/dist/report/author/model.js +0 -32
  1932. package/dist/report/author/model.js.map +0 -1
  1933. package/dist/report/execution/index.cjs +0 -20
  1934. package/dist/report/execution/index.cjs.map +0 -1
  1935. package/dist/report/execution/index.d.cts +0 -3
  1936. package/dist/report/execution/index.d.mts +0 -3
  1937. package/dist/report/execution/index.d.ts +0 -3
  1938. package/dist/report/execution/index.js +0 -30
  1939. package/dist/report/execution/problems.cjs +0 -210
  1940. package/dist/report/execution/problems.cjs.map +0 -1
  1941. package/dist/report/execution/problems.d.cts +0 -54
  1942. package/dist/report/execution/problems.d.mts +0 -54
  1943. package/dist/report/execution/problems.d.ts +0 -54
  1944. package/dist/report/execution/problems.js +0 -14
  1945. package/dist/report/execution/problems.js.map +0 -1
  1946. package/dist/report/execution/results.cjs +0 -26
  1947. package/dist/report/execution/results.cjs.map +0 -1
  1948. package/dist/report/execution/results.d.cts +0 -102
  1949. package/dist/report/execution/results.d.mts +0 -102
  1950. package/dist/report/execution/results.d.ts +0 -102
  1951. package/dist/report/execution/results.js +0 -8
  1952. package/dist/report/execution/results.js.map +0 -1
  1953. package/dist/report/host/html.cjs +0 -424
  1954. package/dist/report/host/html.cjs.map +0 -1
  1955. package/dist/report/host/html.d.cts +0 -28
  1956. package/dist/report/host/html.d.mts +0 -28
  1957. package/dist/report/host/html.d.ts +0 -28
  1958. package/dist/report/host/html.js +0 -6
  1959. package/dist/report/host/html.js.map +0 -1
  1960. package/dist/report/host/node/theme.cjs +0 -21
  1961. package/dist/report/host/node/theme.cjs.map +0 -1
  1962. package/dist/report/host/node/theme.d.cts +0 -1
  1963. package/dist/report/host/node/theme.d.mts +0 -1
  1964. package/dist/report/host/node/theme.d.ts +0 -1
  1965. package/dist/report/host/node/theme.js +0 -14
  1966. package/dist/report/host/presentation.cjs +0 -423
  1967. package/dist/report/host/presentation.cjs.map +0 -1
  1968. package/dist/report/host/presentation.d.cts +0 -42
  1969. package/dist/report/host/presentation.d.mts +0 -42
  1970. package/dist/report/host/presentation.d.ts +0 -42
  1971. package/dist/report/host/presentation.js +0 -16
  1972. package/dist/report/host/theme.cjs +0 -223
  1973. package/dist/report/host/theme.cjs.map +0 -1
  1974. package/dist/report/host/theme.d.cts +0 -64
  1975. package/dist/report/host/theme.d.mts +0 -64
  1976. package/dist/report/host/theme.d.ts +0 -64
  1977. package/dist/report/host/theme.js +0 -14
  1978. package/dist/report/host/theme.js.map +0 -1
  1979. package/dist/report/semantic/document.cjs +0 -593
  1980. package/dist/report/semantic/document.cjs.map +0 -1
  1981. package/dist/report/semantic/document.d.cts +0 -162
  1982. package/dist/report/semantic/document.d.mts +0 -162
  1983. package/dist/report/semantic/document.d.ts +0 -162
  1984. package/dist/report/semantic/document.js +0 -38
  1985. package/dist/report/semantic/document.js.map +0 -1
  1986. package/dist/report/semantic/index.cjs +0 -18
  1987. package/dist/report/semantic/index.cjs.map +0 -1
  1988. package/dist/report/semantic/index.d.cts +0 -1
  1989. package/dist/report/semantic/index.d.mts +0 -1
  1990. package/dist/report/semantic/index.d.ts +0 -1
  1991. package/dist/report/semantic/index.js +0 -38
  1992. package/dist/shared/facts.cjs +0 -24
  1993. package/dist/shared/facts.cjs.map +0 -1
  1994. package/dist/shared/facts.d.cts +0 -7
  1995. package/dist/shared/facts.d.mts +0 -7
  1996. package/dist/shared/facts.d.ts +0 -7
  1997. package/dist/shared/facts.js +0 -6
  1998. package/dist/shared/facts.js.map +0 -1
  1999. package/dist/show/json.cjs +0 -8
  2000. package/dist/show/json.cjs.map +0 -1
  2001. package/dist/show/json.d.cts +0 -2
  2002. package/dist/show/json.d.mts +0 -2
  2003. package/dist/show/json.d.ts +0 -2
  2004. package/dist/show/json.js +0 -8
  2005. package/dist/show/json.js.map +0 -1
  2006. package/dist/show/render.cjs +0 -7
  2007. package/dist/show/render.cjs.map +0 -1
  2008. package/dist/show/render.d.cts +0 -2
  2009. package/dist/show/render.d.mts +0 -2
  2010. package/dist/show/render.d.ts +0 -2
  2011. package/dist/show/render.js +0 -6
  2012. package/dist/show/render.js.map +0 -1
  2013. package/dist/sources/assemble.cjs +0 -634
  2014. package/dist/sources/assemble.cjs.map +0 -1
  2015. package/dist/sources/assemble.d.cts +0 -6
  2016. package/dist/sources/assemble.d.mts +0 -6
  2017. package/dist/sources/assemble.d.ts +0 -6
  2018. package/dist/sources/assemble.js +0 -6
  2019. package/dist/sources/assemble.js.map +0 -1
  2020. package/dist/sources/projection-model.cjs +0 -3
  2021. package/dist/sources/projection-model.cjs.map +0 -1
  2022. package/dist/sources/projection-model.d.cts +0 -327
  2023. package/dist/sources/projection-model.d.mts +0 -327
  2024. package/dist/sources/projection-model.d.ts +0 -327
  2025. package/dist/sources/projection-model.js +0 -4
  2026. package/dist/sources/projection-model.js.map +0 -1
  2027. /package/dist/{projection → coordination/host}/index.js.map +0 -0
  2028. /package/dist/{projection → coordination/host}/index.mjs.map +0 -0
  2029. /package/dist/{projection → coordination/host}/runtime.js.map +0 -0
  2030. /package/dist/{record/migration → coordination/host}/types.cjs +0 -0
  2031. /package/dist/{record/migration → coordination/host}/types.js +0 -0
  2032. /package/dist/{record/migration → coordination/host}/types.js.map +0 -0
  2033. /package/dist/{record/migration → coordination}/identity.js.map +0 -0
  2034. /package/dist/{report/author → coordination}/index.js.map +0 -0
  2035. /package/dist/{report/execution → coordination/platform}/index.js.map +0 -0
  2036. /package/dist/{report/semantic → experiment/host}/index.js.map +0 -0
  2037. /package/dist/record/{writer → host}/runtime.js.map +0 -0
  2038. /package/dist/report/{host/presentation.js.map → presentation.js.map} +0 -0
  2039. /package/dist/report/{host/node/theme.js.map → theme.js.map} +0 -0
@@ -1,46 +1,54 @@
1
1
  import { createRequire as __niceevalCreateRequire } from "node:module";
2
2
  const __niceevalRequire = __niceevalCreateRequire(import.meta.url);
3
3
  const __niceevalCanonical = __niceevalRequire("./core.cjs");
4
- const __niceevalExport0 = __niceevalCanonical["AttemptDocumentV1Schema"];
5
- export { __niceevalExport0 as AttemptDocumentV1Schema };
6
- const __niceevalExport1 = __niceevalCanonical["MemberDocumentV1Schema"];
7
- export { __niceevalExport1 as MemberDocumentV1Schema };
8
- const __niceevalExport2 = __niceevalCanonical["RecordAttachmentEnvelopeV1Schema"];
9
- export { __niceevalExport2 as RecordAttachmentEnvelopeV1Schema };
10
- const __niceevalExport3 = __niceevalCanonical["RecordAttemptRefSchema"];
11
- export { __niceevalExport3 as RecordAttemptRefSchema };
12
- const __niceevalExport4 = __niceevalCanonical["RecordCoreV1Schema"];
13
- export { __niceevalExport4 as RecordCoreV1Schema };
14
- const __niceevalExport5 = __niceevalCanonical["RecordDocumentV1Schema"];
15
- export { __niceevalExport5 as RecordDocumentV1Schema };
16
- const __niceevalExport6 = __niceevalCanonical["RecordExactParseOptions"];
17
- export { __niceevalExport6 as RecordExactParseOptions };
18
- const __niceevalExport7 = __niceevalCanonical["RunCoreV1Schema"];
19
- export { __niceevalExport7 as RunCoreV1Schema };
20
- const __niceevalExport8 = __niceevalCanonical["RunDocumentV1Schema"];
21
- export { __niceevalExport8 as RunDocumentV1Schema };
22
- const __niceevalExport9 = __niceevalCanonical["decodeAttemptDocumentV1"];
23
- export { __niceevalExport9 as decodeAttemptDocumentV1 };
24
- const __niceevalExport10 = __niceevalCanonical["decodeMemberDocumentV1"];
25
- export { __niceevalExport10 as decodeMemberDocumentV1 };
26
- const __niceevalExport11 = __niceevalCanonical["decodeRecordAttachmentEnvelopeV1"];
27
- export { __niceevalExport11 as decodeRecordAttachmentEnvelopeV1 };
28
- const __niceevalExport12 = __niceevalCanonical["decodeRecordCoreV1"];
29
- export { __niceevalExport12 as decodeRecordCoreV1 };
30
- const __niceevalExport13 = __niceevalCanonical["decodeRecordDocumentV1"];
31
- export { __niceevalExport13 as decodeRecordDocumentV1 };
32
- const __niceevalExport14 = __niceevalCanonical["decodeRunDocumentV1"];
33
- export { __niceevalExport14 as decodeRunDocumentV1 };
34
- const __niceevalExport15 = __niceevalCanonical["encodeAttemptDocumentV1"];
35
- export { __niceevalExport15 as encodeAttemptDocumentV1 };
36
- const __niceevalExport16 = __niceevalCanonical["encodeMemberDocumentV1"];
37
- export { __niceevalExport16 as encodeMemberDocumentV1 };
38
- const __niceevalExport17 = __niceevalCanonical["encodeRecordAttachmentEnvelopeV1"];
39
- export { __niceevalExport17 as encodeRecordAttachmentEnvelopeV1 };
40
- const __niceevalExport18 = __niceevalCanonical["encodeRecordCoreV1"];
41
- export { __niceevalExport18 as encodeRecordCoreV1 };
42
- const __niceevalExport19 = __niceevalCanonical["encodeRecordDocumentV1"];
43
- export { __niceevalExport19 as encodeRecordDocumentV1 };
44
- const __niceevalExport20 = __niceevalCanonical["encodeRunDocumentV1"];
45
- export { __niceevalExport20 as encodeRunDocumentV1 };
4
+ const __niceevalExport0 = __niceevalCanonical["AttemptDocumentSchema"];
5
+ export { __niceevalExport0 as AttemptDocumentSchema };
6
+ const __niceevalExport1 = __niceevalCanonical["AttemptOutcomeSchema"];
7
+ export { __niceevalExport1 as AttemptOutcomeSchema };
8
+ const __niceevalExport2 = __niceevalCanonical["MemberDocumentSchema"];
9
+ export { __niceevalExport2 as MemberDocumentSchema };
10
+ const __niceevalExport3 = __niceevalCanonical["MembershipActionSchema"];
11
+ export { __niceevalExport3 as MembershipActionSchema };
12
+ const __niceevalExport4 = __niceevalCanonical["RecordAttachmentEnvelopeSchema"];
13
+ export { __niceevalExport4 as RecordAttachmentEnvelopeSchema };
14
+ const __niceevalExport5 = __niceevalCanonical["RecordAttemptRefSchema"];
15
+ export { __niceevalExport5 as RecordAttemptRefSchema };
16
+ const __niceevalExport6 = __niceevalCanonical["RecordCoreSchema"];
17
+ export { __niceevalExport6 as RecordCoreSchema };
18
+ const __niceevalExport7 = __niceevalCanonical["RecordDocumentSchema"];
19
+ export { __niceevalExport7 as RecordDocumentSchema };
20
+ const __niceevalExport8 = __niceevalCanonical["RecordExactParseOptions"];
21
+ export { __niceevalExport8 as RecordExactParseOptions };
22
+ const __niceevalExport9 = __niceevalCanonical["RecordSlotIdentitySchema"];
23
+ export { __niceevalExport9 as RecordSlotIdentitySchema };
24
+ const __niceevalExport10 = __niceevalCanonical["RunContextCurrentSchema"];
25
+ export { __niceevalExport10 as RunContextCurrentSchema };
26
+ const __niceevalExport11 = __niceevalCanonical["RunCoreSchema"];
27
+ export { __niceevalExport11 as RunCoreSchema };
28
+ const __niceevalExport12 = __niceevalCanonical["RunDocumentSchema"];
29
+ export { __niceevalExport12 as RunDocumentSchema };
30
+ const __niceevalExport13 = __niceevalCanonical["decodeAttemptDocument"];
31
+ export { __niceevalExport13 as decodeAttemptDocument };
32
+ const __niceevalExport14 = __niceevalCanonical["decodeMemberDocument"];
33
+ export { __niceevalExport14 as decodeMemberDocument };
34
+ const __niceevalExport15 = __niceevalCanonical["decodeRecordAttachmentEnvelope"];
35
+ export { __niceevalExport15 as decodeRecordAttachmentEnvelope };
36
+ const __niceevalExport16 = __niceevalCanonical["decodeRecordCore"];
37
+ export { __niceevalExport16 as decodeRecordCore };
38
+ const __niceevalExport17 = __niceevalCanonical["decodeRecordDocument"];
39
+ export { __niceevalExport17 as decodeRecordDocument };
40
+ const __niceevalExport18 = __niceevalCanonical["decodeRunDocument"];
41
+ export { __niceevalExport18 as decodeRunDocument };
42
+ const __niceevalExport19 = __niceevalCanonical["encodeAttemptDocument"];
43
+ export { __niceevalExport19 as encodeAttemptDocument };
44
+ const __niceevalExport20 = __niceevalCanonical["encodeMemberDocument"];
45
+ export { __niceevalExport20 as encodeMemberDocument };
46
+ const __niceevalExport21 = __niceevalCanonical["encodeRecordAttachmentEnvelope"];
47
+ export { __niceevalExport21 as encodeRecordAttachmentEnvelope };
48
+ const __niceevalExport22 = __niceevalCanonical["encodeRecordCore"];
49
+ export { __niceevalExport22 as encodeRecordCore };
50
+ const __niceevalExport23 = __niceevalCanonical["encodeRecordDocument"];
51
+ export { __niceevalExport23 as encodeRecordDocument };
52
+ const __niceevalExport24 = __niceevalCanonical["encodeRunDocument"];
53
+ export { __niceevalExport24 as encodeRunDocument };
46
54
  //# sourceMappingURL=core.js.map
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.RecordFormatV1Schema = exports.RecordFormatIdSchema = exports.RecordAttachmentSchemaIdSchema = exports.RecordAttachmentNameSchema = exports.UtcMillisSchema = exports.AttemptIdSchema = exports.SlotIdSchema = exports.RunIdSchema = exports.RecordIdSchema = void 0;
3
+ exports.RecordFormatSchema = exports.RecordSchemaVersionSchema = exports.RecordFormatIdSchema = exports.RecordAttachmentSchemaIdSchema = exports.RecordAttachmentNameSchema = exports.UtcMillisSchema = exports.CanonicalProjectRelativePathSchema = exports.ArtifactIdSchema = exports.FileChangeIdSchema = exports.SourceItemIdSchema = exports.Sha256DigestSchema = exports.ExecutionIdentityDigestSchema = exports.EvalIdSchema = exports.ExperimentIdSchema = exports.AttemptIdSchema = exports.SlotIdSchema = exports.RunIdSchema = exports.RecordIdSchema = void 0;
4
4
  const effect_1 = require("effect");
5
5
  const identifiers_ts_1 = require("../model/identifiers.cjs");
6
6
  const PortableSegmentTextSchema = effect_1.Schema.String.pipe(effect_1.Schema.filter(identifiers_ts_1.isPortableSegment, {
@@ -11,6 +11,27 @@ exports.RecordIdSchema = PortableSegmentTextSchema.pipe(effect_1.Schema.brand(id
11
11
  exports.RunIdSchema = PortableSegmentTextSchema.pipe(effect_1.Schema.brand(identifiers_ts_1.RUN_ID_BRAND));
12
12
  exports.SlotIdSchema = PortableSegmentTextSchema.pipe(effect_1.Schema.brand(identifiers_ts_1.SLOT_ID_BRAND));
13
13
  exports.AttemptIdSchema = PortableSegmentTextSchema.pipe(effect_1.Schema.brand(identifiers_ts_1.ATTEMPT_ID_BRAND));
14
+ const RecordDomainIdentitySchema = effect_1.Schema.String.pipe(effect_1.Schema.filter(identifiers_ts_1.isRecordDomainIdentity, {
15
+ identifier: "RecordDomainIdentity",
16
+ description: "a bounded durable identity without control characters",
17
+ }));
18
+ exports.ExperimentIdSchema = RecordDomainIdentitySchema.pipe(effect_1.Schema.brand(identifiers_ts_1.EXPERIMENT_ID_BRAND));
19
+ exports.EvalIdSchema = RecordDomainIdentitySchema.pipe(effect_1.Schema.brand(identifiers_ts_1.EVAL_ID_BRAND));
20
+ exports.ExecutionIdentityDigestSchema = effect_1.Schema.String.pipe(effect_1.Schema.filter(identifiers_ts_1.isSha256Digest, {
21
+ identifier: "ExecutionIdentityDigest",
22
+ description: "a lowercase hexadecimal SHA-256 execution identity digest",
23
+ }), effect_1.Schema.brand(identifiers_ts_1.EXECUTION_IDENTITY_DIGEST_BRAND));
24
+ exports.Sha256DigestSchema = effect_1.Schema.String.pipe(effect_1.Schema.filter(identifiers_ts_1.isSha256Digest, {
25
+ identifier: "Sha256Digest",
26
+ description: "a lowercase hexadecimal SHA-256 digest",
27
+ }), effect_1.Schema.brand(identifiers_ts_1.SHA256_DIGEST_BRAND));
28
+ exports.SourceItemIdSchema = PortableSegmentTextSchema.pipe(effect_1.Schema.brand(identifiers_ts_1.SOURCE_ITEM_ID_BRAND));
29
+ exports.FileChangeIdSchema = PortableSegmentTextSchema.pipe(effect_1.Schema.brand(identifiers_ts_1.FILE_CHANGE_ID_BRAND));
30
+ exports.ArtifactIdSchema = PortableSegmentTextSchema.pipe(effect_1.Schema.brand(identifiers_ts_1.ARTIFACT_ID_BRAND));
31
+ exports.CanonicalProjectRelativePathSchema = effect_1.Schema.String.pipe(effect_1.Schema.filter(identifiers_ts_1.isCanonicalProjectRelativePath, {
32
+ identifier: "CanonicalProjectRelativePath",
33
+ description: "a slash-separated project-relative path without dot segments",
34
+ }), effect_1.Schema.brand(identifiers_ts_1.CANONICAL_PROJECT_RELATIVE_PATH_BRAND));
14
35
  exports.UtcMillisSchema = effect_1.Schema.Number.pipe(effect_1.Schema.filter(identifiers_ts_1.isUtcMillis, {
15
36
  identifier: "UtcMillis",
16
37
  description: "a non-negative JSON-safe Unix-epoch millisecond value",
@@ -27,5 +48,6 @@ exports.RecordFormatIdSchema = effect_1.Schema.String.pipe(effect_1.Schema.filte
27
48
  identifier: "RecordFormatId",
28
49
  description: "a niceeval.record/vN format identity",
29
50
  }), effect_1.Schema.brand(identifiers_ts_1.RECORD_FORMAT_ID_BRAND));
30
- exports.RecordFormatV1Schema = effect_1.Schema.Literal(identifiers_ts_1.RECORD_FORMAT_V1).pipe(effect_1.Schema.brand(identifiers_ts_1.RECORD_FORMAT_ID_BRAND));
51
+ exports.RecordSchemaVersionSchema = effect_1.Schema.Literal(identifiers_ts_1.RECORD_SCHEMA_VERSION);
52
+ exports.RecordFormatSchema = effect_1.Schema.Literal(identifiers_ts_1.RECORD_FORMAT).pipe(effect_1.Schema.brand(identifiers_ts_1.RECORD_FORMAT_ID_BRAND));
31
53
  //# sourceMappingURL=identifiers.cjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"identifiers.js","sourceRoot":"","sources":["identifiers.ts"],"names":[],"mappings":";;;AAAA,mCAAgC;AAChC,4DAAyf;AACzf,MAAM,yBAAyB,GAAG,eAAM,CAAC,MAAM,CAAC,IAAI,CAAC,eAAM,CAAC,MAAM,CAAC,kCAAiB,EAAE;IAClF,UAAU,EAAE,uBAAuB;IACnC,WAAW,EAAE,sFAAsF;CACtG,CAAC,CAAC,CAAC;AACS,QAAA,cAAc,GAAoC,yBAAyB,CAAC,IAAI,CAAC,eAAM,CAAC,KAAK,CAAC,gCAAe,CAAC,CAAC,CAAC;AAChH,QAAA,WAAW,GAAiC,yBAAyB,CAAC,IAAI,CAAC,eAAM,CAAC,KAAK,CAAC,6BAAY,CAAC,CAAC,CAAC;AACvG,QAAA,YAAY,GAAkC,yBAAyB,CAAC,IAAI,CAAC,eAAM,CAAC,KAAK,CAAC,8BAAa,CAAC,CAAC,CAAC;AAC1G,QAAA,eAAe,GAAqC,yBAAyB,CAAC,IAAI,CAAC,eAAM,CAAC,KAAK,CAAC,iCAAgB,CAAC,CAAC,CAAC;AACnH,QAAA,eAAe,GAAqC,eAAM,CAAC,MAAM,CAAC,IAAI,CAAC,eAAM,CAAC,MAAM,CAAC,4BAAW,EAAE;IAC3G,UAAU,EAAE,WAAW;IACvB,WAAW,EAAE,uDAAuD;CACvE,CAAC,EAAE,eAAM,CAAC,KAAK,CAAC,iCAAgB,CAAC,CAAC,CAAC;AACvB,QAAA,0BAA0B,GAAgD,eAAM,CAAC,MAAM,CAAC,IAAI,CAAC,eAAM,CAAC,MAAM,CAAC,uCAAsB,EAAE;IAC5I,UAAU,EAAE,sBAAsB;IAClC,WAAW,EAAE,qDAAqD;CACrE,CAAC,EAAE,eAAM,CAAC,KAAK,CAAC,6CAA4B,CAAC,CAAC,CAAC;AACnC,QAAA,8BAA8B,GAAoD,eAAM,CAAC,MAAM,CAAC,IAAI,CAAC,eAAM,CAAC,MAAM,CAAC,2CAA0B,EAAE;IACxJ,UAAU,EAAE,0BAA0B;IACtC,WAAW,EAAE,yCAAyC;CACzD,CAAC,EAAE,eAAM,CAAC,KAAK,CAAC,kDAAiC,CAAC,CAAC,CAAC;AACxC,QAAA,oBAAoB,GAA0C,eAAM,CAAC,MAAM,CAAC,IAAI,CAAC,eAAM,CAAC,MAAM,CAAC,iCAAgB,EAAE;IAC1H,UAAU,EAAE,gBAAgB;IAC5B,WAAW,EAAE,sCAAsC;CACtD,CAAC,EAAE,eAAM,CAAC,KAAK,CAAC,uCAAsB,CAAC,CAAC,CAAC;AAC7B,QAAA,oBAAoB,GAA2D,eAAM,CAAC,OAAO,CAAC,iCAAgB,CAAC,CAAC,IAAI,CAAC,eAAM,CAAC,KAAK,CAAC,uCAAsB,CAAC,CAAC,CAAC","sourcesContent":["import { Schema } from \"effect\";\nimport { ATTEMPT_ID_BRAND, isPortableSegment, isRecordAttachmentName, isRecordAttachmentSchemaId, isRecordFormatId, isUtcMillis, RECORD_ATTACHMENT_NAME_BRAND, RECORD_ATTACHMENT_SCHEMA_ID_BRAND, RECORD_FORMAT_ID_BRAND, RECORD_FORMAT_V1, RECORD_ID_BRAND, RUN_ID_BRAND, SLOT_ID_BRAND, UTC_MILLIS_BRAND, type AttemptId, type RecordAttachmentName, type RecordAttachmentSchemaId, type RecordFormatId, type RecordFormatV1, type RecordId, type RunId, type SlotId, type UtcMillis, } from \"../model/identifiers.ts\";\nconst PortableSegmentTextSchema = Schema.String.pipe(Schema.filter(isPortableSegment, {\n identifier: \"RecordPortableSegment\",\n description: \"an ASCII portable file-name segment without path separators or reserved device names\",\n}));\nexport const RecordIdSchema: Schema.Schema<RecordId, string> = PortableSegmentTextSchema.pipe(Schema.brand(RECORD_ID_BRAND));\nexport const RunIdSchema: Schema.Schema<RunId, string> = PortableSegmentTextSchema.pipe(Schema.brand(RUN_ID_BRAND));\nexport const SlotIdSchema: Schema.Schema<SlotId, string> = PortableSegmentTextSchema.pipe(Schema.brand(SLOT_ID_BRAND));\nexport const AttemptIdSchema: Schema.Schema<AttemptId, string> = PortableSegmentTextSchema.pipe(Schema.brand(ATTEMPT_ID_BRAND));\nexport const UtcMillisSchema: Schema.Schema<UtcMillis, number> = Schema.Number.pipe(Schema.filter(isUtcMillis, {\n identifier: \"UtcMillis\",\n description: \"a non-negative JSON-safe Unix-epoch millisecond value\",\n}), Schema.brand(UTC_MILLIS_BRAND));\nexport const RecordAttachmentNameSchema: Schema.Schema<RecordAttachmentName, string> = Schema.String.pipe(Schema.filter(isRecordAttachmentName, {\n identifier: \"RecordAttachmentName\",\n description: \"a lowercase reverse-domain portable Attachment name\",\n}), Schema.brand(RECORD_ATTACHMENT_NAME_BRAND));\nexport const RecordAttachmentSchemaIdSchema: Schema.Schema<RecordAttachmentSchemaId, string> = Schema.String.pipe(Schema.filter(isRecordAttachmentSchemaId, {\n identifier: \"RecordAttachmentSchemaId\",\n description: \"a RecordAttachment name followed by /vN\",\n}), Schema.brand(RECORD_ATTACHMENT_SCHEMA_ID_BRAND));\nexport const RecordFormatIdSchema: Schema.Schema<RecordFormatId, string> = Schema.String.pipe(Schema.filter(isRecordFormatId, {\n identifier: \"RecordFormatId\",\n description: \"a niceeval.record/vN format identity\",\n}), Schema.brand(RECORD_FORMAT_ID_BRAND));\nexport const RecordFormatV1Schema: Schema.Schema<RecordFormatV1, typeof RECORD_FORMAT_V1> = Schema.Literal(RECORD_FORMAT_V1).pipe(Schema.brand(RECORD_FORMAT_ID_BRAND));\n"]}
1
+ {"version":3,"file":"identifiers.js","sourceRoot":"","sources":["identifiers.ts"],"names":[],"mappings":";;;AAAA,mCAAgC;AAChC,4DAAw9B;AACx9B,MAAM,yBAAyB,GAAG,eAAM,CAAC,MAAM,CAAC,IAAI,CAAC,eAAM,CAAC,MAAM,CAAC,kCAAiB,EAAE;IAClF,UAAU,EAAE,uBAAuB;IACnC,WAAW,EAAE,sFAAsF;CACtG,CAAC,CAAC,CAAC;AACS,QAAA,cAAc,GAAoC,yBAAyB,CAAC,IAAI,CAAC,eAAM,CAAC,KAAK,CAAC,gCAAe,CAAC,CAAC,CAAC;AAChH,QAAA,WAAW,GAAiC,yBAAyB,CAAC,IAAI,CAAC,eAAM,CAAC,KAAK,CAAC,6BAAY,CAAC,CAAC,CAAC;AACvG,QAAA,YAAY,GAAkC,yBAAyB,CAAC,IAAI,CAAC,eAAM,CAAC,KAAK,CAAC,8BAAa,CAAC,CAAC,CAAC;AAC1G,QAAA,eAAe,GAAqC,yBAAyB,CAAC,IAAI,CAAC,eAAM,CAAC,KAAK,CAAC,iCAAgB,CAAC,CAAC,CAAC;AAChI,MAAM,0BAA0B,GAAG,eAAM,CAAC,MAAM,CAAC,IAAI,CAAC,eAAM,CAAC,MAAM,CAAC,uCAAsB,EAAE;IACxF,UAAU,EAAE,sBAAsB;IAClC,WAAW,EAAE,uDAAuD;CACvE,CAAC,CAAC,CAAC;AACS,QAAA,kBAAkB,GAAwC,0BAA0B,CAAC,IAAI,CAAC,eAAM,CAAC,KAAK,CAAC,oCAAmB,CAAC,CAAC,CAAC;AAC7H,QAAA,YAAY,GAAkC,0BAA0B,CAAC,IAAI,CAAC,eAAM,CAAC,KAAK,CAAC,8BAAa,CAAC,CAAC,CAAC;AAC3G,QAAA,6BAA6B,GAAmD,eAAM,CAAC,MAAM,CAAC,IAAI,CAAC,eAAM,CAAC,MAAM,CAAC,+BAAc,EAAE;IAC1I,UAAU,EAAE,yBAAyB;IACrC,WAAW,EAAE,2DAA2D;CAC3E,CAAC,EAAE,eAAM,CAAC,KAAK,CAAC,gDAA+B,CAAC,CAAC,CAAC;AACtC,QAAA,kBAAkB,GAAwC,eAAM,CAAC,MAAM,CAAC,IAAI,CAAC,eAAM,CAAC,MAAM,CAAC,+BAAc,EAAE;IACpH,UAAU,EAAE,cAAc;IAC1B,WAAW,EAAE,wCAAwC;CACxD,CAAC,EAAE,eAAM,CAAC,KAAK,CAAC,oCAAmB,CAAC,CAAC,CAAC;AAC1B,QAAA,kBAAkB,GAAwC,yBAAyB,CAAC,IAAI,CAAC,eAAM,CAAC,KAAK,CAAC,qCAAoB,CAAC,CAAC,CAAC;AAC7H,QAAA,kBAAkB,GAAwC,yBAAyB,CAAC,IAAI,CAAC,eAAM,CAAC,KAAK,CAAC,qCAAoB,CAAC,CAAC,CAAC;AAC7H,QAAA,gBAAgB,GAAsC,yBAAyB,CAAC,IAAI,CAAC,eAAM,CAAC,KAAK,CAAC,kCAAiB,CAAC,CAAC,CAAC;AACtH,QAAA,kCAAkC,GAAwD,eAAM,CAAC,MAAM,CAAC,IAAI,CAAC,eAAM,CAAC,MAAM,CAAC,+CAA8B,EAAE;IACpK,UAAU,EAAE,8BAA8B;IAC1C,WAAW,EAAE,8DAA8D;CAC9E,CAAC,EAAE,eAAM,CAAC,KAAK,CAAC,sDAAqC,CAAC,CAAC,CAAC;AAC5C,QAAA,eAAe,GAAqC,eAAM,CAAC,MAAM,CAAC,IAAI,CAAC,eAAM,CAAC,MAAM,CAAC,4BAAW,EAAE;IAC3G,UAAU,EAAE,WAAW;IACvB,WAAW,EAAE,uDAAuD;CACvE,CAAC,EAAE,eAAM,CAAC,KAAK,CAAC,iCAAgB,CAAC,CAAC,CAAC;AACvB,QAAA,0BAA0B,GAAgD,eAAM,CAAC,MAAM,CAAC,IAAI,CAAC,eAAM,CAAC,MAAM,CAAC,uCAAsB,EAAE;IAC5I,UAAU,EAAE,sBAAsB;IAClC,WAAW,EAAE,qDAAqD;CACrE,CAAC,EAAE,eAAM,CAAC,KAAK,CAAC,6CAA4B,CAAC,CAAC,CAAC;AACnC,QAAA,8BAA8B,GAAoD,eAAM,CAAC,MAAM,CAAC,IAAI,CAAC,eAAM,CAAC,MAAM,CAAC,2CAA0B,EAAE;IACxJ,UAAU,EAAE,0BAA0B;IACtC,WAAW,EAAE,yCAAyC;CACzD,CAAC,EAAE,eAAM,CAAC,KAAK,CAAC,kDAAiC,CAAC,CAAC,CAAC;AACxC,QAAA,oBAAoB,GAA0C,eAAM,CAAC,MAAM,CAAC,IAAI,CAAC,eAAM,CAAC,MAAM,CAAC,iCAAgB,EAAE;IAC1H,UAAU,EAAE,gBAAgB;IAC5B,WAAW,EAAE,sCAAsC;CACtD,CAAC,EAAE,eAAM,CAAC,KAAK,CAAC,uCAAsB,CAAC,CAAC,CAAC;AAC7B,QAAA,yBAAyB,GAAqE,eAAM,CAAC,OAAO,CAAC,sCAAqB,CAAC,CAAC;AACpI,QAAA,kBAAkB,GAAsD,eAAM,CAAC,OAAO,CAAC,8BAAa,CAAC,CAAC,IAAI,CAAC,eAAM,CAAC,KAAK,CAAC,uCAAsB,CAAC,CAAC,CAAC","sourcesContent":["import { Schema } from \"effect\";\nimport { ATTEMPT_ID_BRAND, ARTIFACT_ID_BRAND, CANONICAL_PROJECT_RELATIVE_PATH_BRAND, EVAL_ID_BRAND, EXECUTION_IDENTITY_DIGEST_BRAND, EXPERIMENT_ID_BRAND, FILE_CHANGE_ID_BRAND, isPortableSegment, isCanonicalProjectRelativePath, isRecordDomainIdentity, isRecordAttachmentName, isRecordAttachmentSchemaId, isRecordFormatId, isSha256Digest, isUtcMillis, RECORD_ATTACHMENT_NAME_BRAND, RECORD_ATTACHMENT_SCHEMA_ID_BRAND, RECORD_FORMAT, RECORD_FORMAT_ID_BRAND, RECORD_SCHEMA_VERSION, RECORD_ID_BRAND, RUN_ID_BRAND, SHA256_DIGEST_BRAND, SLOT_ID_BRAND, SOURCE_ITEM_ID_BRAND, UTC_MILLIS_BRAND, type AttemptId, type ArtifactId, type CanonicalProjectRelativePath, type EvalId, type ExecutionIdentityDigest, type ExperimentId, type FileChangeId, type RecordAttachmentName, type RecordAttachmentSchemaId, type RecordFormat, type RecordFormatId, type RecordId, type RecordSchemaVersion, type RunId, type Sha256Digest, type SlotId, type SourceItemId, type UtcMillis, } from \"../model/identifiers.ts\";\nconst PortableSegmentTextSchema = Schema.String.pipe(Schema.filter(isPortableSegment, {\n identifier: \"RecordPortableSegment\",\n description: \"an ASCII portable file-name segment without path separators or reserved device names\",\n}));\nexport const RecordIdSchema: Schema.Schema<RecordId, string> = PortableSegmentTextSchema.pipe(Schema.brand(RECORD_ID_BRAND));\nexport const RunIdSchema: Schema.Schema<RunId, string> = PortableSegmentTextSchema.pipe(Schema.brand(RUN_ID_BRAND));\nexport const SlotIdSchema: Schema.Schema<SlotId, string> = PortableSegmentTextSchema.pipe(Schema.brand(SLOT_ID_BRAND));\nexport const AttemptIdSchema: Schema.Schema<AttemptId, string> = PortableSegmentTextSchema.pipe(Schema.brand(ATTEMPT_ID_BRAND));\nconst RecordDomainIdentitySchema = Schema.String.pipe(Schema.filter(isRecordDomainIdentity, {\n identifier: \"RecordDomainIdentity\",\n description: \"a bounded durable identity without control characters\",\n}));\nexport const ExperimentIdSchema: Schema.Schema<ExperimentId, string> = RecordDomainIdentitySchema.pipe(Schema.brand(EXPERIMENT_ID_BRAND));\nexport const EvalIdSchema: Schema.Schema<EvalId, string> = RecordDomainIdentitySchema.pipe(Schema.brand(EVAL_ID_BRAND));\nexport const ExecutionIdentityDigestSchema: Schema.Schema<ExecutionIdentityDigest, string> = Schema.String.pipe(Schema.filter(isSha256Digest, {\n identifier: \"ExecutionIdentityDigest\",\n description: \"a lowercase hexadecimal SHA-256 execution identity digest\",\n}), Schema.brand(EXECUTION_IDENTITY_DIGEST_BRAND));\nexport const Sha256DigestSchema: Schema.Schema<Sha256Digest, string> = Schema.String.pipe(Schema.filter(isSha256Digest, {\n identifier: \"Sha256Digest\",\n description: \"a lowercase hexadecimal SHA-256 digest\",\n}), Schema.brand(SHA256_DIGEST_BRAND));\nexport const SourceItemIdSchema: Schema.Schema<SourceItemId, string> = PortableSegmentTextSchema.pipe(Schema.brand(SOURCE_ITEM_ID_BRAND));\nexport const FileChangeIdSchema: Schema.Schema<FileChangeId, string> = PortableSegmentTextSchema.pipe(Schema.brand(FILE_CHANGE_ID_BRAND));\nexport const ArtifactIdSchema: Schema.Schema<ArtifactId, string> = PortableSegmentTextSchema.pipe(Schema.brand(ARTIFACT_ID_BRAND));\nexport const CanonicalProjectRelativePathSchema: Schema.Schema<CanonicalProjectRelativePath, string> = Schema.String.pipe(Schema.filter(isCanonicalProjectRelativePath, {\n identifier: \"CanonicalProjectRelativePath\",\n description: \"a slash-separated project-relative path without dot segments\",\n}), Schema.brand(CANONICAL_PROJECT_RELATIVE_PATH_BRAND));\nexport const UtcMillisSchema: Schema.Schema<UtcMillis, number> = Schema.Number.pipe(Schema.filter(isUtcMillis, {\n identifier: \"UtcMillis\",\n description: \"a non-negative JSON-safe Unix-epoch millisecond value\",\n}), Schema.brand(UTC_MILLIS_BRAND));\nexport const RecordAttachmentNameSchema: Schema.Schema<RecordAttachmentName, string> = Schema.String.pipe(Schema.filter(isRecordAttachmentName, {\n identifier: \"RecordAttachmentName\",\n description: \"a lowercase reverse-domain portable Attachment name\",\n}), Schema.brand(RECORD_ATTACHMENT_NAME_BRAND));\nexport const RecordAttachmentSchemaIdSchema: Schema.Schema<RecordAttachmentSchemaId, string> = Schema.String.pipe(Schema.filter(isRecordAttachmentSchemaId, {\n identifier: \"RecordAttachmentSchemaId\",\n description: \"a RecordAttachment name followed by /vN\",\n}), Schema.brand(RECORD_ATTACHMENT_SCHEMA_ID_BRAND));\nexport const RecordFormatIdSchema: Schema.Schema<RecordFormatId, string> = Schema.String.pipe(Schema.filter(isRecordFormatId, {\n identifier: \"RecordFormatId\",\n description: \"a niceeval.record/vN format identity\",\n}), Schema.brand(RECORD_FORMAT_ID_BRAND));\nexport const RecordSchemaVersionSchema: Schema.Schema<RecordSchemaVersion, typeof RECORD_SCHEMA_VERSION> = Schema.Literal(RECORD_SCHEMA_VERSION);\nexport const RecordFormatSchema: Schema.Schema<RecordFormat, typeof RECORD_FORMAT> = Schema.Literal(RECORD_FORMAT).pipe(Schema.brand(RECORD_FORMAT_ID_BRAND));\n"]}
@@ -1,11 +1,20 @@
1
1
  import { Schema } from "effect";
2
- import { RECORD_FORMAT_V1, type AttemptId, type RecordAttachmentName, type RecordAttachmentSchemaId, type RecordFormatId, type RecordFormatV1, type RecordId, type RunId, type SlotId, type UtcMillis } from "../model/identifiers.cjs";
2
+ import { RECORD_FORMAT, RECORD_SCHEMA_VERSION, type AttemptId, type ArtifactId, type CanonicalProjectRelativePath, type EvalId, type ExecutionIdentityDigest, type ExperimentId, type FileChangeId, type RecordAttachmentName, type RecordAttachmentSchemaId, type RecordFormat, type RecordFormatId, type RecordId, type RecordSchemaVersion, type RunId, type Sha256Digest, type SlotId, type SourceItemId, type UtcMillis } from "../model/identifiers.cjs";
3
3
  export declare const RecordIdSchema: Schema.Schema<RecordId, string>;
4
4
  export declare const RunIdSchema: Schema.Schema<RunId, string>;
5
5
  export declare const SlotIdSchema: Schema.Schema<SlotId, string>;
6
6
  export declare const AttemptIdSchema: Schema.Schema<AttemptId, string>;
7
+ export declare const ExperimentIdSchema: Schema.Schema<ExperimentId, string>;
8
+ export declare const EvalIdSchema: Schema.Schema<EvalId, string>;
9
+ export declare const ExecutionIdentityDigestSchema: Schema.Schema<ExecutionIdentityDigest, string>;
10
+ export declare const Sha256DigestSchema: Schema.Schema<Sha256Digest, string>;
11
+ export declare const SourceItemIdSchema: Schema.Schema<SourceItemId, string>;
12
+ export declare const FileChangeIdSchema: Schema.Schema<FileChangeId, string>;
13
+ export declare const ArtifactIdSchema: Schema.Schema<ArtifactId, string>;
14
+ export declare const CanonicalProjectRelativePathSchema: Schema.Schema<CanonicalProjectRelativePath, string>;
7
15
  export declare const UtcMillisSchema: Schema.Schema<UtcMillis, number>;
8
16
  export declare const RecordAttachmentNameSchema: Schema.Schema<RecordAttachmentName, string>;
9
17
  export declare const RecordAttachmentSchemaIdSchema: Schema.Schema<RecordAttachmentSchemaId, string>;
10
18
  export declare const RecordFormatIdSchema: Schema.Schema<RecordFormatId, string>;
11
- export declare const RecordFormatV1Schema: Schema.Schema<RecordFormatV1, typeof RECORD_FORMAT_V1>;
19
+ export declare const RecordSchemaVersionSchema: Schema.Schema<RecordSchemaVersion, typeof RECORD_SCHEMA_VERSION>;
20
+ export declare const RecordFormatSchema: Schema.Schema<RecordFormat, typeof RECORD_FORMAT>;
@@ -1,11 +1,20 @@
1
1
  import { Schema } from "effect";
2
- import { RECORD_FORMAT_V1, type AttemptId, type RecordAttachmentName, type RecordAttachmentSchemaId, type RecordFormatId, type RecordFormatV1, type RecordId, type RunId, type SlotId, type UtcMillis } from "../model/identifiers.mjs";
2
+ import { RECORD_FORMAT, RECORD_SCHEMA_VERSION, type AttemptId, type ArtifactId, type CanonicalProjectRelativePath, type EvalId, type ExecutionIdentityDigest, type ExperimentId, type FileChangeId, type RecordAttachmentName, type RecordAttachmentSchemaId, type RecordFormat, type RecordFormatId, type RecordId, type RecordSchemaVersion, type RunId, type Sha256Digest, type SlotId, type SourceItemId, type UtcMillis } from "../model/identifiers.mjs";
3
3
  export declare const RecordIdSchema: Schema.Schema<RecordId, string>;
4
4
  export declare const RunIdSchema: Schema.Schema<RunId, string>;
5
5
  export declare const SlotIdSchema: Schema.Schema<SlotId, string>;
6
6
  export declare const AttemptIdSchema: Schema.Schema<AttemptId, string>;
7
+ export declare const ExperimentIdSchema: Schema.Schema<ExperimentId, string>;
8
+ export declare const EvalIdSchema: Schema.Schema<EvalId, string>;
9
+ export declare const ExecutionIdentityDigestSchema: Schema.Schema<ExecutionIdentityDigest, string>;
10
+ export declare const Sha256DigestSchema: Schema.Schema<Sha256Digest, string>;
11
+ export declare const SourceItemIdSchema: Schema.Schema<SourceItemId, string>;
12
+ export declare const FileChangeIdSchema: Schema.Schema<FileChangeId, string>;
13
+ export declare const ArtifactIdSchema: Schema.Schema<ArtifactId, string>;
14
+ export declare const CanonicalProjectRelativePathSchema: Schema.Schema<CanonicalProjectRelativePath, string>;
7
15
  export declare const UtcMillisSchema: Schema.Schema<UtcMillis, number>;
8
16
  export declare const RecordAttachmentNameSchema: Schema.Schema<RecordAttachmentName, string>;
9
17
  export declare const RecordAttachmentSchemaIdSchema: Schema.Schema<RecordAttachmentSchemaId, string>;
10
18
  export declare const RecordFormatIdSchema: Schema.Schema<RecordFormatId, string>;
11
- export declare const RecordFormatV1Schema: Schema.Schema<RecordFormatV1, typeof RECORD_FORMAT_V1>;
19
+ export declare const RecordSchemaVersionSchema: Schema.Schema<RecordSchemaVersion, typeof RECORD_SCHEMA_VERSION>;
20
+ export declare const RecordFormatSchema: Schema.Schema<RecordFormat, typeof RECORD_FORMAT>;
@@ -1,11 +1,20 @@
1
1
  import { Schema } from "effect";
2
- import { RECORD_FORMAT_V1, type AttemptId, type RecordAttachmentName, type RecordAttachmentSchemaId, type RecordFormatId, type RecordFormatV1, type RecordId, type RunId, type SlotId, type UtcMillis } from "../model/identifiers.js";
2
+ import { RECORD_FORMAT, RECORD_SCHEMA_VERSION, type AttemptId, type ArtifactId, type CanonicalProjectRelativePath, type EvalId, type ExecutionIdentityDigest, type ExperimentId, type FileChangeId, type RecordAttachmentName, type RecordAttachmentSchemaId, type RecordFormat, type RecordFormatId, type RecordId, type RecordSchemaVersion, type RunId, type Sha256Digest, type SlotId, type SourceItemId, type UtcMillis } from "../model/identifiers.js";
3
3
  export declare const RecordIdSchema: Schema.Schema<RecordId, string>;
4
4
  export declare const RunIdSchema: Schema.Schema<RunId, string>;
5
5
  export declare const SlotIdSchema: Schema.Schema<SlotId, string>;
6
6
  export declare const AttemptIdSchema: Schema.Schema<AttemptId, string>;
7
+ export declare const ExperimentIdSchema: Schema.Schema<ExperimentId, string>;
8
+ export declare const EvalIdSchema: Schema.Schema<EvalId, string>;
9
+ export declare const ExecutionIdentityDigestSchema: Schema.Schema<ExecutionIdentityDigest, string>;
10
+ export declare const Sha256DigestSchema: Schema.Schema<Sha256Digest, string>;
11
+ export declare const SourceItemIdSchema: Schema.Schema<SourceItemId, string>;
12
+ export declare const FileChangeIdSchema: Schema.Schema<FileChangeId, string>;
13
+ export declare const ArtifactIdSchema: Schema.Schema<ArtifactId, string>;
14
+ export declare const CanonicalProjectRelativePathSchema: Schema.Schema<CanonicalProjectRelativePath, string>;
7
15
  export declare const UtcMillisSchema: Schema.Schema<UtcMillis, number>;
8
16
  export declare const RecordAttachmentNameSchema: Schema.Schema<RecordAttachmentName, string>;
9
17
  export declare const RecordAttachmentSchemaIdSchema: Schema.Schema<RecordAttachmentSchemaId, string>;
10
18
  export declare const RecordFormatIdSchema: Schema.Schema<RecordFormatId, string>;
11
- export declare const RecordFormatV1Schema: Schema.Schema<RecordFormatV1, typeof RECORD_FORMAT_V1>;
19
+ export declare const RecordSchemaVersionSchema: Schema.Schema<RecordSchemaVersion, typeof RECORD_SCHEMA_VERSION>;
20
+ export declare const RecordFormatSchema: Schema.Schema<RecordFormat, typeof RECORD_FORMAT>;
@@ -1,22 +1,40 @@
1
1
  import { createRequire as __niceevalCreateRequire } from "node:module";
2
2
  const __niceevalRequire = __niceevalCreateRequire(import.meta.url);
3
3
  const __niceevalCanonical = __niceevalRequire("./identifiers.cjs");
4
- const __niceevalExport0 = __niceevalCanonical["AttemptIdSchema"];
5
- export { __niceevalExport0 as AttemptIdSchema };
6
- const __niceevalExport1 = __niceevalCanonical["RecordAttachmentNameSchema"];
7
- export { __niceevalExport1 as RecordAttachmentNameSchema };
8
- const __niceevalExport2 = __niceevalCanonical["RecordAttachmentSchemaIdSchema"];
9
- export { __niceevalExport2 as RecordAttachmentSchemaIdSchema };
10
- const __niceevalExport3 = __niceevalCanonical["RecordFormatIdSchema"];
11
- export { __niceevalExport3 as RecordFormatIdSchema };
12
- const __niceevalExport4 = __niceevalCanonical["RecordFormatV1Schema"];
13
- export { __niceevalExport4 as RecordFormatV1Schema };
14
- const __niceevalExport5 = __niceevalCanonical["RecordIdSchema"];
15
- export { __niceevalExport5 as RecordIdSchema };
16
- const __niceevalExport6 = __niceevalCanonical["RunIdSchema"];
17
- export { __niceevalExport6 as RunIdSchema };
18
- const __niceevalExport7 = __niceevalCanonical["SlotIdSchema"];
19
- export { __niceevalExport7 as SlotIdSchema };
20
- const __niceevalExport8 = __niceevalCanonical["UtcMillisSchema"];
21
- export { __niceevalExport8 as UtcMillisSchema };
4
+ const __niceevalExport0 = __niceevalCanonical["ArtifactIdSchema"];
5
+ export { __niceevalExport0 as ArtifactIdSchema };
6
+ const __niceevalExport1 = __niceevalCanonical["AttemptIdSchema"];
7
+ export { __niceevalExport1 as AttemptIdSchema };
8
+ const __niceevalExport2 = __niceevalCanonical["CanonicalProjectRelativePathSchema"];
9
+ export { __niceevalExport2 as CanonicalProjectRelativePathSchema };
10
+ const __niceevalExport3 = __niceevalCanonical["EvalIdSchema"];
11
+ export { __niceevalExport3 as EvalIdSchema };
12
+ const __niceevalExport4 = __niceevalCanonical["ExecutionIdentityDigestSchema"];
13
+ export { __niceevalExport4 as ExecutionIdentityDigestSchema };
14
+ const __niceevalExport5 = __niceevalCanonical["ExperimentIdSchema"];
15
+ export { __niceevalExport5 as ExperimentIdSchema };
16
+ const __niceevalExport6 = __niceevalCanonical["FileChangeIdSchema"];
17
+ export { __niceevalExport6 as FileChangeIdSchema };
18
+ const __niceevalExport7 = __niceevalCanonical["RecordAttachmentNameSchema"];
19
+ export { __niceevalExport7 as RecordAttachmentNameSchema };
20
+ const __niceevalExport8 = __niceevalCanonical["RecordAttachmentSchemaIdSchema"];
21
+ export { __niceevalExport8 as RecordAttachmentSchemaIdSchema };
22
+ const __niceevalExport9 = __niceevalCanonical["RecordFormatIdSchema"];
23
+ export { __niceevalExport9 as RecordFormatIdSchema };
24
+ const __niceevalExport10 = __niceevalCanonical["RecordFormatSchema"];
25
+ export { __niceevalExport10 as RecordFormatSchema };
26
+ const __niceevalExport11 = __niceevalCanonical["RecordIdSchema"];
27
+ export { __niceevalExport11 as RecordIdSchema };
28
+ const __niceevalExport12 = __niceevalCanonical["RecordSchemaVersionSchema"];
29
+ export { __niceevalExport12 as RecordSchemaVersionSchema };
30
+ const __niceevalExport13 = __niceevalCanonical["RunIdSchema"];
31
+ export { __niceevalExport13 as RunIdSchema };
32
+ const __niceevalExport14 = __niceevalCanonical["Sha256DigestSchema"];
33
+ export { __niceevalExport14 as Sha256DigestSchema };
34
+ const __niceevalExport15 = __niceevalCanonical["SlotIdSchema"];
35
+ export { __niceevalExport15 as SlotIdSchema };
36
+ const __niceevalExport16 = __niceevalCanonical["SourceItemIdSchema"];
37
+ export { __niceevalExport16 as SourceItemIdSchema };
38
+ const __niceevalExport17 = __niceevalCanonical["UtcMillisSchema"];
39
+ export { __niceevalExport17 as UtcMillisSchema };
22
40
  //# sourceMappingURL=identifiers.js.map
@@ -1,64 +1,90 @@
1
1
  import { createRequire as __niceevalCreateRequire } from "node:module";
2
2
  const __niceevalRequire = __niceevalCreateRequire(import.meta.url);
3
3
  const __niceevalCanonical = __niceevalRequire("./index.cjs");
4
- const __niceevalExport0 = __niceevalCanonical["AttemptDocumentV1Schema"];
5
- export { __niceevalExport0 as AttemptDocumentV1Schema };
6
- const __niceevalExport1 = __niceevalCanonical["AttemptIdSchema"];
7
- export { __niceevalExport1 as AttemptIdSchema };
8
- const __niceevalExport2 = __niceevalCanonical["MemberDocumentV1Schema"];
9
- export { __niceevalExport2 as MemberDocumentV1Schema };
10
- const __niceevalExport3 = __niceevalCanonical["RecordAttachmentEnvelopeV1Schema"];
11
- export { __niceevalExport3 as RecordAttachmentEnvelopeV1Schema };
12
- const __niceevalExport4 = __niceevalCanonical["RecordAttachmentNameSchema"];
13
- export { __niceevalExport4 as RecordAttachmentNameSchema };
14
- const __niceevalExport5 = __niceevalCanonical["RecordAttachmentSchemaIdSchema"];
15
- export { __niceevalExport5 as RecordAttachmentSchemaIdSchema };
16
- const __niceevalExport6 = __niceevalCanonical["RecordAttemptRefSchema"];
17
- export { __niceevalExport6 as RecordAttemptRefSchema };
18
- const __niceevalExport7 = __niceevalCanonical["RecordCoreV1Schema"];
19
- export { __niceevalExport7 as RecordCoreV1Schema };
20
- const __niceevalExport8 = __niceevalCanonical["RecordDocumentV1Schema"];
21
- export { __niceevalExport8 as RecordDocumentV1Schema };
22
- const __niceevalExport9 = __niceevalCanonical["RecordExactParseOptions"];
23
- export { __niceevalExport9 as RecordExactParseOptions };
24
- const __niceevalExport10 = __niceevalCanonical["RecordFormatIdSchema"];
25
- export { __niceevalExport10 as RecordFormatIdSchema };
26
- const __niceevalExport11 = __niceevalCanonical["RecordFormatV1Schema"];
27
- export { __niceevalExport11 as RecordFormatV1Schema };
28
- const __niceevalExport12 = __niceevalCanonical["RecordIdSchema"];
29
- export { __niceevalExport12 as RecordIdSchema };
30
- const __niceevalExport13 = __niceevalCanonical["RunCoreV1Schema"];
31
- export { __niceevalExport13 as RunCoreV1Schema };
32
- const __niceevalExport14 = __niceevalCanonical["RunDocumentV1Schema"];
33
- export { __niceevalExport14 as RunDocumentV1Schema };
34
- const __niceevalExport15 = __niceevalCanonical["RunIdSchema"];
35
- export { __niceevalExport15 as RunIdSchema };
36
- const __niceevalExport16 = __niceevalCanonical["SlotIdSchema"];
37
- export { __niceevalExport16 as SlotIdSchema };
38
- const __niceevalExport17 = __niceevalCanonical["UtcMillisSchema"];
39
- export { __niceevalExport17 as UtcMillisSchema };
40
- const __niceevalExport18 = __niceevalCanonical["decodeAttemptDocumentV1"];
41
- export { __niceevalExport18 as decodeAttemptDocumentV1 };
42
- const __niceevalExport19 = __niceevalCanonical["decodeMemberDocumentV1"];
43
- export { __niceevalExport19 as decodeMemberDocumentV1 };
44
- const __niceevalExport20 = __niceevalCanonical["decodeRecordAttachmentEnvelopeV1"];
45
- export { __niceevalExport20 as decodeRecordAttachmentEnvelopeV1 };
46
- const __niceevalExport21 = __niceevalCanonical["decodeRecordCoreV1"];
47
- export { __niceevalExport21 as decodeRecordCoreV1 };
48
- const __niceevalExport22 = __niceevalCanonical["decodeRecordDocumentV1"];
49
- export { __niceevalExport22 as decodeRecordDocumentV1 };
50
- const __niceevalExport23 = __niceevalCanonical["decodeRunDocumentV1"];
51
- export { __niceevalExport23 as decodeRunDocumentV1 };
52
- const __niceevalExport24 = __niceevalCanonical["encodeAttemptDocumentV1"];
53
- export { __niceevalExport24 as encodeAttemptDocumentV1 };
54
- const __niceevalExport25 = __niceevalCanonical["encodeMemberDocumentV1"];
55
- export { __niceevalExport25 as encodeMemberDocumentV1 };
56
- const __niceevalExport26 = __niceevalCanonical["encodeRecordAttachmentEnvelopeV1"];
57
- export { __niceevalExport26 as encodeRecordAttachmentEnvelopeV1 };
58
- const __niceevalExport27 = __niceevalCanonical["encodeRecordCoreV1"];
59
- export { __niceevalExport27 as encodeRecordCoreV1 };
60
- const __niceevalExport28 = __niceevalCanonical["encodeRecordDocumentV1"];
61
- export { __niceevalExport28 as encodeRecordDocumentV1 };
62
- const __niceevalExport29 = __niceevalCanonical["encodeRunDocumentV1"];
63
- export { __niceevalExport29 as encodeRunDocumentV1 };
4
+ const __niceevalExport0 = __niceevalCanonical["ArtifactIdSchema"];
5
+ export { __niceevalExport0 as ArtifactIdSchema };
6
+ const __niceevalExport1 = __niceevalCanonical["AttemptDocumentSchema"];
7
+ export { __niceevalExport1 as AttemptDocumentSchema };
8
+ const __niceevalExport2 = __niceevalCanonical["AttemptIdSchema"];
9
+ export { __niceevalExport2 as AttemptIdSchema };
10
+ const __niceevalExport3 = __niceevalCanonical["AttemptOutcomeSchema"];
11
+ export { __niceevalExport3 as AttemptOutcomeSchema };
12
+ const __niceevalExport4 = __niceevalCanonical["CanonicalProjectRelativePathSchema"];
13
+ export { __niceevalExport4 as CanonicalProjectRelativePathSchema };
14
+ const __niceevalExport5 = __niceevalCanonical["EvalIdSchema"];
15
+ export { __niceevalExport5 as EvalIdSchema };
16
+ const __niceevalExport6 = __niceevalCanonical["ExecutionIdentityDigestSchema"];
17
+ export { __niceevalExport6 as ExecutionIdentityDigestSchema };
18
+ const __niceevalExport7 = __niceevalCanonical["ExperimentIdSchema"];
19
+ export { __niceevalExport7 as ExperimentIdSchema };
20
+ const __niceevalExport8 = __niceevalCanonical["FileChangeIdSchema"];
21
+ export { __niceevalExport8 as FileChangeIdSchema };
22
+ const __niceevalExport9 = __niceevalCanonical["MemberDocumentSchema"];
23
+ export { __niceevalExport9 as MemberDocumentSchema };
24
+ const __niceevalExport10 = __niceevalCanonical["MembershipActionSchema"];
25
+ export { __niceevalExport10 as MembershipActionSchema };
26
+ const __niceevalExport11 = __niceevalCanonical["RecordAttachmentEnvelopeSchema"];
27
+ export { __niceevalExport11 as RecordAttachmentEnvelopeSchema };
28
+ const __niceevalExport12 = __niceevalCanonical["RecordAttachmentNameSchema"];
29
+ export { __niceevalExport12 as RecordAttachmentNameSchema };
30
+ const __niceevalExport13 = __niceevalCanonical["RecordAttachmentSchemaIdSchema"];
31
+ export { __niceevalExport13 as RecordAttachmentSchemaIdSchema };
32
+ const __niceevalExport14 = __niceevalCanonical["RecordAttemptRefSchema"];
33
+ export { __niceevalExport14 as RecordAttemptRefSchema };
34
+ const __niceevalExport15 = __niceevalCanonical["RecordCoreSchema"];
35
+ export { __niceevalExport15 as RecordCoreSchema };
36
+ const __niceevalExport16 = __niceevalCanonical["RecordDocumentSchema"];
37
+ export { __niceevalExport16 as RecordDocumentSchema };
38
+ const __niceevalExport17 = __niceevalCanonical["RecordExactParseOptions"];
39
+ export { __niceevalExport17 as RecordExactParseOptions };
40
+ const __niceevalExport18 = __niceevalCanonical["RecordFormatIdSchema"];
41
+ export { __niceevalExport18 as RecordFormatIdSchema };
42
+ const __niceevalExport19 = __niceevalCanonical["RecordFormatSchema"];
43
+ export { __niceevalExport19 as RecordFormatSchema };
44
+ const __niceevalExport20 = __niceevalCanonical["RecordIdSchema"];
45
+ export { __niceevalExport20 as RecordIdSchema };
46
+ const __niceevalExport21 = __niceevalCanonical["RecordSchemaVersionSchema"];
47
+ export { __niceevalExport21 as RecordSchemaVersionSchema };
48
+ const __niceevalExport22 = __niceevalCanonical["RecordSlotIdentitySchema"];
49
+ export { __niceevalExport22 as RecordSlotIdentitySchema };
50
+ const __niceevalExport23 = __niceevalCanonical["RunContextCurrentSchema"];
51
+ export { __niceevalExport23 as RunContextCurrentSchema };
52
+ const __niceevalExport24 = __niceevalCanonical["RunCoreSchema"];
53
+ export { __niceevalExport24 as RunCoreSchema };
54
+ const __niceevalExport25 = __niceevalCanonical["RunDocumentSchema"];
55
+ export { __niceevalExport25 as RunDocumentSchema };
56
+ const __niceevalExport26 = __niceevalCanonical["RunIdSchema"];
57
+ export { __niceevalExport26 as RunIdSchema };
58
+ const __niceevalExport27 = __niceevalCanonical["Sha256DigestSchema"];
59
+ export { __niceevalExport27 as Sha256DigestSchema };
60
+ const __niceevalExport28 = __niceevalCanonical["SlotIdSchema"];
61
+ export { __niceevalExport28 as SlotIdSchema };
62
+ const __niceevalExport29 = __niceevalCanonical["SourceItemIdSchema"];
63
+ export { __niceevalExport29 as SourceItemIdSchema };
64
+ const __niceevalExport30 = __niceevalCanonical["UtcMillisSchema"];
65
+ export { __niceevalExport30 as UtcMillisSchema };
66
+ const __niceevalExport31 = __niceevalCanonical["decodeAttemptDocument"];
67
+ export { __niceevalExport31 as decodeAttemptDocument };
68
+ const __niceevalExport32 = __niceevalCanonical["decodeMemberDocument"];
69
+ export { __niceevalExport32 as decodeMemberDocument };
70
+ const __niceevalExport33 = __niceevalCanonical["decodeRecordAttachmentEnvelope"];
71
+ export { __niceevalExport33 as decodeRecordAttachmentEnvelope };
72
+ const __niceevalExport34 = __niceevalCanonical["decodeRecordCore"];
73
+ export { __niceevalExport34 as decodeRecordCore };
74
+ const __niceevalExport35 = __niceevalCanonical["decodeRecordDocument"];
75
+ export { __niceevalExport35 as decodeRecordDocument };
76
+ const __niceevalExport36 = __niceevalCanonical["decodeRunDocument"];
77
+ export { __niceevalExport36 as decodeRunDocument };
78
+ const __niceevalExport37 = __niceevalCanonical["encodeAttemptDocument"];
79
+ export { __niceevalExport37 as encodeAttemptDocument };
80
+ const __niceevalExport38 = __niceevalCanonical["encodeMemberDocument"];
81
+ export { __niceevalExport38 as encodeMemberDocument };
82
+ const __niceevalExport39 = __niceevalCanonical["encodeRecordAttachmentEnvelope"];
83
+ export { __niceevalExport39 as encodeRecordAttachmentEnvelope };
84
+ const __niceevalExport40 = __niceevalCanonical["encodeRecordCore"];
85
+ export { __niceevalExport40 as encodeRecordCore };
86
+ const __niceevalExport41 = __niceevalCanonical["encodeRecordDocument"];
87
+ export { __niceevalExport41 as encodeRecordDocument };
88
+ const __niceevalExport42 = __niceevalCanonical["encodeRunDocument"];
89
+ export { __niceevalExport42 as encodeRunDocument };
64
90
  //# sourceMappingURL=index.js.map
@@ -0,0 +1,108 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.isRecordAttachmentOwnerDefinition = isRecordAttachmentOwnerDefinition;
4
+ exports.defineRecordAttachment = defineRecordAttachment;
5
+ const blob_ref_ts_1 = require("../attachment/blob-ref.cjs");
6
+ const schema_codec_ts_1 = require("./schema-codec.cjs");
7
+ const recordAttachmentOwnerDefinitionTypeId = Symbol("@niceeval/record/RecordAttachmentOwnerDefinition");
8
+ const compiledOwners = new WeakSet();
9
+ function validFamily(value) {
10
+ return /^niceeval\.[a-z0-9][a-z0-9.-]*$/.test(value) && !value.includes("/");
11
+ }
12
+ function validBlobBudget(value) {
13
+ if (typeof value !== "object" || value === null)
14
+ return false;
15
+ const budget = value;
16
+ return [budget.maximumBlobs, budget.maximumBlobBytes, budget.maximumTotalBytes]
17
+ .every((limit) => Number.isSafeInteger(limit) && limit > 0);
18
+ }
19
+ function compileOwner(family, schemaVersion, owner, input) {
20
+ if (typeof input !== "object" ||
21
+ input === null ||
22
+ typeof input.blobs !== "object" ||
23
+ input.blobs === null ||
24
+ typeof input.blobs.refs !== "function" ||
25
+ !validBlobBudget(input.blobs.budget) ||
26
+ typeof input.blobs.verify !== "function") {
27
+ throw new TypeError("Record Attachment owners must declare a bounded blob policy");
28
+ }
29
+ const codec = (0, schema_codec_ts_1.compileRecordSchemaCodec)({
30
+ schema: input.schema,
31
+ limits: input.limits,
32
+ blobRef: {
33
+ schema: blob_ref_ts_1.RecordBlobRefSchema,
34
+ isBlobRef: blob_ref_ts_1.isRecordBlobRef,
35
+ },
36
+ });
37
+ const definition = {
38
+ family,
39
+ schemaVersion,
40
+ owner,
41
+ codec,
42
+ refs: input.blobs.refs,
43
+ budget: Object.freeze({ ...input.blobs.budget }),
44
+ verify: input.blobs.verify,
45
+ [recordAttachmentOwnerDefinitionTypeId]: () => undefined,
46
+ };
47
+ compiledOwners.add(definition);
48
+ return Object.freeze(definition);
49
+ }
50
+ /** @internal Runtime factories accept only owners minted by defineRecordAttachment. */
51
+ function isRecordAttachmentOwnerDefinition(value) {
52
+ return typeof value === "object" && value !== null && compiledOwners.has(value);
53
+ }
54
+ /**
55
+ * NiceEval-only fixed-family declaration. It stores no registry and exposes no
56
+ * plugin hook: the static catalog is assembled by package code alone.
57
+ */
58
+ function defineRecordAttachment(input) {
59
+ if (!validFamily(input.family)) {
60
+ throw new TypeError("Record Attachment family must be a stable niceeval.* identity without a version suffix");
61
+ }
62
+ if (!Number.isSafeInteger(input.current.schemaVersion) || input.current.schemaVersion <= 0) {
63
+ throw new TypeError("Record Attachment schemaVersion must be a positive safe integer");
64
+ }
65
+ if (input.maintenance !== undefined && typeof input.maintenance !== "function") {
66
+ throw new TypeError("Record Attachment maintenance must be a lazy function");
67
+ }
68
+ const adjacentMigrationLinks = input.adjacentMigrationLinks ?? Object.freeze([]);
69
+ const migrationStarts = new Set();
70
+ for (const link of adjacentMigrationLinks) {
71
+ if (!Number.isSafeInteger(link.fromSchemaVersion) ||
72
+ !Number.isSafeInteger(link.toSchemaVersion) ||
73
+ link.fromSchemaVersion <= 0 ||
74
+ link.toSchemaVersion !== link.fromSchemaVersion + 1 ||
75
+ link.toSchemaVersion > input.current.schemaVersion ||
76
+ migrationStarts.has(link.fromSchemaVersion)) {
77
+ throw new TypeError("Record Attachment migration links must be unique adjacent upgrades to current history");
78
+ }
79
+ migrationStarts.add(link.fromSchemaVersion);
80
+ }
81
+ if (adjacentMigrationLinks.length > 0 && input.maintenance === undefined) {
82
+ throw new TypeError("Record Attachment migration links require a lazy maintenance implementation");
83
+ }
84
+ const keys = Reflect.ownKeys(input.current.owners);
85
+ if (keys.length === 0 ||
86
+ keys.some((key) => key !== "attempt" && key !== "run")) {
87
+ throw new TypeError("Record Attachment owners may contain only attempt and run");
88
+ }
89
+ const owners = input.current.owners;
90
+ const compiled = {};
91
+ for (const key of keys) {
92
+ const ownerInput = owners[key];
93
+ if (ownerInput === undefined) {
94
+ throw new TypeError("Record Attachment owners must have one schema and blob policy");
95
+ }
96
+ compiled[key] = compileOwner(input.family, input.current.schemaVersion, key, ownerInput);
97
+ }
98
+ return Object.freeze({
99
+ family: input.family,
100
+ current: Object.freeze({
101
+ schemaVersion: input.current.schemaVersion,
102
+ owners: Object.freeze(compiled),
103
+ }),
104
+ maintenance: input.maintenance,
105
+ adjacentMigrationLinks: Object.freeze(adjacentMigrationLinks.map((link) => Object.freeze({ ...link }))),
106
+ });
107
+ }
108
+ //# sourceMappingURL=attachment.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"attachment.js","sourceRoot":"","sources":["attachment.ts"],"names":[],"mappings":";;AAyGA,8EAEC;AAKD,wDAyDC;AAxKD,2DAAsG;AAGtG,uDAA+G;AAC/G,MAAM,qCAAqC,GAAkB,MAAM,CAAC,kDAAkD,CAAC,CAAC;AACxH,MAAM,cAAc,GAAG,IAAI,OAAO,EAAU,CAAC;AAyD7C,SAAS,WAAW,CAAC,KAAa;IAC9B,OAAO,iCAAiC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC;AACjF,CAAC;AACD,SAAS,eAAe,CAAC,KAAc;IACnC,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,KAAK,KAAK,IAAI;QAC3C,OAAO,KAAK,CAAC;IACjB,MAAM,MAAM,GAAG,KAAgC,CAAC;IAChD,OAAO,CAAC,MAAM,CAAC,YAAY,EAAE,MAAM,CAAC,gBAAgB,EAAE,MAAM,CAAC,iBAAiB,CAAC;SAC1E,KAAK,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,MAAM,CAAC,aAAa,CAAC,KAAK,CAAC,IAAK,KAAgB,GAAG,CAAC,CAAC,CAAC;AAChF,CAAC;AACD,SAAS,YAAY,CAAuF,MAAc,EAAE,aAAqB,EAAE,KAAY,EAAE,KAA+C;IAC5M,IAAI,OAAO,KAAK,KAAK,QAAQ;QACzB,KAAK,KAAK,IAAI;QACd,OAAO,KAAK,CAAC,KAAK,KAAK,QAAQ;QAC/B,KAAK,CAAC,KAAK,KAAK,IAAI;QACpB,OAAO,KAAK,CAAC,KAAK,CAAC,IAAI,KAAK,UAAU;QACtC,CAAC,eAAe,CAAC,KAAK,CAAC,KAAK,CAAC,MAAM,CAAC;QACpC,OAAO,KAAK,CAAC,KAAK,CAAC,MAAM,KAAK,UAAU,EAAE,CAAC;QAC3C,MAAM,IAAI,SAAS,CAAC,6DAA6D,CAAC,CAAC;IACvF,CAAC;IACD,MAAM,KAAK,GAAG,IAAA,0CAAwB,EAAC;QACnC,MAAM,EAAE,KAAK,CAAC,MAAM;QACpB,MAAM,EAAE,KAAK,CAAC,MAAM;QACpB,OAAO,EAAE;YACL,MAAM,EAAE,iCAAmB;YAC3B,SAAS,EAAE,6BAAe;SAC7B;KACJ,CAAC,CAAC;IACH,MAAM,UAAU,GAA2F;QACvG,MAAM;QACN,aAAa;QACb,KAAK;QACL,KAAK;QACL,IAAI,EAAE,KAAK,CAAC,KAAK,CAAC,IAAI;QACtB,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,EAAE,GAAG,KAAK,CAAC,KAAK,CAAC,MAAM,EAAE,CAAC;QAChD,MAAM,EAAE,KAAK,CAAC,KAAK,CAAC,MAAM;QAC1B,CAAC,qCAAqC,CAAC,EAAE,GAAG,EAAE,CAAC,SAAS;KAC3D,CAAC;IACF,cAAc,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;IAC/B,OAAO,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,CAAC;AACrC,CAAC;AACD,uFAAuF;AACvF,SAAgB,iCAAiC,CAAC,KAAc;IAC5D,OAAO,OAAO,KAAK,KAAK,QAAQ,IAAI,KAAK,KAAK,IAAI,IAAI,cAAc,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC;AACpF,CAAC;AACD;;;GAGG;AACH,SAAgB,sBAAsB,CAAgF,KAQrH;IACG,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC;QAC7B,MAAM,IAAI,SAAS,CAAC,wFAAwF,CAAC,CAAC;IAClH,CAAC;IACD,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,KAAK,CAAC,OAAO,CAAC,aAAa,CAAC,IAAI,KAAK,CAAC,OAAO,CAAC,aAAa,IAAI,CAAC,EAAE,CAAC;QACzF,MAAM,IAAI,SAAS,CAAC,iEAAiE,CAAC,CAAC;IAC3F,CAAC;IACD,IAAI,KAAK,CAAC,WAAW,KAAK,SAAS,IAAI,OAAO,KAAK,CAAC,WAAW,KAAK,UAAU,EAAE,CAAC;QAC7E,MAAM,IAAI,SAAS,CAAC,uDAAuD,CAAC,CAAC;IACjF,CAAC;IACD,MAAM,sBAAsB,GAAG,KAAK,CAAC,sBAAsB,IAAI,MAAM,CAAC,MAAM,CAAC,EAAE,CAAC,CAAC;IACjF,MAAM,eAAe,GAAG,IAAI,GAAG,EAAU,CAAC;IAC1C,KAAK,MAAM,IAAI,IAAI,sBAAsB,EAAE,CAAC;QACxC,IAAI,CAAC,MAAM,CAAC,aAAa,CAAC,IAAI,CAAC,iBAAiB,CAAC;YAC7C,CAAC,MAAM,CAAC,aAAa,CAAC,IAAI,CAAC,eAAe,CAAC;YAC3C,IAAI,CAAC,iBAAiB,IAAI,CAAC;YAC3B,IAAI,CAAC,eAAe,KAAK,IAAI,CAAC,iBAAiB,GAAG,CAAC;YACnD,IAAI,CAAC,eAAe,GAAG,KAAK,CAAC,OAAO,CAAC,aAAa;YAClD,eAAe,CAAC,GAAG,CAAC,IAAI,CAAC,iBAAiB,CAAC,EAAE,CAAC;YAC9C,MAAM,IAAI,SAAS,CAAC,uFAAuF,CAAC,CAAC;QACjH,CAAC;QACD,eAAe,CAAC,GAAG,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC;IAChD,CAAC;IACD,IAAI,sBAAsB,CAAC,MAAM,GAAG,CAAC,IAAI,KAAK,CAAC,WAAW,KAAK,SAAS,EAAE,CAAC;QACvE,MAAM,IAAI,SAAS,CAAC,6EAA6E,CAAC,CAAC;IACvG,CAAC;IACD,MAAM,IAAI,GAAG,OAAO,CAAC,OAAO,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;IACnD,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC;QACjB,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,KAAK,CAAC,EAAE,CAAC;QACzD,MAAM,IAAI,SAAS,CAAC,2DAA2D,CAAC,CAAC;IACrF,CAAC;IACD,MAAM,MAAM,GAAG,KAAK,CAAC,OAAO,CAAC,MAAqC,CAAC;IACnE,MAAM,QAAQ,GAA4G,EAAE,CAAC;IAC7H,KAAK,MAAM,GAAG,IAAI,IAAwC,EAAE,CAAC;QACzD,MAAM,UAAU,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC;QAC/B,IAAI,UAAU,KAAK,SAAS,EAAE,CAAC;YAC3B,MAAM,IAAI,SAAS,CAAC,+DAA+D,CAAC,CAAC;QACzF,CAAC;QACD,QAAQ,CAAC,GAAG,CAAC,GAAG,YAAY,CAAC,KAAK,CAAC,MAAM,EAAE,KAAK,CAAC,OAAO,CAAC,aAAa,EAAE,GAAG,EAAE,UAAU,CAAC,CAAC;IAC7F,CAAC;IACD,OAAO,MAAM,CAAC,MAAM,CAAC;QACjB,MAAM,EAAE,KAAK,CAAC,MAAM;QACpB,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC;YACnB,aAAa,EAAE,KAAK,CAAC,OAAO,CAAC,aAAa;YAC1C,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,QAAQ,CAA6C;SAC9E,CAAC;QACF,WAAW,EAAE,KAAK,CAAC,WAAW;QAC9B,sBAAsB,EAAE,MAAM,CAAC,MAAM,CAAC,sBAAsB,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,GAAG,IAAI,EAAE,CAAC,CAAC,CAAC;KAC1G,CAAC,CAAC;AACP,CAAC","sourcesContent":["import type { Schema } from \"effect\";\nimport { RecordBlobRefSchema, isRecordBlobRef, type RecordBlobRef, } from \"../attachment/blob-ref.ts\";\nimport type { RecordAttachmentBlobBudget, RecordAttachmentBlobRefs, RecordAttachmentMaterializedRefine, } from \"../attachment/blob-policy.ts\";\nimport type { RecordAttachmentOwner } from \"../model/core.ts\";\nimport { compileRecordSchemaCodec, type RecordSchemaCodec, type RecordSchemaLimits, } from \"./schema-codec.ts\";\nconst recordAttachmentOwnerDefinitionTypeId: unique symbol = Symbol(\"@niceeval/record/RecordAttachmentOwnerDefinition\");\nconst compiledOwners = new WeakSet<object>();\nexport type { RecordAttachmentOwner } from \"../model/core.ts\";\nexport interface RecordAttachmentOwnerInput<SourceSchema extends Schema.Schema.AnyNoContext = Schema.Schema.AnyNoContext> {\n readonly schema: SourceSchema;\n readonly limits: RecordSchemaLimits;\n readonly blobs: Readonly<{\n readonly refs: RecordAttachmentBlobRefs<Schema.Schema.Type<SourceSchema>>;\n readonly budget: RecordAttachmentBlobBudget;\n readonly verify: RecordAttachmentMaterializedRefine<Schema.Schema.Type<SourceSchema>>;\n }>;\n}\nexport type RecordAttachmentOwnerInputs = Readonly<Partial<Record<RecordAttachmentOwner, RecordAttachmentOwnerInput<Schema.Schema.AnyNoContext>>>>;\n/** One owner compiled exactly once from a fixed family declaration. */\nexport interface RecordAttachmentOwnerDefinition<Owner extends RecordAttachmentOwner, Payload, SourceSchema extends Schema.Schema.AnyNoContext = Schema.Schema.AnyNoContext> {\n readonly family: string;\n readonly schemaVersion: number;\n readonly owner: Owner;\n readonly codec: RecordSchemaCodec<Payload, RecordBlobRef, SourceSchema>;\n readonly refs: RecordAttachmentBlobRefs<Payload>;\n readonly budget: RecordAttachmentBlobBudget;\n readonly verify: RecordAttachmentMaterializedRefine<Payload>;\n readonly [recordAttachmentOwnerDefinitionTypeId]: () => void;\n}\ntype OwnerDefinitionFor<Owner extends RecordAttachmentOwner, Input> = Input extends RecordAttachmentOwnerInput<infer SourceSchema> ? RecordAttachmentOwnerDefinition<Owner, Schema.Schema.Type<SourceSchema>, SourceSchema> : never;\nexport type RecordAttachmentOwnerDefinitions<Owners extends RecordAttachmentOwnerInputs> = Readonly<{\n readonly [Owner in keyof Owners]: Owner extends RecordAttachmentOwner ? OwnerDefinitionFor<Owner, Owners[Owner]> : never;\n}>;\n/** Historical codecs stay opaque to the current import graph until maintenance asks for them. */\nexport interface RecordAttachmentHistoricalCodec {\n readonly schemaVersion: number;\n readonly decode: (input: unknown) => unknown;\n}\n/** Only adjacent, package-owned migrations may be declared for a fixed family. */\nexport interface RecordAttachmentAdjacentMigration {\n readonly fromSchemaVersion: number;\n readonly toSchemaVersion: number;\n readonly migrate: (input: unknown) => unknown;\n}\n/** Eager metadata only: implementation remains behind `maintenance`. */\nexport interface RecordAttachmentAdjacentMigrationLink {\n readonly fromSchemaVersion: number;\n readonly toSchemaVersion: number;\n}\nexport interface RecordAttachmentMaintenanceFacet {\n /** Historical codecs and adjacent migrations remain behind this lazy boundary. */\n readonly historicalCodecs: readonly RecordAttachmentHistoricalCodec[];\n readonly adjacentMigrations: readonly RecordAttachmentAdjacentMigration[];\n}\nexport interface RecordAttachmentDefinition<out Family extends string = string, Owners extends RecordAttachmentOwnerInputs = RecordAttachmentOwnerInputs> {\n readonly family: Family;\n readonly current: Readonly<{\n readonly schemaVersion: number;\n readonly owners: RecordAttachmentOwnerDefinitions<Owners>;\n }>;\n readonly maintenance: (() => Promise<RecordAttachmentMaintenanceFacet>) | undefined;\n readonly adjacentMigrationLinks: readonly RecordAttachmentAdjacentMigrationLink[];\n}\nfunction validFamily(value: string): boolean {\n return /^niceeval\\.[a-z0-9][a-z0-9.-]*$/.test(value) && !value.includes(\"/\");\n}\nfunction validBlobBudget(value: unknown): value is RecordAttachmentBlobBudget {\n if (typeof value !== \"object\" || value === null)\n return false;\n const budget = value as Record<string, unknown>;\n return [budget.maximumBlobs, budget.maximumBlobBytes, budget.maximumTotalBytes]\n .every((limit) => Number.isSafeInteger(limit) && (limit as number) > 0);\n}\nfunction compileOwner<Owner extends RecordAttachmentOwner, SourceSchema extends Schema.Schema.AnyNoContext>(family: string, schemaVersion: number, owner: Owner, input: RecordAttachmentOwnerInput<SourceSchema>): RecordAttachmentOwnerDefinition<Owner, Schema.Schema.Type<SourceSchema>, SourceSchema> {\n if (typeof input !== \"object\" ||\n input === null ||\n typeof input.blobs !== \"object\" ||\n input.blobs === null ||\n typeof input.blobs.refs !== \"function\" ||\n !validBlobBudget(input.blobs.budget) ||\n typeof input.blobs.verify !== \"function\") {\n throw new TypeError(\"Record Attachment owners must declare a bounded blob policy\");\n }\n const codec = compileRecordSchemaCodec({\n schema: input.schema,\n limits: input.limits,\n blobRef: {\n schema: RecordBlobRefSchema,\n isBlobRef: isRecordBlobRef,\n },\n });\n const definition: RecordAttachmentOwnerDefinition<Owner, Schema.Schema.Type<SourceSchema>, SourceSchema> = {\n family,\n schemaVersion,\n owner,\n codec,\n refs: input.blobs.refs,\n budget: Object.freeze({ ...input.blobs.budget }),\n verify: input.blobs.verify,\n [recordAttachmentOwnerDefinitionTypeId]: () => undefined,\n };\n compiledOwners.add(definition);\n return Object.freeze(definition);\n}\n/** @internal Runtime factories accept only owners minted by defineRecordAttachment. */\nexport function isRecordAttachmentOwnerDefinition(value: unknown): value is RecordAttachmentOwnerDefinition<RecordAttachmentOwner, unknown> {\n return typeof value === \"object\" && value !== null && compiledOwners.has(value);\n}\n/**\n * NiceEval-only fixed-family declaration. It stores no registry and exposes no\n * plugin hook: the static catalog is assembled by package code alone.\n */\nexport function defineRecordAttachment<const Family extends string, const Owners extends RecordAttachmentOwnerInputs>(input: {\n readonly family: Family;\n readonly current: {\n readonly schemaVersion: number;\n readonly owners: Owners;\n };\n readonly maintenance?: () => Promise<RecordAttachmentMaintenanceFacet>;\n readonly adjacentMigrationLinks?: readonly RecordAttachmentAdjacentMigrationLink[];\n}): RecordAttachmentDefinition<Family, Owners> {\n if (!validFamily(input.family)) {\n throw new TypeError(\"Record Attachment family must be a stable niceeval.* identity without a version suffix\");\n }\n if (!Number.isSafeInteger(input.current.schemaVersion) || input.current.schemaVersion <= 0) {\n throw new TypeError(\"Record Attachment schemaVersion must be a positive safe integer\");\n }\n if (input.maintenance !== undefined && typeof input.maintenance !== \"function\") {\n throw new TypeError(\"Record Attachment maintenance must be a lazy function\");\n }\n const adjacentMigrationLinks = input.adjacentMigrationLinks ?? Object.freeze([]);\n const migrationStarts = new Set<number>();\n for (const link of adjacentMigrationLinks) {\n if (!Number.isSafeInteger(link.fromSchemaVersion) ||\n !Number.isSafeInteger(link.toSchemaVersion) ||\n link.fromSchemaVersion <= 0 ||\n link.toSchemaVersion !== link.fromSchemaVersion + 1 ||\n link.toSchemaVersion > input.current.schemaVersion ||\n migrationStarts.has(link.fromSchemaVersion)) {\n throw new TypeError(\"Record Attachment migration links must be unique adjacent upgrades to current history\");\n }\n migrationStarts.add(link.fromSchemaVersion);\n }\n if (adjacentMigrationLinks.length > 0 && input.maintenance === undefined) {\n throw new TypeError(\"Record Attachment migration links require a lazy maintenance implementation\");\n }\n const keys = Reflect.ownKeys(input.current.owners);\n if (keys.length === 0 ||\n keys.some((key) => key !== \"attempt\" && key !== \"run\")) {\n throw new TypeError(\"Record Attachment owners may contain only attempt and run\");\n }\n const owners = input.current.owners as RecordAttachmentOwnerInputs;\n const compiled: Partial<Record<RecordAttachmentOwner, RecordAttachmentOwnerDefinition<RecordAttachmentOwner, unknown>>> = {};\n for (const key of keys as readonly RecordAttachmentOwner[]) {\n const ownerInput = owners[key];\n if (ownerInput === undefined) {\n throw new TypeError(\"Record Attachment owners must have one schema and blob policy\");\n }\n compiled[key] = compileOwner(input.family, input.current.schemaVersion, key, ownerInput);\n }\n return Object.freeze({\n family: input.family,\n current: Object.freeze({\n schemaVersion: input.current.schemaVersion,\n owners: Object.freeze(compiled) as RecordAttachmentOwnerDefinitions<Owners>,\n }),\n maintenance: input.maintenance,\n adjacentMigrationLinks: Object.freeze(adjacentMigrationLinks.map((link) => Object.freeze({ ...link }))),\n });\n}\n"]}