@uniteverses/shared 1.0.19 → 1.0.21

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.
package/README.md CHANGED
@@ -14,4 +14,5 @@ npm publish --access public
14
14
  #
15
15
 
16
16
  cd uniteverses-website
17
+ npm cache clean --force
17
18
  npm install @uniteverses/shared@1.0.X
@@ -99,3 +99,19 @@ export interface UpdateSatExamQuestionTypeInput {
99
99
  name?: string;
100
100
  label?: string;
101
101
  }
102
+ export interface CreateSatExamOptionInput {
103
+ questionId: string;
104
+ text: string;
105
+ order: number;
106
+ }
107
+ export interface UpdateSatExamOptionInput {
108
+ text?: string;
109
+ order?: number;
110
+ }
111
+ export interface CreateSatExamCorrectAnswerInput {
112
+ questionId: string;
113
+ value: string;
114
+ }
115
+ export interface UpdateSatExamCorrectAnswerInput {
116
+ value?: string;
117
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniteverses/shared",
3
- "version": "1.0.19",
3
+ "version": "1.0.21",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [