@adobe/spacecat-shared-data-access 3.31.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 CHANGED
@@ -1,3 +1,9 @@
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
+
1
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)
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.31.0",
3
+ "version": "3.31.1",
4
4
  "description": "Shared modules of the Spacecat Services - Data Access",
5
5
  "type": "module",
6
6
  "engines": {
@@ -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().optional(),
390
- websiteCode: Joi.string().optional(),
391
- storeCode: Joi.string().optional(),
392
- storeViewCode: Joi.string().optional(),
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(),