@uniteverses/shared 1.0.35 → 1.0.36

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,22 @@ 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
+ }
239
255
  export interface CreateSatExamTemplateInput {
240
256
  organizationId: string;
241
257
  title: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniteverses/shared",
3
- "version": "1.0.35",
3
+ "version": "1.0.36",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [