@adobe/spacecat-shared-data-access 2.90.0 → 2.92.0
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/CHANGELOG.md +14 -0
- package/package.json +1 -1
- package/src/models/audit/audit.model.js +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [@adobe/spacecat-shared-data-access-v2.92.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.91.0...@adobe/spacecat-shared-data-access-v2.92.0) (2025-12-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* add WIKIPEDIA_ANALYSIS audit type and opportunity type ([#1222](https://github.com/adobe/spacecat-shared/issues/1222)) ([5a1b113](https://github.com/adobe/spacecat-shared/commit/5a1b113ff343a930e80bb5aafedbe2b8c5423534))
|
|
7
|
+
|
|
8
|
+
# [@adobe/spacecat-shared-data-access-v2.91.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.90.0...@adobe/spacecat-shared-data-access-v2.91.0) (2025-12-10)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* add unused content fragment audit type ([#1135](https://github.com/adobe/spacecat-shared/issues/1135)) ([dfdd01e](https://github.com/adobe/spacecat-shared/commit/dfdd01e2603ab737da2f1935139b66693edb9d70))
|
|
14
|
+
|
|
1
15
|
# [@adobe/spacecat-shared-data-access-v2.90.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.89.0...@adobe/spacecat-shared-data-access-v2.90.0) (2025-12-08)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -41,6 +41,8 @@ class Audit extends BaseModel {
|
|
|
41
41
|
REDIRECT_CHAINS: 'redirect-chains',
|
|
42
42
|
BROKEN_BACKLINKS: 'broken-backlinks',
|
|
43
43
|
BROKEN_INTERNAL_LINKS: 'broken-internal-links',
|
|
44
|
+
CONTENT_FRAGMENT_UNUSED: 'content-fragment-unused',
|
|
45
|
+
CONTENT_FRAGMENT_UNUSED_AUTO_FIX: 'content-fragment-unused-auto-fix',
|
|
44
46
|
EXPERIMENTATION: 'experimentation',
|
|
45
47
|
CONVERSION: 'conversion',
|
|
46
48
|
ORGANIC_KEYWORDS: 'organic-keywords',
|
|
@@ -80,6 +82,7 @@ class Audit extends BaseModel {
|
|
|
80
82
|
PAGE_INTENT: 'page-intent',
|
|
81
83
|
NO_CTA_ABOVE_THE_FOLD: 'no-cta-above-the-fold',
|
|
82
84
|
TOC: 'toc',
|
|
85
|
+
WIKIPEDIA_ANALYSIS: 'wikipedia-analysis',
|
|
83
86
|
};
|
|
84
87
|
|
|
85
88
|
static AUDIT_TYPE_PROPERTIES = {
|