@studyportals/fawkes 8.0.2-19 → 8.0.2-20
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/dist/src/programmes/policies/CountrySpecialProgrammes.js +1 -1
- package/dist/src/programmes/policies/DegreeAttendanceSpecialProgrammes.js +1 -1
- package/dist/src/programmes/policies/DegreeCountryAttendance.js +3 -3
- package/dist/src/programmes/policies/DegreeCountryTuitionFee.js +2 -2
- package/dist/src/programmes/policies/DegreeFormatTuitionFee.js +1 -1
- package/dist/src/programmes/policies/DisciplineTuitionFee.js +1 -1
- package/dist/src/programmes/policies/DisciplineTuitionFeeAttendance.js +1 -1
- package/package.json +1 -1
|
@@ -35,7 +35,7 @@ export class CountrySpecialProgrammes extends ProgrammesBaseIndexabilityPolicy {
|
|
|
35
35
|
]);
|
|
36
36
|
const result = await this.checkRulesForSitemapWithPageNumber(filterKeyValues, pageNumber);
|
|
37
37
|
if (result) {
|
|
38
|
-
paths.push(this.getPathWithPageNumber(`${
|
|
38
|
+
paths.push(this.getPathWithPageNumber(`${specialProgramme.path}/${country.path}`, pageNumber));
|
|
39
39
|
}
|
|
40
40
|
}
|
|
41
41
|
}
|
|
@@ -44,7 +44,7 @@ export class DegreeAttendanceSpecialProgrammes extends ProgrammesBaseIndexabilit
|
|
|
44
44
|
]);
|
|
45
45
|
const result = await this.checkRulesForSitemapWithPageNumber(filterKeyValues, pageNumber);
|
|
46
46
|
if (result) {
|
|
47
|
-
paths.push(this.getPathWithPageNumber(`${degree.path}/${
|
|
47
|
+
paths.push(this.getPathWithPageNumber(`${degree.path}/${specialProgramme.path}/${attendance.path}`, pageNumber));
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
}
|
|
@@ -47,7 +47,7 @@ export class DegreeCountryAttendance extends ProgrammesBaseIndexabilityPolicy {
|
|
|
47
47
|
]);
|
|
48
48
|
const result = await this.checkRulesForSitemapWithPageNumber(filterKeyValues, pageNumber);
|
|
49
49
|
if (result) {
|
|
50
|
-
paths.push(this.getPathWithPageNumber(`${mba.path}/${
|
|
50
|
+
paths.push(this.getPathWithPageNumber(`${mba.path}/${onlineAttendance.path}/${country.path}`, pageNumber));
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
53
|
}
|
|
@@ -61,7 +61,7 @@ export class DegreeCountryAttendance extends ProgrammesBaseIndexabilityPolicy {
|
|
|
61
61
|
]);
|
|
62
62
|
const result = await this.checkRulesForSitemapWithPageNumber(filterKeyValues, pageNumber);
|
|
63
63
|
if (result) {
|
|
64
|
-
paths.push(this.getPathWithPageNumber(`${llm.path}/${
|
|
64
|
+
paths.push(this.getPathWithPageNumber(`${llm.path}/${onlineAttendance.path}/${country.path}`, pageNumber));
|
|
65
65
|
}
|
|
66
66
|
}
|
|
67
67
|
}
|
|
@@ -75,7 +75,7 @@ export class DegreeCountryAttendance extends ProgrammesBaseIndexabilityPolicy {
|
|
|
75
75
|
]);
|
|
76
76
|
const result = await this.checkRulesForSitemapWithPageNumber(filterKeyValues, pageNumber);
|
|
77
77
|
if (result) {
|
|
78
|
-
paths.push(this.getPathWithPageNumber(`${mphil.path}/${
|
|
78
|
+
paths.push(this.getPathWithPageNumber(`${mphil.path}/${onlineAttendance.path}/${country.path}`, pageNumber));
|
|
79
79
|
}
|
|
80
80
|
}
|
|
81
81
|
}
|
|
@@ -46,7 +46,7 @@ export class DegreeCountryTuitionFee extends ProgrammesBaseIndexabilityPolicy {
|
|
|
46
46
|
]);
|
|
47
47
|
const result = await this.checkRulesForSitemapWithPageNumber(filterKeyValues, pageNumber);
|
|
48
48
|
if (result) {
|
|
49
|
-
paths.push(this.getPathWithPageNumber(`${mba.path}/${
|
|
49
|
+
paths.push(this.getPathWithPageNumber(`${mba.path}/${affordableTuition.path}/${country.path}`, pageNumber));
|
|
50
50
|
}
|
|
51
51
|
}
|
|
52
52
|
}
|
|
@@ -60,7 +60,7 @@ export class DegreeCountryTuitionFee extends ProgrammesBaseIndexabilityPolicy {
|
|
|
60
60
|
]);
|
|
61
61
|
const result = await this.checkRulesForSitemapWithPageNumber(filterKeyValues, pageNumber);
|
|
62
62
|
if (result) {
|
|
63
|
-
paths.push(this.getPathWithPageNumber(`${llm.path}/${
|
|
63
|
+
paths.push(this.getPathWithPageNumber(`${llm.path}/${affordableTuition.path}/${country.path}`, pageNumber));
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
66
|
}
|
|
@@ -42,7 +42,7 @@ export class DegreeFormatTuitionFee extends ProgrammesBaseIndexabilityPolicy {
|
|
|
42
42
|
]);
|
|
43
43
|
const result = await this.checkRulesForSitemapWithPageNumber(filterKeyValues, pageNumber);
|
|
44
44
|
if (result) {
|
|
45
|
-
paths.push(this.getPathWithPageNumber(`${degree.path}/${
|
|
45
|
+
paths.push(this.getPathWithPageNumber(`${degree.path}/${tuitionFee.path}/${format.path}`, pageNumber));
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
48
|
}
|
|
@@ -33,7 +33,7 @@ export class DisciplineTuitionFee extends ProgrammesBaseIndexabilityPolicy {
|
|
|
33
33
|
]);
|
|
34
34
|
const result = await this.checkRulesForSitemapWithPageNumber(filterKeyValues, pageNumber);
|
|
35
35
|
if (result) {
|
|
36
|
-
paths.push(this.getPathWithPageNumber(`${
|
|
36
|
+
paths.push(this.getPathWithPageNumber(`${discipline.path}/${tuitionFee.path}`, pageNumber));
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
39
|
}
|
|
@@ -40,7 +40,7 @@ export class DisciplineTuitionFeeAttendance extends ProgrammesBaseIndexabilityPo
|
|
|
40
40
|
]);
|
|
41
41
|
const result = await this.checkRulesForSitemapWithPageNumber(filterKeyValues, pageNumber);
|
|
42
42
|
if (result) {
|
|
43
|
-
paths.push(this.getPathWithPageNumber(`${
|
|
43
|
+
paths.push(this.getPathWithPageNumber(`${tuitionFee.path}/${attendance.path}/${discipline.path}`, pageNumber));
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
46
|
}
|