@adobe/spacecat-shared-data-access 2.100.2 → 2.101.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 +7 -0
- package/package.json +1 -1
- package/src/models/audit/audit.model.js +7 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [@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)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* update audit destination scrapeClient ([#1313](https://github.com/adobe/spacecat-shared/issues/1313)) ([d050937](https://github.com/adobe/spacecat-shared/commit/d0509370042ec48e8493496ba4b7d52d249c3689))
|
|
7
|
+
|
|
1
8
|
# [@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
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -201,10 +201,13 @@ class Audit extends BaseModel {
|
|
|
201
201
|
processingType: stepResult.processingType || 'default',
|
|
202
202
|
options: stepResult.options || {},
|
|
203
203
|
maxScrapeAge: isNumber(stepResult.maxScrapeAge) ? stepResult.maxScrapeAge : 24,
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
204
|
+
metaData: {
|
|
205
|
+
auditData: {
|
|
206
|
+
siteId: stepResult.siteId,
|
|
207
|
+
completionQueueUrl:
|
|
208
|
+
stepResult.completionQueueUrl || context.env?.AUDIT_JOBS_QUEUE_URL || '',
|
|
209
|
+
auditContext,
|
|
210
|
+
},
|
|
208
211
|
},
|
|
209
212
|
};
|
|
210
213
|
|