@adobe/spacecat-shared-data-access 2.64.5 → 2.65.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 +14 -0
- package/package.json +1 -1
- package/src/models/audit/audit.model.js +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [@adobe/spacecat-shared-data-access-v2.65.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.64.6...@adobe/spacecat-shared-data-access-v2.65.0) (2025-09-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **COMOPT-1168:** add PRODUCT_METATAGS to AUDIT_TYPES and update tests ([#972](https://github.com/adobe/spacecat-shared/issues/972)) ([236086f](https://github.com/adobe/spacecat-shared/commit/236086f459622e59b7ce7caf764323a9e9f1da3c))
|
|
7
|
+
|
|
8
|
+
# [@adobe/spacecat-shared-data-access-v2.64.6](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.64.5...@adobe/spacecat-shared-data-access-v2.64.6) (2025-09-25)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* allow configurable cache flag on import step ([#988](https://github.com/adobe/spacecat-shared/issues/988)) ([219d9ab](https://github.com/adobe/spacecat-shared/commit/219d9ab098ce1bc91d90c9e5ac8624ffd576dc14))
|
|
14
|
+
|
|
1
15
|
# [@adobe/spacecat-shared-data-access-v2.64.5](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.64.4...@adobe/spacecat-shared-data-access-v2.64.5) (2025-09-25)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -60,6 +60,7 @@ class Audit extends BaseModel {
|
|
|
60
60
|
PAID_TRAFFIC_ANALYSIS_MONTHLY: 'paid-traffic-analysis-monthly',
|
|
61
61
|
READABILITY: 'readability',
|
|
62
62
|
PRERENDER: 'prerender',
|
|
63
|
+
PRODUCT_METATAGS: 'product-metatags',
|
|
63
64
|
};
|
|
64
65
|
|
|
65
66
|
static AUDIT_TYPE_PROPERTIES = {
|
|
@@ -129,7 +130,7 @@ class Audit extends BaseModel {
|
|
|
129
130
|
startDate: stepResult.startDate,
|
|
130
131
|
endDate: stepResult.endDate,
|
|
131
132
|
urlConfigs: stepResult.urlConfigs,
|
|
132
|
-
allowCache: true,
|
|
133
|
+
allowCache: isBoolean(stepResult.allowCache) ? stepResult.allowCache : true,
|
|
133
134
|
auditContext,
|
|
134
135
|
}),
|
|
135
136
|
},
|