@concord-consortium/lara-interactive-api 1.13.0-pre.2 → 1.14.0-pre.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.
@@ -26,6 +26,13 @@ export interface IAuthoringMultipleChoiceChoiceMetadata {
26
26
  export interface IAuthoringMultipleChoiceMetadata extends IAuthoringMetadataBase {
27
27
  questionType: "multiple_choice";
28
28
  choices: IAuthoringMultipleChoiceChoiceMetadata[];
29
+ /**
30
+ * Whether the question accepts multiple simultaneous answers. When omitted, consumers should
31
+ * treat it as undefined (not false) — single-answer behavior is the legacy default but is not
32
+ * implied by absence. LARA surfaces this verbatim as `multiple_answers` on the report-service
33
+ * structure document.
34
+ */
35
+ multipleAnswers?: boolean;
29
36
  }
30
37
  export interface IAuthoringImageQuestionMetadata extends IAuthoringMetadataBase {
31
38
  questionType: "image_question";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@concord-consortium/lara-interactive-api",
3
- "version": "1.13.0-pre.2",
3
+ "version": "1.14.0-pre.0",
4
4
  "description": "LARA Interactive API client and types",
5
5
  "main": "./index.js",
6
6
  "types": "./index-bundle.d.ts",