@adobe/spacecat-shared-data-access 2.64.5 → 2.64.6

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,10 @@
1
+ # [@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)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * 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))
7
+
1
8
  # [@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
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spacecat-shared-data-access",
3
- "version": "2.64.5",
3
+ "version": "2.64.6",
4
4
  "description": "Shared modules of the Spacecat Services - Data Access",
5
5
  "type": "module",
6
6
  "engines": {
@@ -129,7 +129,7 @@ class Audit extends BaseModel {
129
129
  startDate: stepResult.startDate,
130
130
  endDate: stepResult.endDate,
131
131
  urlConfigs: stepResult.urlConfigs,
132
- allowCache: true,
132
+ allowCache: isBoolean(stepResult.allowCache) ? stepResult.allowCache : true,
133
133
  auditContext,
134
134
  }),
135
135
  },