@studyportals/search-api-interface 1.0.0-beta.4 → 1.0.0-beta.5

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.
@@ -1,5 +1,5 @@
1
1
  export interface IOrganisationSearchResponse<T> {
2
- readonly result: readonly T[];
2
+ readonly organisations: readonly T[];
3
3
  readonly hitsTotal: number;
4
4
  readonly hitsTotalRelation: "more than" | "exactly";
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@studyportals/search-api-interface",
3
- "version": "1.0.0-beta.4",
3
+ "version": "1.0.0-beta.5",
4
4
  "description": "Typescript library containing resources that facilitate integration with SearchApi",
5
5
  "main": "bin/index.js",
6
6
  "scripts": {
@@ -1,5 +1,5 @@
1
1
  export interface IOrganisationSearchResponse<T> {
2
- readonly result: readonly T[];
2
+ readonly organisations: readonly T[];
3
3
  readonly hitsTotal: number;
4
4
  readonly hitsTotalRelation: "more than" | "exactly";
5
5
  }