gst-common 1.5.36 → 1.5.38

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/dist/index.d.cts CHANGED
@@ -1278,7 +1278,7 @@ type TTutorPublicList = {
1278
1278
  type TDocumentImport = {
1279
1279
  orderIds: {
1280
1280
  id: string;
1281
- order: string;
1281
+ order: number;
1282
1282
  }[];
1283
1283
  programId: string;
1284
1284
  };
@@ -1459,10 +1459,15 @@ type TClassNotificationCreateRes = TClassNotificationEntity;
1459
1459
  type TClassNotificationUpdateRes = TClassNotificationEntity;
1460
1460
  type TClassNotificationListRes = {
1461
1461
  classNotifications: (Omit<TClassNotificationEntity, "class"> & {
1462
- file: TFileEntity | null;
1463
- editor: TEditorEntity | null;
1462
+ file: (TFileEntity & {
1463
+ referencesDocument: TDocumentsEntity | null;
1464
+ }) | null;
1465
+ editor: (TEditorEntity & {
1466
+ referencesDocument: TDocumentsEntity;
1467
+ }) | null;
1464
1468
  groupQuestion: (TGroupQuestionEntity & {
1465
1469
  totalQuestion: number;
1470
+ referencesDocument: TDocumentsEntity;
1466
1471
  sessionGroupQuestionsLastCreatedAt: string | null;
1467
1472
  sessionGroupQuestionsStatus: SESSION_GROUP_QUESTION | null;
1468
1473
  sessionGroupQuestionId: string | null;
package/dist/index.d.ts CHANGED
@@ -1278,7 +1278,7 @@ type TTutorPublicList = {
1278
1278
  type TDocumentImport = {
1279
1279
  orderIds: {
1280
1280
  id: string;
1281
- order: string;
1281
+ order: number;
1282
1282
  }[];
1283
1283
  programId: string;
1284
1284
  };
@@ -1459,10 +1459,15 @@ type TClassNotificationCreateRes = TClassNotificationEntity;
1459
1459
  type TClassNotificationUpdateRes = TClassNotificationEntity;
1460
1460
  type TClassNotificationListRes = {
1461
1461
  classNotifications: (Omit<TClassNotificationEntity, "class"> & {
1462
- file: TFileEntity | null;
1463
- editor: TEditorEntity | null;
1462
+ file: (TFileEntity & {
1463
+ referencesDocument: TDocumentsEntity | null;
1464
+ }) | null;
1465
+ editor: (TEditorEntity & {
1466
+ referencesDocument: TDocumentsEntity;
1467
+ }) | null;
1464
1468
  groupQuestion: (TGroupQuestionEntity & {
1465
1469
  totalQuestion: number;
1470
+ referencesDocument: TDocumentsEntity;
1466
1471
  sessionGroupQuestionsLastCreatedAt: string | null;
1467
1472
  sessionGroupQuestionsStatus: SESSION_GROUP_QUESTION | null;
1468
1473
  sessionGroupQuestionId: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gst-common",
3
- "version": "1.5.36",
3
+ "version": "1.5.38",
4
4
  "description": "store all common variables that we need",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",