@uniteverses/shared 1.0.35 → 1.0.37
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.
|
@@ -236,6 +236,27 @@ export interface SatExamTemplateQuestionType {
|
|
|
236
236
|
typeId: string;
|
|
237
237
|
type: SatExamQuestionType;
|
|
238
238
|
}
|
|
239
|
+
export interface OrgStudentUser {
|
|
240
|
+
id: string;
|
|
241
|
+
firstName: string;
|
|
242
|
+
lastName: string;
|
|
243
|
+
username: string;
|
|
244
|
+
}
|
|
245
|
+
export interface OrgStudent {
|
|
246
|
+
id: string;
|
|
247
|
+
organizationId: string;
|
|
248
|
+
userId: string;
|
|
249
|
+
createdAt: string;
|
|
250
|
+
user: OrgStudentUser;
|
|
251
|
+
}
|
|
252
|
+
export interface CreateOrgStudentInput {
|
|
253
|
+
userId: string;
|
|
254
|
+
}
|
|
255
|
+
export interface OrgWithExams {
|
|
256
|
+
id: string;
|
|
257
|
+
name: string;
|
|
258
|
+
exams: SatExam[];
|
|
259
|
+
}
|
|
239
260
|
export interface CreateSatExamTemplateInput {
|
|
240
261
|
organizationId: string;
|
|
241
262
|
title: string;
|