@studyportals/search-api-interface 5.3.3-5 → 5.3.3-6
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 +1 -1
- package/src/organisations/IOrganisationSearchFilters.d.ts +2 -2
- package/src/organisations/IOrganisationSearchFilters.js +2 -2
- package/src/organisations/IOrganisationSearchFilters.js.map +1 -1
- package/src/organisations/OrganisationSearchFilters.d.ts +4 -5
- package/src/organisations/OrganisationSearchFilters.js +6 -25
- package/src/organisations/OrganisationSearchFilters.js.map +1 -1
- package/src/organisations/OrganisationSearchInput.d.ts +2 -2
- package/src/scholarships/IScholarshipSearchFilters.d.ts +2 -2
- package/src/scholarships/ScholarshipSearchFilters.d.ts +4 -5
- package/src/scholarships/ScholarshipSearchFilters.js +6 -25
- package/src/scholarships/ScholarshipSearchFilters.js.map +1 -1
- package/src/scholarships/ScholarshipSearchInput.d.ts +2 -2
package/package.json
CHANGED
|
@@ -9,9 +9,9 @@ export declare class IOrganisationSearchFilters {
|
|
|
9
9
|
readonly organisationId: string | undefined;
|
|
10
10
|
readonly organisationIds: string[] | undefined;
|
|
11
11
|
readonly organisationText: string | undefined;
|
|
12
|
-
readonly
|
|
12
|
+
readonly educationalLevels: EducationLevelFilterValue[] | undefined;
|
|
13
13
|
/**
|
|
14
|
-
* @deprecated Use
|
|
14
|
+
* @deprecated Use educationalLevels instead.
|
|
15
15
|
*/
|
|
16
16
|
readonly degree: DegreeTypeEnum | undefined;
|
|
17
17
|
readonly disciplines: string[] | undefined;
|
|
@@ -5,9 +5,9 @@ export class IOrganisationSearchFilters {
|
|
|
5
5
|
organisationId;
|
|
6
6
|
organisationIds;
|
|
7
7
|
organisationText;
|
|
8
|
-
|
|
8
|
+
educationalLevels;
|
|
9
9
|
/**
|
|
10
|
-
* @deprecated Use
|
|
10
|
+
* @deprecated Use educationalLevels instead.
|
|
11
11
|
*/
|
|
12
12
|
degree;
|
|
13
13
|
disciplines;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IOrganisationSearchFilters.js","sourceRoot":"","sources":["../../../src/organisations/IOrganisationSearchFilters.ts"],"names":[],"mappings":"AAKA,MAAM,OAAO,0BAA0B;IACtC;;OAEG;IACM,cAAc,CAAqB;IACnC,eAAe,CAAuB;IACtC,gBAAgB,CAAqB;IACrC,
|
|
1
|
+
{"version":3,"file":"IOrganisationSearchFilters.js","sourceRoot":"","sources":["../../../src/organisations/IOrganisationSearchFilters.ts"],"names":[],"mappings":"AAKA,MAAM,OAAO,0BAA0B;IACtC;;OAEG;IACM,cAAc,CAAqB;IACnC,eAAe,CAAuB;IACtC,gBAAgB,CAAqB;IACrC,iBAAiB,CAA0C;IACpE;;OAEG;IACM,MAAM,CAA6B;IACnC,WAAW,CAAuB;IAClC,eAAe,CAAmC;IAClD,eAAe,CAAuB;IACtC,8BAA8B,CAAuB;IACrD,SAAS,CAAuB;IAChC,OAAO,CAAuB;IAC9B,OAAO,CAAuB;IAC9B,WAAW,CAAqB;IAChC,qBAAqB,CAAuB;IAC5C,UAAU,CAAsB;IAChC,QAAQ,CAAkC;IAC1C,MAAM,CAAmC;CAClD"}
|
|
@@ -10,9 +10,9 @@ export declare class OrganisationSearchFilters implements IOrganisationSearchFil
|
|
|
10
10
|
*/
|
|
11
11
|
organisationId: string | undefined;
|
|
12
12
|
organisationIds: string[] | undefined;
|
|
13
|
-
|
|
13
|
+
educationalLevels: EducationLevelFilterValue[] | undefined;
|
|
14
14
|
/**
|
|
15
|
-
* @deprecated Use
|
|
15
|
+
* @deprecated Use educationalLevels instead.
|
|
16
16
|
*/
|
|
17
17
|
degree: DegreeTypeEnum | undefined;
|
|
18
18
|
disciplines: string[] | undefined;
|
|
@@ -30,9 +30,9 @@ export declare class OrganisationSearchFilters implements IOrganisationSearchFil
|
|
|
30
30
|
sortBy: OrganisationSortType | undefined;
|
|
31
31
|
from(input: OrganisationSearchInput): OrganisationSearchFilters;
|
|
32
32
|
consideringId(id: string): OrganisationSearchFilters;
|
|
33
|
-
|
|
33
|
+
consideringEducationalLevels(educationalLevels: EducationLevelFilterValue[]): OrganisationSearchFilters;
|
|
34
34
|
/**
|
|
35
|
-
* @deprecated Use
|
|
35
|
+
* @deprecated Use consideringEducationalLevels instead.
|
|
36
36
|
*/
|
|
37
37
|
consideringDegree(degree: DegreeTypeEnum): OrganisationSearchFilters;
|
|
38
38
|
consideringDisciplines(disciplines: string[]): OrganisationSearchFilters;
|
|
@@ -45,5 +45,4 @@ export declare class OrganisationSearchFilters implements IOrganisationSearchFil
|
|
|
45
45
|
consideringCityIdsOfMainLocation(cityIdsOfMainLocation: string[]): OrganisationSearchFilters;
|
|
46
46
|
consideringVirtualPath(virtualPath: string): OrganisationSearchFilters;
|
|
47
47
|
private numbersToStringsOrUndefined;
|
|
48
|
-
private degreeToEducationLevelsOrUndefined;
|
|
49
48
|
}
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import { DegreeTypeEnum } from "./DegreeTypeEnum.js";
|
|
2
|
-
import { EducationLevelFilterValue } from "../enums/index.js";
|
|
3
1
|
import { OrganisationSortType } from "./OrganisationSortType.js";
|
|
4
2
|
export class OrganisationSearchFilters {
|
|
5
3
|
/**
|
|
@@ -7,9 +5,9 @@ export class OrganisationSearchFilters {
|
|
|
7
5
|
*/
|
|
8
6
|
organisationId;
|
|
9
7
|
organisationIds;
|
|
10
|
-
|
|
8
|
+
educationalLevels;
|
|
11
9
|
/**
|
|
12
|
-
* @deprecated Use
|
|
10
|
+
* @deprecated Use educationalLevels instead.
|
|
13
11
|
*/
|
|
14
12
|
degree;
|
|
15
13
|
disciplines;
|
|
@@ -29,7 +27,7 @@ export class OrganisationSearchFilters {
|
|
|
29
27
|
this.organisationId = input.organisationId ? input.organisationId.toString() : undefined;
|
|
30
28
|
this.organisationIds = this.numbersToStringsOrUndefined(input.organisationIds);
|
|
31
29
|
this.organisationText = input.organisationText;
|
|
32
|
-
this.
|
|
30
|
+
this.educationalLevels = input.educationalLevels;
|
|
33
31
|
this.degree = input.degree;
|
|
34
32
|
this.deliveryMethods = input.deliveryMethods;
|
|
35
33
|
this.disciplines = this.numbersToStringsOrUndefined(input.disciplines);
|
|
@@ -49,16 +47,15 @@ export class OrganisationSearchFilters {
|
|
|
49
47
|
this.organisationId = id;
|
|
50
48
|
return this;
|
|
51
49
|
}
|
|
52
|
-
|
|
53
|
-
this.
|
|
50
|
+
consideringEducationalLevels(educationalLevels) {
|
|
51
|
+
this.educationalLevels = educationalLevels;
|
|
54
52
|
return this;
|
|
55
53
|
}
|
|
56
54
|
/**
|
|
57
|
-
* @deprecated Use
|
|
55
|
+
* @deprecated Use consideringEducationalLevels instead.
|
|
58
56
|
*/
|
|
59
57
|
consideringDegree(degree) {
|
|
60
58
|
this.degree = degree;
|
|
61
|
-
this.educationLevels = this.degreeToEducationLevelsOrUndefined(degree);
|
|
62
59
|
return this;
|
|
63
60
|
}
|
|
64
61
|
consideringDisciplines(disciplines) {
|
|
@@ -102,21 +99,5 @@ export class OrganisationSearchFilters {
|
|
|
102
99
|
return;
|
|
103
100
|
return values.map(value => value.toString());
|
|
104
101
|
}
|
|
105
|
-
degreeToEducationLevelsOrUndefined(degree) {
|
|
106
|
-
if (degree === undefined)
|
|
107
|
-
return;
|
|
108
|
-
switch (degree) {
|
|
109
|
-
case DegreeTypeEnum.MASTER:
|
|
110
|
-
return [EducationLevelFilterValue.MASTER];
|
|
111
|
-
case DegreeTypeEnum.BACHELOR:
|
|
112
|
-
return [EducationLevelFilterValue.BACHELOR];
|
|
113
|
-
case DegreeTypeEnum.PHD:
|
|
114
|
-
return [EducationLevelFilterValue.PHD];
|
|
115
|
-
case DegreeTypeEnum.DISTANCE_LEARNING:
|
|
116
|
-
return [EducationLevelFilterValue.DISTANCE_LEARNING];
|
|
117
|
-
case DegreeTypeEnum.SHORT_COURSES:
|
|
118
|
-
return [EducationLevelFilterValue.SHORT_COURSE];
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
102
|
}
|
|
122
103
|
//# sourceMappingURL=OrganisationSearchFilters.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OrganisationSearchFilters.js","sourceRoot":"","sources":["../../../src/organisations/OrganisationSearchFilters.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"OrganisationSearchFilters.js","sourceRoot":"","sources":["../../../src/organisations/OrganisationSearchFilters.ts"],"names":[],"mappings":"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"}
|
|
@@ -18,9 +18,9 @@ export type OrganisationSearchInput = {
|
|
|
18
18
|
areaIds?: number[];
|
|
19
19
|
cityIds?: number[];
|
|
20
20
|
cityIdsOfMainLocation?: string[];
|
|
21
|
-
|
|
21
|
+
educationalLevels?: EducationLevelFilterValue[];
|
|
22
22
|
/**
|
|
23
|
-
* @deprecated Use
|
|
23
|
+
* @deprecated Use educationalLevels instead.
|
|
24
24
|
*/
|
|
25
25
|
degree?: DegreeTypeEnum;
|
|
26
26
|
deliveryMethods?: DeliveryMethodEnum[];
|
|
@@ -8,9 +8,9 @@ export interface IScholarshipSearchFilters {
|
|
|
8
8
|
readonly destinationCountryIsoCodes?: string[] | undefined;
|
|
9
9
|
readonly destinationRegionIds?: string[] | undefined;
|
|
10
10
|
readonly universityProviderIds?: string[] | undefined;
|
|
11
|
-
readonly
|
|
11
|
+
readonly educationalLevels?: EducationLevelFilterValue[] | undefined;
|
|
12
12
|
/**
|
|
13
|
-
* @deprecated Use
|
|
13
|
+
* @deprecated Use educationalLevels instead.
|
|
14
14
|
*/
|
|
15
15
|
readonly degree?: DegreeTypeEnum | undefined;
|
|
16
16
|
readonly originCountryIsoCodes?: string[] | undefined;
|
|
@@ -11,9 +11,9 @@ export declare class ScholarshipSearchFilters implements IScholarshipSearchFilte
|
|
|
11
11
|
destinationRegionIds: string[] | undefined;
|
|
12
12
|
originCountryIsoCodes: string[] | undefined;
|
|
13
13
|
universityProviderIds: string[] | undefined;
|
|
14
|
-
|
|
14
|
+
educationalLevels: EducationLevelFilterValue[] | undefined;
|
|
15
15
|
/**
|
|
16
|
-
* @deprecated Use
|
|
16
|
+
* @deprecated Use educationalLevels instead.
|
|
17
17
|
*/
|
|
18
18
|
degree: DegreeTypeEnum | undefined;
|
|
19
19
|
formats: ScholarshipFormat[] | undefined;
|
|
@@ -25,13 +25,12 @@ export declare class ScholarshipSearchFilters implements IScholarshipSearchFilte
|
|
|
25
25
|
consideringDestinationRegionIds(destinationStates: string[]): ScholarshipSearchFilters;
|
|
26
26
|
consideringOriginCountryIsoCodes(originCountries: string[]): ScholarshipSearchFilters;
|
|
27
27
|
consideringUniversityProviderIds(providerOrganisationIds: string[]): ScholarshipSearchFilters;
|
|
28
|
-
|
|
28
|
+
consideringEducationalLevels(educationalLevels: EducationLevelFilterValue[]): ScholarshipSearchFilters;
|
|
29
29
|
/**
|
|
30
|
-
* @deprecated Use
|
|
30
|
+
* @deprecated Use consideringEducationalLevels instead.
|
|
31
31
|
*/
|
|
32
32
|
consideringDegree(degree: DegreeTypeEnum): ScholarshipSearchFilters;
|
|
33
33
|
consideringFormats(formats: ScholarshipFormat[]): ScholarshipSearchFilters;
|
|
34
34
|
consideringTypes(types: ScholarshipType[]): ScholarshipSearchFilters;
|
|
35
35
|
private numbersToStringsOrUndefined;
|
|
36
|
-
private degreeToEducationLevelsOrUndefined;
|
|
37
36
|
}
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import { DegreeTypeEnum } from "../organisations/DegreeTypeEnum.js";
|
|
2
|
-
import { EducationLevelFilterValue } from "../enums/index.js";
|
|
3
1
|
export class ScholarshipSearchFilters {
|
|
4
2
|
title;
|
|
5
3
|
disciplineIds;
|
|
@@ -7,9 +5,9 @@ export class ScholarshipSearchFilters {
|
|
|
7
5
|
destinationRegionIds;
|
|
8
6
|
originCountryIsoCodes;
|
|
9
7
|
universityProviderIds;
|
|
10
|
-
|
|
8
|
+
educationalLevels;
|
|
11
9
|
/**
|
|
12
|
-
* @deprecated Use
|
|
10
|
+
* @deprecated Use educationalLevels instead.
|
|
13
11
|
*/
|
|
14
12
|
degree;
|
|
15
13
|
formats;
|
|
@@ -21,7 +19,7 @@ export class ScholarshipSearchFilters {
|
|
|
21
19
|
this.destinationRegionIds = this.numbersToStringsOrUndefined(input.destinationRegionIds);
|
|
22
20
|
this.originCountryIsoCodes = input.originCountryIsoCodes;
|
|
23
21
|
this.universityProviderIds = this.numbersToStringsOrUndefined(input.universityProviderIds);
|
|
24
|
-
this.
|
|
22
|
+
this.educationalLevels = input.educationalLevels;
|
|
25
23
|
this.degree = input.degree;
|
|
26
24
|
this.formats = input.formats;
|
|
27
25
|
this.types = input.types;
|
|
@@ -51,16 +49,15 @@ export class ScholarshipSearchFilters {
|
|
|
51
49
|
this.universityProviderIds = providerOrganisationIds;
|
|
52
50
|
return this;
|
|
53
51
|
}
|
|
54
|
-
|
|
55
|
-
this.
|
|
52
|
+
consideringEducationalLevels(educationalLevels) {
|
|
53
|
+
this.educationalLevels = educationalLevels;
|
|
56
54
|
return this;
|
|
57
55
|
}
|
|
58
56
|
/**
|
|
59
|
-
* @deprecated Use
|
|
57
|
+
* @deprecated Use consideringEducationalLevels instead.
|
|
60
58
|
*/
|
|
61
59
|
consideringDegree(degree) {
|
|
62
60
|
this.degree = degree;
|
|
63
|
-
this.educationLevels = this.degreeToEducationLevelsOrUndefined(degree);
|
|
64
61
|
return this;
|
|
65
62
|
}
|
|
66
63
|
consideringFormats(formats) {
|
|
@@ -76,21 +73,5 @@ export class ScholarshipSearchFilters {
|
|
|
76
73
|
return;
|
|
77
74
|
return values.map(value => value.toString());
|
|
78
75
|
}
|
|
79
|
-
degreeToEducationLevelsOrUndefined(degree) {
|
|
80
|
-
if (degree === undefined)
|
|
81
|
-
return;
|
|
82
|
-
switch (degree) {
|
|
83
|
-
case DegreeTypeEnum.MASTER:
|
|
84
|
-
return [EducationLevelFilterValue.MASTER];
|
|
85
|
-
case DegreeTypeEnum.BACHELOR:
|
|
86
|
-
return [EducationLevelFilterValue.BACHELOR];
|
|
87
|
-
case DegreeTypeEnum.PHD:
|
|
88
|
-
return [EducationLevelFilterValue.PHD];
|
|
89
|
-
case DegreeTypeEnum.DISTANCE_LEARNING:
|
|
90
|
-
return [EducationLevelFilterValue.DISTANCE_LEARNING];
|
|
91
|
-
case DegreeTypeEnum.SHORT_COURSES:
|
|
92
|
-
return [EducationLevelFilterValue.SHORT_COURSE];
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
76
|
}
|
|
96
77
|
//# sourceMappingURL=ScholarshipSearchFilters.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ScholarshipSearchFilters.js","sourceRoot":"","sources":["../../../src/scholarships/ScholarshipSearchFilters.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ScholarshipSearchFilters.js","sourceRoot":"","sources":["../../../src/scholarships/ScholarshipSearchFilters.ts"],"names":[],"mappings":"AAOA,MAAM,OAAO,wBAAwB;IAC7B,KAAK,CAAqB;IAC1B,aAAa,CAAuB;IACpC,0BAA0B,CAAuB;IACjD,oBAAoB,CAAuB;IAC3C,qBAAqB,CAAuB;IAC5C,qBAAqB,CAAuB;IAC5C,iBAAiB,CAA0C;IAClE;;OAEG;IACI,MAAM,CAA6B;IACnC,OAAO,CAAkC;IACzC,KAAK,CAAgC;IAErC,IAAI,CAAC,KAA6B;QACxC,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC;QACzB,IAAI,CAAC,aAAa,GAAG,IAAI,CAAC,2BAA2B,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC;QAC3E,IAAI,CAAC,0BAA0B,GAAG,KAAK,CAAC,0BAA0B,CAAC;QACnE,IAAI,CAAC,oBAAoB,GAAG,IAAI,CAAC,2BAA2B,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC;QACzF,IAAI,CAAC,qBAAqB,GAAG,KAAK,CAAC,qBAAqB,CAAC;QACzD,IAAI,CAAC,qBAAqB,GAAG,IAAI,CAAC,2BAA2B,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAAC;QAC3F,IAAI,CAAC,iBAAiB,GAAG,KAAK,CAAC,iBAAiB,CAAC;QACjD,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC;QAC3B,IAAI,CAAC,OAAO,GAAG,KAAK,CAAC,OAAO,CAAC;QAC7B,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC;QACzB,OAAO,IAAI,CAAC;IACb,CAAC;IAEM,gBAAgB,CAAC,KAAa;QACpC,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,OAAO,IAAI,CAAC;IACb,CAAC;IAEM,wBAAwB,CAAC,WAAqB;QACpD,IAAI,CAAC,aAAa,GAAG,WAAW,CAAC;QACjC,OAAO,IAAI,CAAC;IACb,CAAC;IAEM,qCAAqC,CAAC,oBAA8B;QAC1E,IAAI,CAAC,0BAA0B,GAAG,oBAAoB,CAAC;QACvD,OAAO,IAAI,CAAC;IACb,CAAC;IAEM,+BAA+B,CAAC,iBAA2B;QACjE,IAAI,CAAC,oBAAoB,GAAG,iBAAiB,CAAC;QAC9C,OAAO,IAAI,CAAC;IACb,CAAC;IAEM,gCAAgC,CAAC,eAAyB;QAChE,IAAI,CAAC,qBAAqB,GAAG,eAAe,CAAC;QAC7C,OAAO,IAAI,CAAC;IACb,CAAC;IAEM,gCAAgC,CAAC,uBAAiC;QACxE,IAAI,CAAC,qBAAqB,GAAG,uBAAuB,CAAC;QACrD,OAAO,IAAI,CAAC;IACb,CAAC;IAEM,4BAA4B,CAAC,iBAA8C;QACjF,IAAI,CAAC,iBAAiB,GAAG,iBAAiB,CAAC;QAC3C,OAAO,IAAI,CAAC;IACb,CAAC;IAED;;OAEG;IACI,iBAAiB,CAAC,MAAsB;QAC9C,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACrB,OAAO,IAAI,CAAC;IACb,CAAC;IAEM,kBAAkB,CAAC,OAA4B;QACrD,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;QACvB,OAAO,IAAI,CAAC;IACb,CAAC;IAEM,gBAAgB,CAAC,KAAwB;QAC/C,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;QACnB,OAAO,IAAI,CAAC;IACb,CAAC;IAEO,2BAA2B,CAAC,MAA4B;QAC/D,IAAI,MAAM,KAAK,SAAS;YAAE,OAAO;QACjC,OAAO,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,QAAQ,EAAE,CAAC,CAAC;IAC9C,CAAC;CAED"}
|
|
@@ -10,9 +10,9 @@ export type ScholarshipSearchInput = {
|
|
|
10
10
|
destinationCountryIsoCodes?: string[] | undefined;
|
|
11
11
|
destinationRegionIds?: number[] | undefined;
|
|
12
12
|
universityProviderIds?: number[] | undefined;
|
|
13
|
-
|
|
13
|
+
educationalLevels?: EducationLevelFilterValue[];
|
|
14
14
|
/**
|
|
15
|
-
* @deprecated Use
|
|
15
|
+
* @deprecated Use educationalLevels instead.
|
|
16
16
|
*/
|
|
17
17
|
degree?: DegreeTypeEnum;
|
|
18
18
|
formats?: ScholarshipFormat[];
|