@adobe/spacecat-shared-data-access 3.21.0 → 3.23.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 +6 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [@adobe/spacecat-shared-data-access-v3.23.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.22.0...@adobe/spacecat-shared-data-access-v3.23.0) (2026-03-18)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* add cited-analsys as audit types ([#1444](https://github.com/adobe/spacecat-shared/issues/1444)) ([c87bf2e](https://github.com/adobe/spacecat-shared/commit/c87bf2e0d3ad77589fa44a1f9b9638ce0deaab53))
|
|
6
|
+
|
|
7
|
+
## [@adobe/spacecat-shared-data-access-v3.22.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.21.0...@adobe/spacecat-shared-data-access-v3.22.0) (2026-03-17)
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* support boolean and timestamp for edgeOptimizeConfig.enabled ([#1441](https://github.com/adobe/spacecat-shared/issues/1441)) ([2fb173d](https://github.com/adobe/spacecat-shared/commit/2fb173da507df98c0a64977f90181ec501492c88))
|
|
12
|
+
|
|
1
13
|
## [@adobe/spacecat-shared-data-access-v3.21.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.20.1...@adobe/spacecat-shared-data-access-v3.21.0) (2026-03-16)
|
|
2
14
|
|
|
3
15
|
### Features
|
package/package.json
CHANGED
|
@@ -86,6 +86,7 @@ class Audit extends BaseModel {
|
|
|
86
86
|
WIKIPEDIA_ANALYSIS: 'wikipedia-analysis',
|
|
87
87
|
REDDIT_ANALYSIS: 'reddit-analysis',
|
|
88
88
|
YOUTUBE_ANALYSIS: 'youtube-analysis',
|
|
89
|
+
CITED_ANALYSIS: 'cited-analysis',
|
|
89
90
|
COMMERCE_PRODUCT_ENRICHMENTS: 'commerce-product-enrichments',
|
|
90
91
|
COMMERCE_PRODUCT_ENRICHMENTS_YEARLY: 'commerce-product-enrichments-yearly',
|
|
91
92
|
COMMERCE_PRODUCT_PAGE_ENRICHMENT: 'commerce-product-page-enrichment',
|
|
@@ -366,7 +366,12 @@ export const configSchema = Joi.object({
|
|
|
366
366
|
forwardedHost: Joi.string().optional(),
|
|
367
367
|
}).optional(),
|
|
368
368
|
edgeOptimizeConfig: Joi.object({
|
|
369
|
-
enabled: Joi.
|
|
369
|
+
enabled: Joi.alternatives()
|
|
370
|
+
.try(
|
|
371
|
+
Joi.boolean(),
|
|
372
|
+
Joi.number(),
|
|
373
|
+
)
|
|
374
|
+
.optional(),
|
|
370
375
|
opted: Joi.number().optional(),
|
|
371
376
|
stagingDomains: Joi.array().items(
|
|
372
377
|
Joi.object({
|