@adobe/spacecat-shared-data-access 2.100.2 → 2.102.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,17 @@
1
+ # [@adobe/spacecat-shared-data-access-v2.102.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.101.0...@adobe/spacecat-shared-data-access-v2.102.0) (2026-02-04)
2
+
3
+
4
+ ### Features
5
+
6
+ * add new types for commerce product enrichments ([#1317](https://github.com/adobe/spacecat-shared/issues/1317)) ([14a4f10](https://github.com/adobe/spacecat-shared/commit/14a4f104c06ed800cbaa318e72d0106f5398ca85))
7
+
8
+ # [@adobe/spacecat-shared-data-access-v2.101.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.100.2...@adobe/spacecat-shared-data-access-v2.101.0) (2026-02-04)
9
+
10
+
11
+ ### Features
12
+
13
+ * update audit destination scrapeClient ([#1313](https://github.com/adobe/spacecat-shared/issues/1313)) ([d050937](https://github.com/adobe/spacecat-shared/commit/d0509370042ec48e8493496ba4b7d52d249c3689))
14
+
1
15
  # [@adobe/spacecat-shared-data-access-v2.100.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.100.1...@adobe/spacecat-shared-data-access-v2.100.2) (2026-02-03)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spacecat-shared-data-access",
3
- "version": "2.100.2",
3
+ "version": "2.102.0",
4
4
  "description": "Shared modules of the Spacecat Services - Data Access",
5
5
  "type": "module",
6
6
  "engines": {
@@ -84,6 +84,8 @@ class Audit extends BaseModel {
84
84
  TOC: 'toc',
85
85
  WIKIPEDIA_ANALYSIS: 'wikipedia-analysis',
86
86
  COMMERCE_PRODUCT_ENRICHMENTS: 'commerce-product-enrichments',
87
+ COMMERCE_PRODUCT_PAGE_ENRICHMENT: 'commerce-product-page-enrichment',
88
+ COMMERCE_PRODUCT_CATALOG_ENRICHMENT: 'commerce-product-catalog-enrichment',
87
89
  };
88
90
 
89
91
  static AUDIT_TYPE_PROPERTIES = {
@@ -201,10 +203,13 @@ class Audit extends BaseModel {
201
203
  processingType: stepResult.processingType || 'default',
202
204
  options: stepResult.options || {},
203
205
  maxScrapeAge: isNumber(stepResult.maxScrapeAge) ? stepResult.maxScrapeAge : 24,
204
- auditData: {
205
- siteId: stepResult.siteId,
206
- completionQueueUrl: stepResult.completionQueueUrl || context.env?.AUDIT_JOBS_QUEUE_URL,
207
- auditContext,
206
+ metaData: {
207
+ auditData: {
208
+ siteId: stepResult.siteId,
209
+ completionQueueUrl:
210
+ stepResult.completionQueueUrl || context.env?.AUDIT_JOBS_QUEUE_URL || '',
211
+ auditContext,
212
+ },
208
213
  },
209
214
  };
210
215