@adobe/spacecat-shared-data-access 3.53.0 → 3.55.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 +12 -0
- package/package.json +1 -1
- package/src/models/audit/audit.model.js +1 -0
- package/src/models/site/config.js +12 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [@adobe/spacecat-shared-data-access-v3.55.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.54.0...@adobe/spacecat-shared-data-access-v3.55.0) (2026-04-28)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* **data-access:** add semantic-value-visibility audit type ([#1545](https://github.com/adobe/spacecat-shared/issues/1545)) ([e49aa54](https://github.com/adobe/spacecat-shared/commit/e49aa54ab3e9ad59d7c44b83b25c81477c6a497d))
|
|
6
|
+
|
|
7
|
+
## [@adobe/spacecat-shared-data-access-v3.54.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.53.0...@adobe/spacecat-shared-data-access-v3.54.0) (2026-04-28)
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **data-access:** align detectedCdn Joi schema with CDN_TYPES taxonomy ([#1563](https://github.com/adobe/spacecat-shared/issues/1563)) ([bf02ca1](https://github.com/adobe/spacecat-shared/commit/bf02ca1f265c5e6de05512c07a742ce52388bb62)), closes [#1559](https://github.com/adobe/spacecat-shared/issues/1559) [adobe/spacecat-api-service#2245](https://github.com/adobe/spacecat-api-service/issues/2245)
|
|
12
|
+
|
|
1
13
|
## [@adobe/spacecat-shared-data-access-v3.53.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.52.0...@adobe/spacecat-shared-data-access-v3.53.0) (2026-04-27)
|
|
2
14
|
|
|
3
15
|
### Features
|
package/package.json
CHANGED
|
@@ -95,6 +95,7 @@ class Audit extends BaseModel {
|
|
|
95
95
|
COMMERCE_PRODUCT_CATALOG_ENRICHMENT_AUTO_FIX: 'commerce-product-catalog-enrichment-auto-fix',
|
|
96
96
|
CWV_TRENDS_AUDIT: 'cwv-trends-audit',
|
|
97
97
|
OFFSITE_BRAND_PRESENCE: 'offsite-brand-presence',
|
|
98
|
+
SEMANTIC_VALUE_VISIBILITY: 'semantic-value-visibility',
|
|
98
99
|
};
|
|
99
100
|
|
|
100
101
|
static AUDIT_TYPE_PROPERTIES = {
|
|
@@ -345,14 +345,26 @@ export const configSchema = Joi.object({
|
|
|
345
345
|
cdnProvider: Joi.string().optional(),
|
|
346
346
|
region: Joi.string().pattern(AWS_REGION_PATTERN).optional(),
|
|
347
347
|
}).optional(),
|
|
348
|
+
// Aligned with llmo-utils.js#CDN_TYPES in spacecat-api-service.
|
|
349
|
+
// Detector currently emits a 7-token subset of CDN_TYPES; the remaining
|
|
350
|
+
// three (`byocdn-cloudfront`, `ams-cloudfront`, `ams-frontdoor`) are
|
|
351
|
+
// valid CDN tokens the detector cannot yet identify from network signals
|
|
352
|
+
// and therefore collapses into `byocdn-other`. Listed here so the schema
|
|
353
|
+
// accepts them once detector revisions add AMS-aware signatures, without
|
|
354
|
+
// requiring a coupled shared-package release.
|
|
355
|
+
// `'other'` is retained for backward compatibility with records written
|
|
356
|
+
// by the original Phase-1-only detector and is no longer emitted.
|
|
348
357
|
detectedCdn: Joi.string().valid(
|
|
349
358
|
'aem-cs-fastly',
|
|
350
359
|
'commerce-fastly',
|
|
351
360
|
'byocdn-fastly',
|
|
352
361
|
'byocdn-akamai',
|
|
362
|
+
'byocdn-cloudfront',
|
|
353
363
|
'byocdn-cloudflare',
|
|
354
364
|
'byocdn-imperva',
|
|
355
365
|
'byocdn-other',
|
|
366
|
+
'ams-cloudfront',
|
|
367
|
+
'ams-frontdoor',
|
|
356
368
|
'other',
|
|
357
369
|
).optional(),
|
|
358
370
|
}).optional(),
|