executable-stories-formatters 1.1.0 → 1.2.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.
package/dist/index.d.cts CHANGED
@@ -1392,6 +1392,12 @@ interface ScenarioIndex {
1392
1392
  interface ScenarioIndexItem {
1393
1393
  id: string;
1394
1394
  title: string;
1395
+ /**
1396
+ * Content hash (title + step keywords/texts) for explainer provenance —
1397
+ * copy into an explainer's frontmatter `scenarios[].hash` so
1398
+ * `check-explainers` can detect drift. Status is deliberately excluded.
1399
+ */
1400
+ hash: string;
1395
1401
  status: TestStatus;
1396
1402
  feature: string;
1397
1403
  sourceFile: string;
package/dist/index.d.ts CHANGED
@@ -1392,6 +1392,12 @@ interface ScenarioIndex {
1392
1392
  interface ScenarioIndexItem {
1393
1393
  id: string;
1394
1394
  title: string;
1395
+ /**
1396
+ * Content hash (title + step keywords/texts) for explainer provenance —
1397
+ * copy into an explainer's frontmatter `scenarios[].hash` so
1398
+ * `check-explainers` can detect drift. Status is deliberately excluded.
1399
+ */
1400
+ hash: string;
1395
1401
  status: TestStatus;
1396
1402
  feature: string;
1397
1403
  sourceFile: string;