@studyportals/search-api-interface 3.7.1-24 → 3.7.1-26

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/search-api-interface",
3
- "version": "3.7.1-24",
3
+ "version": "3.7.1-26",
4
4
  "description": "Typescript library containing resources that facilitate integration with SearchApi",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -3,7 +3,7 @@ import { DeliveryMethodEnum } from "./DeliveryMethodEnum";
3
3
  import { OrganisationTextSearchType } from "./OrganisationTextSearchType";
4
4
  export declare class IOrganisationSearchFilters {
5
5
  readonly organisationId: string | undefined;
6
- readonly organisationName: string | undefined;
6
+ readonly organisationText: string | undefined;
7
7
  readonly organisationTextSearchType: OrganisationTextSearchType | undefined;
8
8
  readonly degree: DegreeTypeEnum | undefined;
9
9
  readonly disciplines: string[] | undefined;
@@ -1,6 +1,6 @@
1
1
  export class IOrganisationSearchFilters {
2
2
  organisationId;
3
- organisationName;
3
+ organisationText;
4
4
  organisationTextSearchType;
5
5
  degree;
6
6
  disciplines;
@@ -17,7 +17,7 @@ export declare class OrganisationSearchFilters implements IOrganisationSearchFil
17
17
  virtualPath: string | undefined;
18
18
  showHidden: boolean | undefined;
19
19
  organisationTextSearchType: OrganisationTextSearchType | undefined;
20
- organisationName: string | undefined;
20
+ organisationText: string | undefined;
21
21
  from(input: OrganisationSearchInput): OrganisationSearchFilters;
22
22
  consideringId(id: string): OrganisationSearchFilters;
23
23
  consideringDegree(degree: DegreeTypeEnum): OrganisationSearchFilters;
@@ -12,10 +12,10 @@ export class OrganisationSearchFilters {
12
12
  virtualPath;
13
13
  showHidden;
14
14
  organisationTextSearchType;
15
- organisationName;
15
+ organisationText;
16
16
  from(input) {
17
17
  this.organisationId = input.organisationId ? input.organisationId.toString() : undefined;
18
- this.organisationName = input.organisationName;
18
+ this.organisationText = input.organisationText;
19
19
  this.organisationTextSearchType = input.organisationTextSearchType;
20
20
  this.degree = input.degree;
21
21
  this.deliveryMethods = input.deliveryMethods;
@@ -5,7 +5,7 @@ export type OrganisationSearchInput = {
5
5
  resultSize: number;
6
6
  resultOffset: number;
7
7
  organisationId?: number;
8
- organisationName?: string;
8
+ organisationText?: string;
9
9
  organisationTextSearchType?: OrganisationTextSearchType;
10
10
  disciplines?: number[];
11
11
  countryIsoCodes?: string[];