gst-common 1.1.21 → 1.1.23

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
@@ -50,7 +50,7 @@ declare enum PROGRAM_SUITABLE_LEARNER {
50
50
  type ProgramSuitableLearnerEntity = {
51
51
  suitableLeanerCode: PROGRAM_SUITABLE_LEARNER;
52
52
  program: ProgramEntity;
53
- };
53
+ } & BaseEntity;
54
54
  type ProgramEntity = {
55
55
  thumbnail: string;
56
56
  name: string;
@@ -59,6 +59,7 @@ type ProgramEntity = {
59
59
  suitableLearners: ProgramSuitableLearnerEntity[];
60
60
  fromPrice: number;
61
61
  toPrice: number;
62
+ account: AccountEntity;
62
63
  fromTeachingHour: number;
63
64
  toTeachingHour: number;
64
65
  } & BaseEntity;
package/dist/index.d.ts CHANGED
@@ -50,7 +50,7 @@ declare enum PROGRAM_SUITABLE_LEARNER {
50
50
  type ProgramSuitableLearnerEntity = {
51
51
  suitableLeanerCode: PROGRAM_SUITABLE_LEARNER;
52
52
  program: ProgramEntity;
53
- };
53
+ } & BaseEntity;
54
54
  type ProgramEntity = {
55
55
  thumbnail: string;
56
56
  name: string;
@@ -59,6 +59,7 @@ type ProgramEntity = {
59
59
  suitableLearners: ProgramSuitableLearnerEntity[];
60
60
  fromPrice: number;
61
61
  toPrice: number;
62
+ account: AccountEntity;
62
63
  fromTeachingHour: number;
63
64
  toTeachingHour: number;
64
65
  } & BaseEntity;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gst-common",
3
- "version": "1.1.21",
3
+ "version": "1.1.23",
4
4
  "description": "store all common variables that we need",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",