@studyportals/domain-client 3.22.0 → 3.23.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,4 +1,4 @@
|
|
|
1
|
-
import { ICountry, IEnglishRequirements, IInternalLink, ILogo, ITuitionFee } from "../../..";
|
|
1
|
+
import { ICountry, IEnglishRequirements, IInternalLink, ILogo, ITiming, ITuitionFee } from "../../..";
|
|
2
2
|
export interface IDotDigitalProgramme {
|
|
3
3
|
/**
|
|
4
4
|
* Campaign type of the campaign the programme is attached to
|
|
@@ -67,6 +67,12 @@ export interface IDotDigitalProgramme {
|
|
|
67
67
|
*/
|
|
68
68
|
getReviewRating(): number;
|
|
69
69
|
canShowReviewRating(): boolean;
|
|
70
|
+
/**
|
|
71
|
+
* Get all start dates
|
|
72
|
+
*
|
|
73
|
+
* @return ITiming[]
|
|
74
|
+
*/
|
|
75
|
+
getTimings(): ITiming[];
|
|
70
76
|
/**
|
|
71
77
|
* Title of the programme.
|
|
72
78
|
*
|