@adobe/spacecat-shared-data-access 3.52.0 → 3.53.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 CHANGED
@@ -1,3 +1,9 @@
1
+ ## [@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
+
3
+ ### Features
4
+
5
+ * **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))
6
+
1
7
  ## [@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
8
 
3
9
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spacecat-shared-data-access",
3
- "version": "3.52.0",
3
+ "version": "3.53.0",
4
4
  "description": "Shared modules of the Spacecat Services - Data Access",
5
5
  "type": "module",
6
6
  "engines": {
@@ -345,7 +345,16 @@ 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
- detectedCdn: Joi.string().valid('aem-cs-fastly', 'other').optional(),
348
+ detectedCdn: Joi.string().valid(
349
+ 'aem-cs-fastly',
350
+ 'commerce-fastly',
351
+ 'byocdn-fastly',
352
+ 'byocdn-akamai',
353
+ 'byocdn-cloudflare',
354
+ 'byocdn-imperva',
355
+ 'byocdn-other',
356
+ 'other',
357
+ ).optional(),
349
358
  }).optional(),
350
359
  cdnLogsConfig: Joi.object({
351
360
  bucketName: Joi.string().required(),