@adobe/spacecat-shared-data-access 2.58.0 → 2.60.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 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [@adobe/spacecat-shared-data-access-v2.60.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.59.0...@adobe/spacecat-shared-data-access-v2.60.0) (2025-08-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* add headings audit ([#943](https://github.com/adobe/spacecat-shared/issues/943)) ([17d45dd](https://github.com/adobe/spacecat-shared/commit/17d45dd624d5ada1feafa25ea541ff841a490d34))
|
|
7
|
+
|
|
8
|
+
# [@adobe/spacecat-shared-data-access-v2.59.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.58.0...@adobe/spacecat-shared-data-access-v2.59.0) (2025-08-29)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* added new audit-type LLM Error Pages ([#918](https://github.com/adobe/spacecat-shared/issues/918)) ([2f4ffbd](https://github.com/adobe/spacecat-shared/commit/2f4ffbd2b9cfbbf6fe534e92409649f97e9ee540))
|
|
14
|
+
|
|
1
15
|
# [@adobe/spacecat-shared-data-access-v2.58.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.57.1...@adobe/spacecat-shared-data-access-v2.58.0) (2025-08-28)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -42,6 +42,7 @@ class Audit extends BaseModel {
|
|
|
42
42
|
EXPERIMENTATION_ESS_MONTHLY: 'experimentation-ess-monthly',
|
|
43
43
|
EXPERIMENTATION_OPPORTUNITIES: 'experimentation-opportunities',
|
|
44
44
|
META_TAGS: 'meta-tags',
|
|
45
|
+
LLM_ERROR_PAGES: 'llm-error-pages',
|
|
45
46
|
COSTS: 'costs',
|
|
46
47
|
STRUCTURED_DATA: 'structured-data',
|
|
47
48
|
STRUCTURED_DATA_AUTO_SUGGEST: 'structured-data-auto-suggest',
|
|
@@ -52,6 +53,7 @@ class Audit extends BaseModel {
|
|
|
52
53
|
SECURITY_CSP: 'security-csp',
|
|
53
54
|
PAID: 'paid',
|
|
54
55
|
HREFLANG: 'hreflang',
|
|
56
|
+
HEADINGS: 'headings',
|
|
55
57
|
PAID_TRAFFIC_ANALYSIS_WEEKLY: 'paid-traffic-analysis-weekly',
|
|
56
58
|
PAID_TRAFFIC_ANALYSIS_MONTHLY: 'paid-traffic-analysis-monthly',
|
|
57
59
|
READABILITY: 'readability',
|
|
@@ -92,7 +94,7 @@ class Audit extends BaseModel {
|
|
|
92
94
|
* },
|
|
93
95
|
* [Audit.AUDIT_STEP_DESTINATIONS.SCRAPE_CLIENT]: {
|
|
94
96
|
* formatPayload: function
|
|
95
|
-
* }}
|
|
97
|
+
* }}}
|
|
96
98
|
*/
|
|
97
99
|
static AUDIT_STEP_DESTINATION_CONFIGS = {
|
|
98
100
|
[Audit.AUDIT_STEP_DESTINATIONS.IMPORT_WORKER]: {
|