@studyportals/domain-client 7.3.0 → 7.4.1-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,6 +1,6 @@
1
1
  {
2
2
  "name": "@studyportals/domain-client",
3
- "version": "7.3.0",
3
+ "version": "7.4.1-beta.0",
4
4
  "description": "Responsible for fetching data from the Domain API",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -155,4 +155,10 @@ export interface IOrganisationSearchDocument {
155
155
  * @return string
156
156
  */
157
157
  getVirtualPath(): string;
158
+ /**
159
+ * Gets the city id related to the main location of the organisation
160
+ *
161
+ * @return number
162
+ */
163
+ getCityIdOfMainLocation(): number | null;
158
164
  }
@@ -183,4 +183,5 @@ export interface ISearchProjection {
183
183
  * @return boolean
184
184
  */
185
185
  isPublic(): boolean;
186
+ getCampaignType(): string | null;
186
187
  }