revdev 0.352.0 → 0.354.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.
@@ -6,6 +6,7 @@ export interface BoGenerateItemChoiceRequest {
6
6
  count: number;
7
7
  exerciseId: string;
8
8
  altRuleIds: string[];
9
+ incorrectAnswerTotal?: number;
9
10
  }
10
11
  export interface BoCreateItemChoiceSetRequest {
11
12
  exerciseId: string;
@@ -8,6 +8,7 @@ export interface BoRuleRecord {
8
8
  active: boolean;
9
9
  status?: EntryStatus;
10
10
  exerciseTotal: number;
11
+ predefinedOptions?: string[];
11
12
  }
12
13
  export interface BoRuleModifier extends BoRuleRecord {
13
14
  contentType: ContentType;
@@ -7,6 +7,7 @@ export interface BoCreateRuleRequest {
7
7
  contentType: ContentType;
8
8
  content: string;
9
9
  note?: string;
10
+ predefinedOptions?: string[];
10
11
  }
11
12
  export interface BoUpdateRuleRequest extends BoCreateRuleRequest {
12
13
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "revdev",
3
- "version": "0.352.0",
3
+ "version": "0.354.0",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",