@studyportals/domain-client 3.23.0 → 3.24.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
|
@@ -43,11 +43,29 @@ export interface IRankingCard {
|
|
|
43
43
|
*/
|
|
44
44
|
getPosition(): number | null;
|
|
45
45
|
/**
|
|
46
|
-
*
|
|
46
|
+
* Retrieves the ranking position for the organisation in the Studyportals ranking in the country of the university.
|
|
47
|
+
*
|
|
48
|
+
* @return number | null
|
|
49
|
+
*/
|
|
50
|
+
getPositionInCountry(): number | null;
|
|
51
|
+
/**
|
|
52
|
+
* Retrieves the ranking position for the organisation in the Studyportals ranking in the region of the university.
|
|
53
|
+
*
|
|
54
|
+
* @return number | null
|
|
55
|
+
*/
|
|
56
|
+
getPositionInRegion(): number | null;
|
|
57
|
+
/**
|
|
58
|
+
* Retrieves the percentage category in the Studyportals ranking.
|
|
59
|
+
*
|
|
60
|
+
* @return string | null
|
|
61
|
+
*/
|
|
62
|
+
getGlobalPositionPercentage(): string | null;
|
|
63
|
+
/**
|
|
64
|
+
* Retrieves the percentage category in the Studyportals ranking for the current location.
|
|
47
65
|
*
|
|
48
66
|
* @return string | null
|
|
49
67
|
*/
|
|
50
|
-
|
|
68
|
+
getCountryPositionPercentage(): string | null;
|
|
51
69
|
/**
|
|
52
70
|
* Get the year the organisation was ranked.
|
|
53
71
|
*
|