@adobe/spacecat-shared-data-access 3.30.0 → 3.31.1
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 +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [@adobe/spacecat-shared-data-access-v3.31.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.31.0...@adobe/spacecat-shared-data-access-v3.31.1) (2026-03-26)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **AGENTCOM-441:** update required fields from commerce config ([#1470](https://github.com/adobe/spacecat-shared/issues/1470)) ([5e89146](https://github.com/adobe/spacecat-shared/commit/5e89146110896cfcbcce9e80e743564ff8bb989b))
|
|
6
|
+
|
|
7
|
+
## [@adobe/spacecat-shared-data-access-v3.31.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.30.0...@adobe/spacecat-shared-data-access-v3.31.0) (2026-03-25)
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* Added cwv-trends-audit import type ([#1434](https://github.com/adobe/spacecat-shared/issues/1434)) ([eab9653](https://github.com/adobe/spacecat-shared/commit/eab9653a367208f0cf9691fbf186ffabb9307fea))
|
|
12
|
+
|
|
1
13
|
## [@adobe/spacecat-shared-data-access-v3.30.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.29.0...@adobe/spacecat-shared-data-access-v3.30.0) (2026-03-25)
|
|
2
14
|
|
|
3
15
|
### Features
|
package/package.json
CHANGED
|
@@ -91,6 +91,7 @@ class Audit extends BaseModel {
|
|
|
91
91
|
COMMERCE_PRODUCT_ENRICHMENTS_YEARLY: 'commerce-product-enrichments-yearly',
|
|
92
92
|
COMMERCE_PRODUCT_PAGE_ENRICHMENT: 'commerce-product-page-enrichment',
|
|
93
93
|
COMMERCE_PRODUCT_CATALOG_ENRICHMENT: 'commerce-product-catalog-enrichment',
|
|
94
|
+
CWV_TRENDS_AUDIT: 'cwv-trends-audit',
|
|
94
95
|
OFFSITE_BRAND_PRESENCE: 'offsite-brand-presence',
|
|
95
96
|
};
|
|
96
97
|
|
|
@@ -386,10 +386,10 @@ export const configSchema = Joi.object({
|
|
|
386
386
|
commerceLlmoConfig: Joi.object().pattern(
|
|
387
387
|
Joi.string(),
|
|
388
388
|
Joi.object({
|
|
389
|
-
environmentId: Joi.string().
|
|
390
|
-
websiteCode: Joi.string().
|
|
391
|
-
storeCode: Joi.string().
|
|
392
|
-
storeViewCode: Joi.string().
|
|
389
|
+
environmentId: Joi.string().required(),
|
|
390
|
+
websiteCode: Joi.string().required(),
|
|
391
|
+
storeCode: Joi.string().required(),
|
|
392
|
+
storeViewCode: Joi.string().required(),
|
|
393
393
|
hostName: Joi.string().optional(),
|
|
394
394
|
magentoEndpoint: Joi.string().uri().optional(),
|
|
395
395
|
magentoAPIKey: Joi.string().optional(),
|