@adobe/spacecat-shared-data-access 3.28.0 → 3.29.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.29.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.28.0...@adobe/spacecat-shared-data-access-v3.29.0) (2026-03-23)
2
+
3
+ ### Features
4
+
5
+ * **page-citability:** add UPDATED_BY_PRERENDER and UPDATED_BY_PAGE_CITABILITY constants ([#1460](https://github.com/adobe/spacecat-shared/issues/1460)) ([dcdf2b0](https://github.com/adobe/spacecat-shared/commit/dcdf2b0af9b9426631e9363949027a267ce7d015))
6
+
1
7
  ## [@adobe/spacecat-shared-data-access-v3.28.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.27.1...@adobe/spacecat-shared-data-access-v3.28.0) (2026-03-23)
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.28.0",
3
+ "version": "3.29.0",
4
4
  "description": "Shared modules of the Spacecat Services - Data Access",
5
5
  "type": "module",
6
6
  "engines": {
@@ -23,6 +23,10 @@ class PageCitability extends BaseModel {
23
23
 
24
24
  static DEFAULT_UPDATED_BY = 'spacecat';
25
25
 
26
+ static UPDATED_BY_PRERENDER = 'prerender';
27
+
28
+ static UPDATED_BY_PAGE_CITABILITY = 'page-citability';
29
+
26
30
  // add any custom methods or overrides here
27
31
  }
28
32
 
@@ -848,5 +848,5 @@ Config.toDynamoItem = (config) => ({
848
848
  llmo: config.getLlmoConfig(),
849
849
  tokowakaConfig: config.getTokowakaConfig(),
850
850
  edgeOptimizeConfig: config.getEdgeOptimizeConfig(),
851
- commerceLlmoConfig: config.getCommerceLlmoConfig(),
851
+ commerceLlmoConfig: config.getCommerceLlmoConfig?.(),
852
852
  });