@adobe/spacecat-shared-data-access 2.31.1 → 2.32.1

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.32.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.32.0...@adobe/spacecat-shared-data-access-v2.32.1) (2025-06-30)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * make filter value array ([#834](https://github.com/adobe/spacecat-shared/issues/834)) ([db48daa](https://github.com/adobe/spacecat-shared/commit/db48daab3907917f32f71fed27b7468790c0c2d5))
7
+
8
+ # [@adobe/spacecat-shared-data-access-v2.32.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.31.1...@adobe/spacecat-shared-data-access-v2.32.0) (2025-06-30)
9
+
10
+
11
+ ### Features
12
+
13
+ * added paid traffic suggestion type ([#832](https://github.com/adobe/spacecat-shared/issues/832)) ([5ed8d52](https://github.com/adobe/spacecat-shared/commit/5ed8d52e93228b69ba6fe0a5da7309afbf8c479e))
14
+
1
15
  # [@adobe/spacecat-shared-data-access-v2.31.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.31.0...@adobe/spacecat-shared-data-access-v2.31.1) (2025-06-28)
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.31.1",
3
+ "version": "2.32.1",
4
4
  "description": "Shared modules of the Spacecat Services - Data Access",
5
5
  "type": "module",
6
6
  "engines": {
@@ -191,7 +191,7 @@ export const configSchema = Joi.object({
191
191
  filters: Joi.array().items(
192
192
  Joi.object({
193
193
  key: Joi.string().required(),
194
- value: Joi.string().required(),
194
+ value: Joi.array().items(Joi.string()).required(),
195
195
  }),
196
196
  ).optional(),
197
197
  outputLocation: Joi.string().required(),
@@ -36,6 +36,7 @@ class Suggestion extends BaseModel {
36
36
  CONTENT_UPDATE: 'CONTENT_UPDATE',
37
37
  REDIRECT_UPDATE: 'REDIRECT_UPDATE',
38
38
  METADATA_UPDATE: 'METADATA_UPDATE',
39
+ AI_INSIGHTS: 'AI_INSIGHTS',
39
40
  };
40
41
 
41
42
  // add your customized methods here