@studyportals/domain-client 3.15.0 → 3.16.0
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/package.json
CHANGED
|
@@ -14,6 +14,12 @@ export interface IDotDigitalProgramme {
|
|
|
14
14
|
*/
|
|
15
15
|
getCountry(): ICountry;
|
|
16
16
|
canShowCountry(): boolean;
|
|
17
|
+
/**
|
|
18
|
+
* Get discipline ids attached to this programme
|
|
19
|
+
*
|
|
20
|
+
* @return number[]
|
|
21
|
+
*/
|
|
22
|
+
getDisciplineIds(): number[];
|
|
17
23
|
/**
|
|
18
24
|
* Education level
|
|
19
25
|
*
|
|
@@ -74,6 +80,12 @@ export interface IDotDigitalProgramme {
|
|
|
74
80
|
*/
|
|
75
81
|
getTuitionFees(): ITuitionFee[];
|
|
76
82
|
canShowTuitionFees(): boolean;
|
|
83
|
+
/**
|
|
84
|
+
* University id
|
|
85
|
+
*
|
|
86
|
+
* @return number
|
|
87
|
+
*/
|
|
88
|
+
getUniversityId(): number;
|
|
77
89
|
/**
|
|
78
90
|
* University title
|
|
79
91
|
*
|