@studyportals/domain-client 3.24.1-beta.0 → 3.25.0-beta.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,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@studyportals/domain-client",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.25.0-beta.0",
|
|
4
4
|
"description": "Responsible for fetching data from the Domain API",
|
|
5
|
+
"main": "index.js",
|
|
5
6
|
"author": "StudyPortals B.V.",
|
|
6
7
|
"contributors": [
|
|
7
8
|
"braaibander <danny@studyportals.com>"
|
|
@@ -125,6 +125,12 @@ export interface IProgrammeCard {
|
|
|
125
125
|
*/
|
|
126
126
|
getTuitionFees(): ITuitionFee[];
|
|
127
127
|
canShowTuitionFees(): boolean;
|
|
128
|
+
/**
|
|
129
|
+
* Get the programme's university global position percentage in Meta Ranking
|
|
130
|
+
*
|
|
131
|
+
* @return string | null
|
|
132
|
+
*/
|
|
133
|
+
getUniversityGlobalPositionPercentage(): string | null;
|
|
128
134
|
/**
|
|
129
135
|
* Get the programme's university id
|
|
130
136
|
*
|