@adobe/spacecat-shared-data-access 1.6.1 → 1.6.2

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-v1.6.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.6.1...@adobe/spacecat-shared-data-access-v1.6.2) (2024-01-12)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * getSitesByDeliveryType signature ([#78](https://github.com/adobe/spacecat-shared/issues/78)) ([2b6c0fd](https://github.com/adobe/spacecat-shared/commit/2b6c0fd3e603eb3c688a45ae9ab78baf88a508ef))
7
+
1
8
  # [@adobe/spacecat-shared-data-access-v1.6.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v1.6.0...@adobe/spacecat-shared-data-access-v1.6.1) (2024-01-12)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spacecat-shared-data-access",
3
- "version": "1.6.1",
3
+ "version": "1.6.2",
4
4
  "description": "Shared modules of the Spacecat Services - Data Access",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/index.d.ts CHANGED
@@ -242,7 +242,9 @@ export interface DataAccess {
242
242
  siteId: string,
243
243
  ) => Promise<void>;
244
244
  getSites: () => Promise<Site[]>;
245
- getSitesByDeliveryType: () => Promise<Site[]>;
245
+ getSitesByDeliveryType: (
246
+ deliveryType: string,
247
+ ) => Promise<Site[]>;
246
248
  getSitesToAudit: () => Promise<string[]>;
247
249
  getSitesWithLatestAudit: (
248
250
  auditType: string,