@studyportals/domain-client 5.2.0 → 5.3.2

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": "5.2.0",
3
+ "version": "5.3.2",
4
4
  "description": "Responsible for fetching data from the Domain API",
5
5
  "main": "index.js",
6
6
  "author": "StudyPortals B.V.",
@@ -18,7 +18,7 @@
18
18
  "publish-beta": "npm version prerelease --preid=beta && npm run prepare-dist && npm publish ./bin --tag beta",
19
19
  "publish-major": "npm version major && npm run prepare-dist && npm publish ./bin",
20
20
  "publish-minor": "npm version minor && npm run prepare-dist && npm publish ./bin",
21
- "publish-patch": "npm version patch && npm run prepare-dist && npm publish ./bin",
21
+ "publish-patch": "npm version patch && npm run prepare-dist && npm publish ./bin --otp=123456",
22
22
  "publish-current": "npm run prepare-dist && npm publish ./bin"
23
23
  },
24
24
  "husky": {
@@ -5,6 +5,12 @@ export interface IOrganisationSearchDocument {
5
5
  * @return string[]
6
6
  */
7
7
  getCountryIsoCodesOfVenues(): string[];
8
+ /**
9
+ * Gets the ISO code of the main location of the organisation
10
+ *
11
+ * @return string
12
+ */
13
+ getCountryIsoCodeOfMainLocation(): string;
8
14
  /**
9
15
  * Returns the number of bachelors offered by the organisation
10
16
  *