@uniteverses/shared 1.0.27 → 1.0.28

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.
@@ -183,3 +183,68 @@ export interface CreateSatExamCorrectAnswerInput {
183
183
  export interface UpdateSatExamCorrectAnswerInput {
184
184
  value?: string;
185
185
  }
186
+ export interface SatExamTemplate {
187
+ id: string;
188
+ organizationId: string;
189
+ title: string;
190
+ description: string | null;
191
+ createdAt: string;
192
+ updatedAt: string;
193
+ organization: SatExamOrganization;
194
+ sections: SatExamTemplateSection[];
195
+ }
196
+ export interface SatExamTemplateSection {
197
+ id: string;
198
+ templateId: string;
199
+ name: string;
200
+ order: number;
201
+ timeLimitMinutes: number | null;
202
+ module: number | null;
203
+ questions: SatExamTemplateQuestion[];
204
+ }
205
+ export interface SatExamTemplateQuestion {
206
+ id: string;
207
+ sectionId: string;
208
+ order: number;
209
+ types: SatExamTemplateQuestionType[];
210
+ }
211
+ export interface SatExamTemplateQuestionType {
212
+ id: string;
213
+ questionId: string;
214
+ typeId: string;
215
+ type: SatExamQuestionType;
216
+ }
217
+ export interface CreateSatExamTemplateInput {
218
+ organizationId: string;
219
+ title: string;
220
+ description?: string;
221
+ }
222
+ export interface UpdateSatExamTemplateInput {
223
+ title?: string;
224
+ description?: string;
225
+ organizationId?: string;
226
+ }
227
+ export interface CreateSatExamTemplateSectionInput {
228
+ templateId: string;
229
+ name: string;
230
+ order: number;
231
+ timeLimitMinutes?: number;
232
+ module?: number;
233
+ }
234
+ export interface UpdateSatExamTemplateSectionInput {
235
+ name?: string;
236
+ order?: number;
237
+ timeLimitMinutes?: number | null;
238
+ module?: number | null;
239
+ }
240
+ export interface CreateSatExamTemplateQuestionInput {
241
+ sectionId: string;
242
+ order: number;
243
+ }
244
+ export interface UpdateSatExamTemplateQuestionInput {
245
+ order?: number;
246
+ }
247
+ export interface CreateSatExamTemplateQuestionTypeInput {
248
+ questionId: string;
249
+ typeId: string;
250
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniteverses/shared",
3
- "version": "1.0.27",
3
+ "version": "1.0.28",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [