@uniteverses/shared 1.0.22 → 1.0.24

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.
@@ -19,6 +19,11 @@ export interface SatExamCorrectAnswer {
19
19
  value: string;
20
20
  }
21
21
  export type SatExamQuestionDifficulty = 'easy' | 'medium' | 'hard';
22
+ export declare const DEFAULT_QUESTION_DIFFICULTY: SatExamQuestionDifficulty;
23
+ export declare const QUESTION_DIFFICULTY_OPTIONS: {
24
+ value: SatExamQuestionDifficulty;
25
+ label: string;
26
+ }[];
22
27
  export interface SatExamQuestion {
23
28
  id: string;
24
29
  sectionId: string;
@@ -36,6 +41,11 @@ export interface SatExamQuestion {
36
41
  correctAnswers: SatExamCorrectAnswer[];
37
42
  }
38
43
  export type SatExamSectionDifficulty = 'standard' | 'easy' | 'hard';
44
+ export declare const DEFAULT_SECTION_DIFFICULTY: SatExamSectionDifficulty;
45
+ export declare const SECTION_DIFFICULTY_OPTIONS: {
46
+ value: SatExamSectionDifficulty;
47
+ label: string;
48
+ }[];
39
49
  export interface SatExamSection {
40
50
  id: string;
41
51
  examId: string;
@@ -1,2 +1,15 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SECTION_DIFFICULTY_OPTIONS = exports.DEFAULT_SECTION_DIFFICULTY = exports.QUESTION_DIFFICULTY_OPTIONS = exports.DEFAULT_QUESTION_DIFFICULTY = void 0;
4
+ exports.DEFAULT_QUESTION_DIFFICULTY = 'medium';
5
+ exports.QUESTION_DIFFICULTY_OPTIONS = [
6
+ { value: 'easy', label: 'Easy' },
7
+ { value: 'medium', label: 'Medium' },
8
+ { value: 'hard', label: 'Hard' },
9
+ ];
10
+ exports.DEFAULT_SECTION_DIFFICULTY = 'standard';
11
+ exports.SECTION_DIFFICULTY_OPTIONS = [
12
+ { value: 'standard', label: 'Standard (Module 1)' },
13
+ { value: 'easy', label: 'Easy (Module 2)' },
14
+ { value: 'hard', label: 'Hard (Module 2)' },
15
+ ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniteverses/shared",
3
- "version": "1.0.22",
3
+ "version": "1.0.24",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [