gst-common 1.2.23 → 1.2.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.cjs +1 -0
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -131,6 +131,7 @@ var CLASS_STATUS = /* @__PURE__ */ ((CLASS_STATUS2) => {
|
|
|
131
131
|
return CLASS_STATUS2;
|
|
132
132
|
})(CLASS_STATUS || {});
|
|
133
133
|
var LESSON_ACTIVITY_STATUS = /* @__PURE__ */ ((LESSON_ACTIVITY_STATUS2) => {
|
|
134
|
+
LESSON_ACTIVITY_STATUS2["NEW"] = "NEW";
|
|
134
135
|
LESSON_ACTIVITY_STATUS2["CANCELED"] = "CANCELED";
|
|
135
136
|
LESSON_ACTIVITY_STATUS2["COMPLETED"] = "COMPLETED";
|
|
136
137
|
return LESSON_ACTIVITY_STATUS2;
|
package/dist/index.d.cts
CHANGED
|
@@ -87,6 +87,7 @@ declare enum CLASS_STATUS {
|
|
|
87
87
|
FINISHED = "FINISHED"
|
|
88
88
|
}
|
|
89
89
|
declare enum LESSON_ACTIVITY_STATUS {
|
|
90
|
+
NEW = "NEW",
|
|
90
91
|
CANCELED = "CANCELED",
|
|
91
92
|
COMPLETED = "COMPLETED"
|
|
92
93
|
}
|
|
@@ -236,7 +237,7 @@ type TClassEntity = {
|
|
|
236
237
|
registeredProgram: TRegisteredProgramEntity | null;
|
|
237
238
|
student: TAccountEntity | null;
|
|
238
239
|
tutor: TAccountEntity;
|
|
239
|
-
learningTimes: TClassLearningTimeEntity;
|
|
240
|
+
learningTimes: TClassLearningTimeEntity[];
|
|
240
241
|
} & BaseEntity;
|
|
241
242
|
type TLessonEntity = {
|
|
242
243
|
startTime: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -87,6 +87,7 @@ declare enum CLASS_STATUS {
|
|
|
87
87
|
FINISHED = "FINISHED"
|
|
88
88
|
}
|
|
89
89
|
declare enum LESSON_ACTIVITY_STATUS {
|
|
90
|
+
NEW = "NEW",
|
|
90
91
|
CANCELED = "CANCELED",
|
|
91
92
|
COMPLETED = "COMPLETED"
|
|
92
93
|
}
|
|
@@ -236,7 +237,7 @@ type TClassEntity = {
|
|
|
236
237
|
registeredProgram: TRegisteredProgramEntity | null;
|
|
237
238
|
student: TAccountEntity | null;
|
|
238
239
|
tutor: TAccountEntity;
|
|
239
|
-
learningTimes: TClassLearningTimeEntity;
|
|
240
|
+
learningTimes: TClassLearningTimeEntity[];
|
|
240
241
|
} & BaseEntity;
|
|
241
242
|
type TLessonEntity = {
|
|
242
243
|
startTime: string;
|
package/dist/index.mjs
CHANGED
|
@@ -79,6 +79,7 @@ var CLASS_STATUS = /* @__PURE__ */ ((CLASS_STATUS2) => {
|
|
|
79
79
|
return CLASS_STATUS2;
|
|
80
80
|
})(CLASS_STATUS || {});
|
|
81
81
|
var LESSON_ACTIVITY_STATUS = /* @__PURE__ */ ((LESSON_ACTIVITY_STATUS2) => {
|
|
82
|
+
LESSON_ACTIVITY_STATUS2["NEW"] = "NEW";
|
|
82
83
|
LESSON_ACTIVITY_STATUS2["CANCELED"] = "CANCELED";
|
|
83
84
|
LESSON_ACTIVITY_STATUS2["COMPLETED"] = "COMPLETED";
|
|
84
85
|
return LESSON_ACTIVITY_STATUS2;
|