@studyportals/fawkes 1.0.1-16 → 1.0.1-2
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/organisations-seo.js +2 -0
- package/dist/organisations-seo.js.map +1 -0
- package/dist/scholarships-seo/index.d.ts +2 -3
- package/dist/scholarships-seo/index.js +7 -0
- package/dist/scholarships-seo.js +1 -1
- package/dist/scholarships-seo.js.map +1 -1
- package/dist/src/common/BaseSeoIndexabilityPolicy.d.ts +10 -5
- package/dist/src/common/BaseSeoIndexabilityPolicy.js +54 -0
- package/dist/src/common/IFilterOptions.d.ts +4 -0
- package/dist/src/common/IFilterOptions.js +2 -0
- package/dist/src/common/IFilterSelectionState.d.ts +4 -0
- package/dist/src/common/IFilterSelectionState.js +2 -0
- package/dist/src/common/IPrettyPathGenerator.js +2 -0
- package/dist/src/common/ISearchApplicationState.d.ts +3 -0
- package/dist/src/common/ISearchApplicationState.js +2 -0
- package/dist/src/common/ISearchPolicyChain.d.ts +3 -0
- package/dist/src/common/ISearchPolicyChain.js +2 -0
- package/dist/src/common/ISeoIndexabilityPolicy.js +2 -0
- package/dist/src/common/ISeoInfoBase.d.ts +7 -5
- package/dist/src/common/ISeoInfoBase.js +2 -0
- package/dist/src/common/index.d.ts +2 -4
- package/dist/src/common/index.js +2 -0
- package/dist/src/organisations/FilterKeyValuePairs.js +2 -0
- package/dist/src/organisations/IOrganisationsProvider.js +2 -0
- package/dist/src/organisations/ISeoInfoBaseOrganisations.js +2 -0
- package/dist/src/organisations/ISortState.js +2 -0
- package/dist/src/organisations/SearchPolicyChain.d.ts +6 -0
- package/dist/src/organisations/SearchPolicyChain.js +13 -0
- package/dist/src/organisations/SeoIndexabilityPolicy.d.ts +4 -2
- package/dist/src/organisations/SeoIndexabilityPolicy.js +33 -0
- package/dist/src/organisations/SeoRuleBasedIndexabilityPolicy.d.ts +7 -2
- package/dist/src/organisations/SeoRuleBasedIndexabilityPolicy.js +33 -0
- package/dist/src/organisations/SortingOptions.js +8 -0
- package/dist/src/organisations/index.js +6 -0
- package/dist/src/scholarships/SearchIndexabilityManager.d.ts +13 -3
- package/dist/src/scholarships/SearchIndexabilityManager.js +78 -0
- package/dist/src/scholarships/index.d.ts +0 -4
- package/dist/src/scholarships/index.js +6 -0
- package/dist/src/scholarships/policies/AreaPolicy.d.ts +14 -8
- package/dist/src/scholarships/policies/AreaPolicy.js +110 -0
- package/dist/src/scholarships/policies/CountryPolicy.d.ts +8 -4
- package/dist/src/scholarships/policies/CountryPolicy.js +88 -0
- package/dist/src/scholarships/policies/DisciplineAreaPolicy.d.ts +8 -4
- package/dist/src/scholarships/policies/DisciplineAreaPolicy.js +99 -0
- package/dist/src/scholarships/policies/DisciplineCountryPolicy.d.ts +11 -6
- package/dist/src/scholarships/policies/DisciplineCountryPolicy.js +100 -0
- package/dist/src/scholarships/policies/DisciplinePolicy.d.ts +8 -4
- package/dist/src/scholarships/policies/DisciplinePolicy.js +88 -0
- package/dist/src/scholarships/policies/UnfilteredPolicy.d.ts +8 -4
- package/dist/src/scholarships/policies/UnfilteredPolicy.js +76 -0
- package/dist/src/scholarships/policies/UniversityCountryPolicy.d.ts +8 -4
- package/dist/src/scholarships/policies/UniversityCountryPolicy.js +94 -0
- package/dist/src/sitemap-generator/CombinationType.js +6 -0
- package/dist/src/sitemap-generator/IRankingApiClient.js +2 -0
- package/dist/src/sitemap-generator/ISitemapPathGeneratorChain.js +2 -0
- package/dist/src/sitemap-generator/SitemapPathGeneratorChain.js +13 -0
- package/dist/src/sitemap-generator/index.js +19 -0
- package/package.json +3 -5
- package/dist/fawkes.js +0 -0
- package/dist/index.d.ts +0 -0
- package/dist/src/common/ISearchIndexabilityManager.d.ts +0 -3
- package/dist/src/common/ISeoFilterOptions.d.ts +0 -4
- package/dist/src/common/ISeoFilterState.d.ts +0 -5
- package/dist/src/common/ISeoSearchApplicationState.d.ts +0 -3
- package/dist/src/organisations/SearchIndexabilityManager.d.ts +0 -6
- package/dist/src/scholarships/types.d.ts +0 -7
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"organisations-seo.js","mappings":"eACAA,OAAOC,eAAeC,EAAS,IAA/B,CAA+CC,OAAO,I","sources":["webpack://@studyportals/fawkes/./organisations-seo/index.ts"],"sourcesContent":["\"use strict\";\nObject.defineProperty(exports, \"__esModule\", { value: true });\n"],"names":["Object","defineProperty","exports","value"],"sourceRoot":""}
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
export { ISeoFilterState, ISeoInfoBase, ISeoFilterOptions, ISeoSearchApplicationState, SearchIndexabilityManager, types };
|
|
1
|
+
import { IFilterSelectionState, ISeoInfoBase } from "../src/common";
|
|
2
|
+
export { IFilterSelectionState, ISeoInfoBase };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// import {
|
|
3
|
+
// SearchIndexabilityManager,
|
|
4
|
+
// } from '@/scholarships/';
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
// export * from '@/common/ISeoInfoBase';
|
|
7
|
+
// SearchPolicyChain => rename to something more generic (client does not need to know about the pattern)
|