@studyportals/fawkes 8.2.4-17 → 8.2.4-19

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.
@@ -73,8 +73,6 @@ export declare enum FilterCombinations {
73
73
  RANKED_CONTINENT = "rankedContinent",
74
74
  RANKED_CONTINENT_ATTENDANCE = "rankedContinentAttendance",
75
75
  RANKED_COUNTRY = "rankedCountry",
76
- RANKED_COUNTRY_CITY = "rankedCountryCity",
77
- RANKED_COUNTRY_AREA_CITY = "rankedCountryAreaCity",
78
76
  RANKED_COUNTRY_ATTENDANCE = "rankedCountryAttendance",
79
77
  RANKED_DISCIPLINE_COUNTRY = "rankedDisciplineCountry",
80
78
  RANKED_DISCIPLINE = "rankedDiscipline",
@@ -74,8 +74,6 @@ export var FilterCombinations;
74
74
  FilterCombinations["RANKED_CONTINENT"] = "rankedContinent";
75
75
  FilterCombinations["RANKED_CONTINENT_ATTENDANCE"] = "rankedContinentAttendance";
76
76
  FilterCombinations["RANKED_COUNTRY"] = "rankedCountry";
77
- FilterCombinations["RANKED_COUNTRY_CITY"] = "rankedCountryCity";
78
- FilterCombinations["RANKED_COUNTRY_AREA_CITY"] = "rankedCountryAreaCity";
79
77
  FilterCombinations["RANKED_COUNTRY_ATTENDANCE"] = "rankedCountryAttendance";
80
78
  FilterCombinations["RANKED_DISCIPLINE_COUNTRY"] = "rankedDisciplineCountry";
81
79
  FilterCombinations["RANKED_DISCIPLINE"] = "rankedDiscipline";
@@ -1,7 +1,5 @@
1
1
  import { DependencyTypes } from '../enums/DependencyTypes';
2
2
  import { Area, AreaAttendance, Attendance, Continent, Country, CountryAttendance, Unfiltered, RankedArea, RankedAreaDiscipline, RankedAttendance, RankedAttendanceDiscipline, RankedContinent, RankedContinentAttendance, RankedCountry, RankedCountryAttendance, RankedCountryDiscipline, RankedDiscipline, RankedUnfiltered, CountryCity, CountryAreaCity } from '../organisations/policies';
3
- import { RankedCountryCity } from './policies/ranked/RankedCountryCity';
4
- import { RankedCountryAreaCity } from './policies/ranked/RankedCountryAreaCity';
5
3
  export class SearchIndexabilityManager {
6
4
  policies;
7
5
  constructor(portalType, seoInfoBase, filterState, sortingState, applicationState) {
@@ -30,8 +28,6 @@ export class SearchIndexabilityManager {
30
28
  new RankedContinent(dependencies),
31
29
  new RankedContinentAttendance(dependencies),
32
30
  new RankedCountry(dependencies),
33
- new RankedCountryCity(dependencies),
34
- new RankedCountryAreaCity(dependencies),
35
31
  new RankedCountryAttendance(dependencies),
36
32
  new RankedCountryDiscipline(dependencies),
37
33
  new RankedDiscipline(dependencies),
@@ -20,7 +20,6 @@ export class CountryAreaCity extends OrganisationsSeoIndexabilityPolicy {
20
20
  .getInstance(this.dependencies.searchApiClient)
21
21
  .getFragmentsAsync();
22
22
  const paths = [];
23
- console.warn(`Total city fragments fetched: ${cityFragments.length}`);
24
23
  const filteredFragmentsForCountryAreaCity = cityFragments.filter(city => city.areaId !== null && city.areaId !== undefined);
25
24
  for (const city of filteredFragmentsForCountryAreaCity) {
26
25
  const areaId = city.areaId?.toString() || '';
@@ -8,8 +8,6 @@ import { CountryPresenter } from '../presenters/CountryPresenter';
8
8
  import { DisciplinePresenter } from '../presenters/DisciplinePresenter';
9
9
  import { FilterKey } from '@studyportals/search-filters/server-side';
10
10
  import { CountryAreaCity } from '../organisations/policies/our-picks/CountryAreaCity';
11
- import { RankedCountryCity } from '../organisations/policies/ranked/RankedCountryCity';
12
- import { RankedCountryAreaCity } from '../organisations/policies/ranked/RankedCountryAreaCity';
13
11
  import { CityPresenter } from '../presenters/CityPresenter';
14
12
  export class OrganisationsSitemapUrlGeneratorManager extends BaseSitemapUrlGeneratorManager {
15
13
  portalType;
@@ -41,8 +39,6 @@ export class OrganisationsSitemapUrlGeneratorManager extends BaseSitemapUrlGener
41
39
  new RankedAttendanceDiscipline(dependencies),
42
40
  new RankedContinent(dependencies),
43
41
  new RankedContinentAttendance(dependencies),
44
- new RankedCountryCity(dependencies),
45
- new RankedCountryAreaCity(dependencies),
46
42
  new RankedCountry(dependencies),
47
43
  new RankedCountryAttendance(dependencies),
48
44
  new RankedCountryDiscipline(dependencies),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@studyportals/fawkes",
3
- "version": "8.2.4-17",
3
+ "version": "8.2.4-19",
4
4
  "description": "A package to centralize SEO related logic for SBLP and Sitemap Generator.",
5
5
  "files": [
6
6
  "./dist"