@studyportals/fawkes 8.2.4-13 → 8.2.4-14
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.
|
@@ -20,6 +20,8 @@ export class CountryAreaCity extends OrganisationsSeoIndexabilityPolicy {
|
|
|
20
20
|
.getInstance(this.dependencies.searchApiClient)
|
|
21
21
|
.getFragments();
|
|
22
22
|
const paths = [];
|
|
23
|
+
console.warn(`Total city fragments fetched: ${cityFragments.length}`);
|
|
24
|
+
console.warn('Fetched city fragments for CountryAreaCity policy:', JSON.stringify(cityFragments));
|
|
23
25
|
const filteredFragmentsForCountryAreaCity = cityFragments.filter(city => city.areaId !== null && city.areaId !== undefined);
|
|
24
26
|
console.warn(`Filtered down to ${filteredFragmentsForCountryAreaCity.length} city fragments for CountryAreaCity policy.`);
|
|
25
27
|
console.warn('Filtered city fragments for CountryAreaCity policy:', JSON.stringify(filteredFragmentsForCountryAreaCity));
|
|
@@ -19,6 +19,8 @@ export class CountryCity extends OrganisationsSeoIndexabilityPolicy {
|
|
|
19
19
|
.getInstance(this.dependencies.searchApiClient)
|
|
20
20
|
.getFragments();
|
|
21
21
|
const paths = [];
|
|
22
|
+
console.warn(`Total city fragments fetched: ${cityFragments.length}`);
|
|
23
|
+
console.warn('Fetched city fragments for CountryCity policy:', JSON.stringify(cityFragments));
|
|
22
24
|
const filteredFragmentsForCountryCity = cityFragments.filter(city => city.areaId === null || city.areaId === undefined);
|
|
23
25
|
console.warn(`Filtered down to ${filteredFragmentsForCountryCity.length} city fragments for CountryCity policy.`);
|
|
24
26
|
console.warn('Filtered city fragments for CountryCity policy:', JSON.stringify(filteredFragmentsForCountryCity));
|