executable-stories-formatters 0.9.0 → 0.11.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.
@@ -113,6 +113,13 @@ type DocEntry = {
113
113
  alt?: string;
114
114
  phase: DocPhase;
115
115
  children?: DocEntry[];
116
+ } | {
117
+ kind: "video";
118
+ path: string;
119
+ caption?: string;
120
+ poster?: string;
121
+ phase: DocPhase;
122
+ children?: DocEntry[];
116
123
  } | {
117
124
  kind: "custom";
118
125
  type: string;
@@ -159,6 +166,8 @@ interface StoryMeta {
159
166
  tags?: string[];
160
167
  /** Ticket/issue references (normalized to array) */
161
168
  tickets?: NormalizedTicket[];
169
+ /** Product-code paths/globs this scenario exercises (project-root-relative). */
170
+ covers?: string[];
162
171
  /** User-defined metadata */
163
172
  meta?: Record<string, unknown>;
164
173
  /** Parent describe/suite names for hierarchical grouping */
@@ -113,6 +113,13 @@ type DocEntry = {
113
113
  alt?: string;
114
114
  phase: DocPhase;
115
115
  children?: DocEntry[];
116
+ } | {
117
+ kind: "video";
118
+ path: string;
119
+ caption?: string;
120
+ poster?: string;
121
+ phase: DocPhase;
122
+ children?: DocEntry[];
116
123
  } | {
117
124
  kind: "custom";
118
125
  type: string;
@@ -159,6 +166,8 @@ interface StoryMeta {
159
166
  tags?: string[];
160
167
  /** Ticket/issue references (normalized to array) */
161
168
  tickets?: NormalizedTicket[];
169
+ /** Product-code paths/globs this scenario exercises (project-root-relative). */
170
+ covers?: string[];
162
171
  /** User-defined metadata */
163
172
  meta?: Record<string, unknown>;
164
173
  /** Parent describe/suite names for hierarchical grouping */