gst-common 1.4.24 → 1.4.25
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 +4 -1
- package/dist/index.d.ts +4 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -918,7 +918,8 @@ type TProgramRatingUpload = {
|
|
|
918
918
|
file: any;
|
|
919
919
|
};
|
|
920
920
|
type TProgramRatingPublicList = {
|
|
921
|
-
programId
|
|
921
|
+
programId?: string;
|
|
922
|
+
ownerProgramId?: string;
|
|
922
923
|
score?: number;
|
|
923
924
|
} & BasePaginationParams;
|
|
924
925
|
type TProgramRatingStudentHasRated = {
|
|
@@ -1509,6 +1510,8 @@ type TProgramRatingUploadRes = TFileEntity;
|
|
|
1509
1510
|
type TProgramRatingPublicListRes = {
|
|
1510
1511
|
programRatings: (TProgramRatingEntity & {
|
|
1511
1512
|
files: TFileEntity[];
|
|
1513
|
+
createdBy: TAccountEntity;
|
|
1514
|
+
program: TProgramEntity;
|
|
1512
1515
|
class: TClassEntity & {
|
|
1513
1516
|
totalHourCompleted: number;
|
|
1514
1517
|
totalLessonCompleted: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -918,7 +918,8 @@ type TProgramRatingUpload = {
|
|
|
918
918
|
file: any;
|
|
919
919
|
};
|
|
920
920
|
type TProgramRatingPublicList = {
|
|
921
|
-
programId
|
|
921
|
+
programId?: string;
|
|
922
|
+
ownerProgramId?: string;
|
|
922
923
|
score?: number;
|
|
923
924
|
} & BasePaginationParams;
|
|
924
925
|
type TProgramRatingStudentHasRated = {
|
|
@@ -1509,6 +1510,8 @@ type TProgramRatingUploadRes = TFileEntity;
|
|
|
1509
1510
|
type TProgramRatingPublicListRes = {
|
|
1510
1511
|
programRatings: (TProgramRatingEntity & {
|
|
1511
1512
|
files: TFileEntity[];
|
|
1513
|
+
createdBy: TAccountEntity;
|
|
1514
|
+
program: TProgramEntity;
|
|
1512
1515
|
class: TClassEntity & {
|
|
1513
1516
|
totalHourCompleted: number;
|
|
1514
1517
|
totalLessonCompleted: number;
|