@adobe/spacecat-shared-data-access 4.14.0 → 4.15.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-v4.15.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v4.14.0...@adobe/spacecat-shared-data-access-v4.15.0) (2026-07-29)
2
+
3
+ ### Features
4
+
5
+ * **site-config:** add showWww flag to llmo config ([#1850](https://github.com/adobe/spacecat-shared/issues/1850)) ([e87b454](https://github.com/adobe/spacecat-shared/commit/e87b45481d2b34cdb9f86e569f7598dea967ed6e))
6
+
1
7
  ## [@adobe/spacecat-shared-data-access-v4.14.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v4.13.0...@adobe/spacecat-shared-data-access-v4.14.0) (2026-07-27)
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": "4.14.0",
3
+ "version": "4.15.0",
4
4
  "description": "Shared modules of the Spacecat Services - Data Access",
5
5
  "type": "module",
6
6
  "engines": {
@@ -389,6 +389,7 @@ export const configSchema = Joi.object({
389
389
  'ams-frontdoor',
390
390
  'other',
391
391
  ).optional(),
392
+ showWww: Joi.boolean().optional(),
392
393
  }).optional(),
393
394
  cdnLogsConfig: Joi.object({
394
395
  bucketName: Joi.string().required(),
@@ -721,6 +722,11 @@ export const Config = (data = {}) => {
721
722
  state.llmo.brand = brand;
722
723
  };
723
724
 
725
+ self.updateLlmoShowWww = (showWww) => {
726
+ state.llmo = state.llmo || {};
727
+ state.llmo.showWww = showWww;
728
+ };
729
+
724
730
  self.addLlmoHumanQuestions = (questions) => {
725
731
  state.llmo = state.llmo || {};
726
732
  state.llmo.questions = state.llmo.questions || {};