@adobe/spacecat-shared-data-access 2.46.2 → 2.47.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 CHANGED
@@ -1,3 +1,10 @@
1
+ # [@adobe/spacecat-shared-data-access-v2.47.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.46.2...@adobe/spacecat-shared-data-access-v2.47.0) (2025-08-11)
2
+
3
+
4
+ ### Features
5
+
6
+ * make customerIntent config generic ([#896](https://github.com/adobe/spacecat-shared/issues/896)) ([d02a592](https://github.com/adobe/spacecat-shared/commit/d02a592fb556d282f652f8dc9c2603ae47a0e93c))
7
+
1
8
  # [@adobe/spacecat-shared-data-access-v2.46.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.46.1...@adobe/spacecat-shared-data-access-v2.46.2) (2025-08-11)
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.46.2",
3
+ "version": "2.47.0",
4
4
  "description": "Shared modules of the Spacecat Services - Data Access",
5
5
  "type": "module",
6
6
  "engines": {
@@ -248,11 +248,12 @@ export const configSchema = Joi.object({
248
248
  AI: Joi.array().items(QUESTION_SCHEMA).optional(),
249
249
  }).optional(),
250
250
  urlPatterns: LLMO_URL_PATTERNS_SCHEMA.optional(),
251
- customerIntent: Joi.object({
252
- adobeProduct: Joi.string().optional(),
253
- cdnProvider: Joi.array().items(Joi.string()).optional(),
254
- referralProvider: Joi.string().optional(),
255
- }).optional(),
251
+ customerIntent: Joi.array().items(
252
+ Joi.object({
253
+ key: Joi.string().required(),
254
+ value: Joi.string().required(),
255
+ }),
256
+ ).optional(),
256
257
  filterConfig: Joi.array().items(
257
258
  Joi.object({
258
259
  key: Joi.string().required(),