@adobe/spacecat-shared-utils 1.103.0 → 1.104.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,9 @@
1
+ ## [@adobe/spacecat-shared-utils-v1.104.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.103.0...@adobe/spacecat-shared-utils-v1.104.0) (2026-03-19)
2
+
3
+ ### Features
4
+
5
+ * add experimentation topics field to llmo config model ([#1450](https://github.com/adobe/spacecat-shared/issues/1450)) ([ffcb886](https://github.com/adobe/spacecat-shared/commit/ffcb886e26895c5a0da02c9da9007b0eb6fe3f37))
6
+
1
7
  ## [@adobe/spacecat-shared-utils-v1.103.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.102.1...@adobe/spacecat-shared-utils-v1.103.0) (2026-03-18)
2
8
 
3
9
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spacecat-shared-utils",
3
- "version": "1.103.0",
3
+ "version": "1.104.0",
4
4
  "description": "Shared modules of the Spacecat Services - utils",
5
5
  "type": "module",
6
6
  "exports": {
package/src/schemas.js CHANGED
@@ -51,6 +51,7 @@ const prompt = z.object({
51
51
  origin: z.union([z.literal('human'), z.literal('ai'), z.string()]),
52
52
  source: z.union([z.literal('config'), z.literal('api'), z.string()]),
53
53
  status: z.union([z.literal('completed'), z.literal('processing'), z.string()]).optional(),
54
+ source_url: z.string().optional(),
54
55
  ...auditFields,
55
56
  });
56
57
 
@@ -107,6 +108,7 @@ export const llmoConfig = z.object({
107
108
  categories: z.record(z.uuid(), category),
108
109
  topics: z.record(z.uuid(), topic),
109
110
  aiTopics: z.record(z.uuid(), topic).optional(),
111
+ experimentationTopics: z.record(z.uuid(), topic).optional(),
110
112
  brands: z.object({
111
113
  aliases: z.array(
112
114
  z.object({