@studyportals/domain-client 4.11.0 → 4.12.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
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
import { IEnglishRequirements, IGeoTargetingValues, IInternalLink, ITiming, ITuitionValues, ILink } from "../../..";
|
|
2
2
|
export interface ICopilotProgramme {
|
|
3
3
|
/**
|
|
4
|
-
* Get country the programme is
|
|
4
|
+
* Get country the programme is taught in
|
|
5
5
|
*
|
|
6
6
|
* @return number[]
|
|
7
7
|
*/
|
|
8
8
|
getCountryIds(): number[];
|
|
9
|
+
/**
|
|
10
|
+
* Get country the programme is taught in
|
|
11
|
+
*
|
|
12
|
+
* @return string[]
|
|
13
|
+
*/
|
|
14
|
+
getCountryIsoCodes(): string[];
|
|
9
15
|
/**
|
|
10
16
|
* Get discipline ids attached to this programme
|
|
11
17
|
*
|