@uniteverses/shared 1.0.38 → 1.0.40

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.
@@ -0,0 +1,13 @@
1
+ export interface RandomImageResponse {
2
+ imageUrl: string;
3
+ tags: string;
4
+ }
5
+ export interface AnalyzeDescriptionRequest {
6
+ imageUrl: string;
7
+ description: string;
8
+ }
9
+ export interface AnalyzeDescriptionResponse {
10
+ describedWell: string[];
11
+ missed: string[];
12
+ tip: string;
13
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -48,6 +48,10 @@ export interface SatExamQuestion {
48
48
  id: string;
49
49
  sectionId: string;
50
50
  typeId: string;
51
+ intro: string | null;
52
+ imageUrl: string | null;
53
+ passage1: string | null;
54
+ passage2: string | null;
51
55
  text: string;
52
56
  order: number;
53
57
  correctOptionId: string | null;
@@ -147,6 +151,10 @@ export interface UpdateSatExamSectionInput {
147
151
  export interface CreateSatExamQuestionInput {
148
152
  sectionId: string;
149
153
  typeId: string;
154
+ intro?: string;
155
+ imageUrl?: string;
156
+ passage1?: string;
157
+ passage2?: string;
150
158
  text: string;
151
159
  order: number;
152
160
  correctOptionId?: string;
@@ -162,6 +170,10 @@ export interface CreateSatExamQuestionInput {
162
170
  }
163
171
  export interface UpdateSatExamQuestionInput {
164
172
  typeId?: string;
173
+ intro?: string | null;
174
+ imageUrl?: string | null;
175
+ passage1?: string | null;
176
+ passage2?: string | null;
165
177
  text?: string;
166
178
  order?: number;
167
179
  correctOptionId?: string | null;
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from "./domains/politicians/community/residents/explore/types";
2
2
  export * from "./domains/politicians/community/residents/explore/constants";
3
3
  export * from "./domains/teachers/prep_center/students/simulate/types";
4
+ export * from "./domains/students/writing/students/practice/types";
package/dist/index.js CHANGED
@@ -17,3 +17,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./domains/politicians/community/residents/explore/types"), exports);
18
18
  __exportStar(require("./domains/politicians/community/residents/explore/constants"), exports);
19
19
  __exportStar(require("./domains/teachers/prep_center/students/simulate/types"), exports);
20
+ __exportStar(require("./domains/students/writing/students/practice/types"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniteverses/shared",
3
- "version": "1.0.38",
3
+ "version": "1.0.40",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [