@adobe/spacecat-shared-data-access 3.52.0 → 3.54.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/site/config.js +22 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [@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)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* **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)
|
|
6
|
+
|
|
7
|
+
## [@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)
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **data-access:** widen detectedCdn Joi schema to LLMO-supported tokens ([#1559](https://github.com/adobe/spacecat-shared/issues/1559)) ([f6e08e9](https://github.com/adobe/spacecat-shared/commit/f6e08e9e94cef4e230f0d892cc73d5e78395c492))
|
|
12
|
+
|
|
1
13
|
## [@adobe/spacecat-shared-data-access-v3.52.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.51.0...@adobe/spacecat-shared-data-access-v3.52.0) (2026-04-10)
|
|
2
14
|
|
|
3
15
|
### Features
|
package/package.json
CHANGED
|
@@ -345,7 +345,28 @@ 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
|
-
|
|
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.
|
|
357
|
+
detectedCdn: Joi.string().valid(
|
|
358
|
+
'aem-cs-fastly',
|
|
359
|
+
'commerce-fastly',
|
|
360
|
+
'byocdn-fastly',
|
|
361
|
+
'byocdn-akamai',
|
|
362
|
+
'byocdn-cloudfront',
|
|
363
|
+
'byocdn-cloudflare',
|
|
364
|
+
'byocdn-imperva',
|
|
365
|
+
'byocdn-other',
|
|
366
|
+
'ams-cloudfront',
|
|
367
|
+
'ams-frontdoor',
|
|
368
|
+
'other',
|
|
369
|
+
).optional(),
|
|
349
370
|
}).optional(),
|
|
350
371
|
cdnLogsConfig: Joi.object({
|
|
351
372
|
bucketName: Joi.string().required(),
|