yarramate 1.29.0 → 1.30.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.
@@ -62,6 +62,13 @@ export interface VisualNextQuestion extends VisualQuestionEntry {
62
62
  export interface VisualInterrogationOverlay {
63
63
  /** `id@version` of the catalogue that asked. */
64
64
  readonly catalogue: string;
65
+ /**
66
+ * Every catalogue in the composed set, `id@version` each, in resolution
67
+ * order (#530, ADR 0129) - present only when composition happened, the way
68
+ * the report carries it. The footer names them all; `catalogue` alone is
69
+ * the base and stays for readers that predate this.
70
+ */
71
+ readonly catalogues?: readonly string[];
65
72
  /** Engine condition-semantics version (ADR 0106), carried so a consumer
66
73
  * can tell "the model moved" from "the engine moved". */
67
74
  readonly semantics: string;
@@ -183,6 +183,7 @@ dismissed = []) => {
183
183
  }
184
184
  return {
185
185
  catalogue: report.catalogue,
186
+ ...(report.catalogues === undefined ? {} : { catalogues: report.catalogues }),
186
187
  semantics: report.semantics,
187
188
  workspace,
188
189
  subjects,