@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 +7 -0
- package/package.json +1 -1
- package/src/models/site/config.js +6 -5
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
|
@@ -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.
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
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(),
|