@studyportals/domain-client 3.26.0 → 3.27.0-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
|
@@ -190,4 +190,16 @@ export interface IProgrammeCard {
|
|
|
190
190
|
* @return boolean
|
|
191
191
|
*/
|
|
192
192
|
isPublic(): boolean;
|
|
193
|
+
/**
|
|
194
|
+
* The last time the programme has been updated and verified
|
|
195
|
+
*
|
|
196
|
+
* @return Date
|
|
197
|
+
*/
|
|
198
|
+
getLastUpdated(): Date;
|
|
199
|
+
/**
|
|
200
|
+
* Get the programme's campaign type
|
|
201
|
+
*
|
|
202
|
+
* @return number
|
|
203
|
+
*/
|
|
204
|
+
getCampaignType(): number | null;
|
|
193
205
|
}
|