@studyportals/fawkes 1.0.1-2 → 1.0.1-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/fawkes.js +0 -0
- package/dist/index.d.ts +0 -0
- package/dist/index.js +1 -0
- package/dist/organisations-seo/index.js +1 -0
- package/dist/organisations-seo.js +0 -2
- package/dist/scholarships-seo/index.d.ts +3 -2
- package/dist/scholarships-seo/index.js +2 -7
- package/dist/scholarships-seo.js +1 -1
- package/dist/scholarships-seo.js.map +1 -1
- package/dist/sitemap-generator-seo/index.js +9 -0
- package/dist/src/common/BaseSeoIndexabilityPolicy.d.ts +5 -10
- package/dist/src/common/BaseSeoIndexabilityPolicy.js +12 -51
- package/dist/src/common/IPrettyPathGenerator.js +1 -2
- package/dist/src/common/ISearchIndexabilityManager.d.ts +3 -0
- package/dist/src/common/ISearchIndexabilityManager.js +1 -0
- package/dist/src/common/ISeoFilterOptions.d.ts +4 -0
- package/dist/src/common/ISeoFilterOptions.js +1 -0
- package/dist/src/common/ISeoFilterState.d.ts +5 -0
- package/dist/src/common/ISeoFilterState.js +1 -0
- package/dist/src/common/ISeoIndexabilityPolicy.js +1 -2
- package/dist/src/common/ISeoInfoBase.d.ts +5 -7
- package/dist/src/common/ISeoInfoBase.js +1 -2
- package/dist/src/common/ISeoSearchApplicationState.d.ts +3 -0
- package/dist/src/common/ISeoSearchApplicationState.js +1 -0
- package/dist/src/common/index.d.ts +4 -2
- package/dist/src/common/index.js +1 -2
- package/dist/src/organisations/FilterKeyValuePairs.js +1 -2
- package/dist/src/organisations/IOrganisationsProvider.js +1 -2
- package/dist/src/organisations/ISeoInfoBaseOrganisations.js +1 -2
- package/dist/src/organisations/ISortState.js +1 -2
- package/dist/src/organisations/SearchIndexabilityManager.d.ts +6 -0
- package/dist/src/organisations/SearchIndexabilityManager.js +6 -0
- package/dist/src/organisations/SeoIndexabilityPolicy.d.ts +2 -4
- package/dist/src/organisations/SeoIndexabilityPolicy.js +11 -32
- package/dist/src/organisations/SeoRuleBasedIndexabilityPolicy.d.ts +2 -7
- package/dist/src/organisations/SeoRuleBasedIndexabilityPolicy.js +5 -32
- package/dist/src/organisations/SortingOptions.js +2 -5
- package/dist/src/organisations/index.js +1 -2
- package/dist/src/scholarships/SearchIndexabilityManager.d.ts +3 -13
- package/dist/src/scholarships/SearchIndexabilityManager.js +22 -75
- package/dist/src/scholarships/index.d.ts +4 -0
- package/dist/src/scholarships/index.js +4 -6
- package/dist/src/scholarships/policies/AreaPolicy.d.ts +8 -14
- package/dist/src/scholarships/policies/AreaPolicy.js +29 -101
- package/dist/src/scholarships/policies/CountryPolicy.d.ts +4 -8
- package/dist/src/scholarships/policies/CountryPolicy.js +14 -85
- package/dist/src/scholarships/policies/DisciplineAreaPolicy.d.ts +4 -8
- package/dist/src/scholarships/policies/DisciplineAreaPolicy.js +21 -96
- package/dist/src/scholarships/policies/DisciplineCountryPolicy.d.ts +6 -11
- package/dist/src/scholarships/policies/DisciplineCountryPolicy.js +24 -96
- package/dist/src/scholarships/policies/DisciplinePolicy.d.ts +4 -8
- package/dist/src/scholarships/policies/DisciplinePolicy.js +14 -85
- package/dist/src/scholarships/policies/UnfilteredPolicy.d.ts +4 -8
- package/dist/src/scholarships/policies/UnfilteredPolicy.js +9 -73
- package/dist/src/scholarships/policies/UniversityCountryPolicy.d.ts +4 -8
- package/dist/src/scholarships/policies/UniversityCountryPolicy.js +18 -91
- package/dist/src/scholarships/types.d.ts +7 -0
- package/dist/src/scholarships/types.js +7 -0
- package/dist/src/sitemap-generator/CombinationType.js +2 -5
- package/dist/src/sitemap-generator/IRankingApiClient.js +1 -2
- package/dist/src/sitemap-generator/ISitemapPathGeneratorChain.js +1 -2
- package/dist/src/sitemap-generator/SitemapPathGeneratorChain.js +6 -10
- package/dist/src/sitemap-generator/index.js +3 -19
- package/package.json +11 -6
- package/dist/organisations-seo.js.map +0 -1
- package/dist/src/common/IFilterOptions.d.ts +0 -4
- package/dist/src/common/IFilterOptions.js +0 -2
- package/dist/src/common/IFilterSelectionState.d.ts +0 -4
- package/dist/src/common/IFilterSelectionState.js +0 -2
- package/dist/src/common/ISearchApplicationState.d.ts +0 -3
- package/dist/src/common/ISearchApplicationState.js +0 -2
- package/dist/src/common/ISearchPolicyChain.d.ts +0 -3
- package/dist/src/common/ISearchPolicyChain.js +0 -2
- package/dist/src/organisations/SearchPolicyChain.d.ts +0 -6
- package/dist/src/organisations/SearchPolicyChain.js +0 -13
package/dist/fawkes.js
ADDED
|
File without changes
|
package/dist/index.d.ts
ADDED
|
File without changes
|
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import { ISeoFilterState, ISeoInfoBase, ISeoFilterOptions, ISeoSearchApplicationState } from "../src/common";
|
|
2
|
+
import { SearchIndexabilityManager, types } from "../src/scholarships";
|
|
3
|
+
export { ISeoFilterState, ISeoInfoBase, ISeoFilterOptions, ISeoSearchApplicationState, SearchIndexabilityManager, types };
|
|
@@ -1,7 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
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)
|
|
1
|
+
import { SearchIndexabilityManager, types } from "../src/scholarships";
|
|
2
|
+
export { SearchIndexabilityManager, types };
|