@studyportals/domain-client 4.8.0 → 4.10.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
|
@@ -5,6 +5,12 @@ export interface IOrganisationValues {
|
|
|
5
5
|
* @return number
|
|
6
6
|
*/
|
|
7
7
|
getCountryId(): number;
|
|
8
|
+
/**
|
|
9
|
+
* Country iso code of the top level organisation.
|
|
10
|
+
*
|
|
11
|
+
* @return string
|
|
12
|
+
*/
|
|
13
|
+
getCountryIsoCode(): string;
|
|
8
14
|
/**
|
|
9
15
|
* ID of the programme's main organisation.
|
|
10
16
|
*
|
|
@@ -24,6 +24,12 @@ export interface ISearchProjection {
|
|
|
24
24
|
* @return number[]
|
|
25
25
|
*/
|
|
26
26
|
getCountries(): number[];
|
|
27
|
+
/**
|
|
28
|
+
* List of country iso codes where the programme is taught at (through venues).
|
|
29
|
+
*
|
|
30
|
+
* @return string[]
|
|
31
|
+
*/
|
|
32
|
+
getCountryIsoCodes(): string[];
|
|
27
33
|
/**
|
|
28
34
|
* Unformatted degree of the programme.
|
|
29
35
|
*
|