@studyportals/domain-client 3.14.0-schcard.0 → 3.14.0-schcard.1

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@studyportals/domain-client",
3
- "version": "3.14.0-schcard.0",
3
+ "version": "3.14.0-schcard.1",
4
4
  "description": "Responsible for fetching data from the Domain API",
5
5
  "main": "bin/index.js",
6
6
  "author": "StudyPortals B.V.",
@@ -23,6 +23,10 @@ export interface IScholarshipCard {
23
23
  * @return string | null
24
24
  */
25
25
  getProviderId(): string | null;
26
+ /**
27
+ * @return boolean
28
+ */
29
+ getProviderIsUniversity(): boolean;
26
30
  /**
27
31
  * @return string | null
28
32
  */
@@ -39,8 +43,4 @@ export interface IScholarshipCard {
39
43
  * @return string
40
44
  */
41
45
  getScholarshipTitle(): string;
42
- /**
43
- * @return boolean
44
- */
45
- isProviderIsUniversity(): boolean;
46
46
  }