@adobe/spacecat-shared-utils 1.69.0 → 1.69.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 +14 -0
- package/package.json +1 -1
- package/src/schemas.js +0 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [@adobe/spacecat-shared-utils-v1.69.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.69.1...@adobe/spacecat-shared-utils-v1.69.2) (2025-10-31)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* remove topic origin ([#1080](https://github.com/adobe/spacecat-shared/issues/1080)) ([69c0dd6](https://github.com/adobe/spacecat-shared/commit/69c0dd6ab50c520a3fd776db69a951a13ace9f1d))
|
|
7
|
+
|
|
8
|
+
# [@adobe/spacecat-shared-utils-v1.69.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.69.0...@adobe/spacecat-shared-utils-v1.69.1) (2025-10-30)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* remove duplicate origins in LLMO schema ([#1076](https://github.com/adobe/spacecat-shared/issues/1076)) ([616888a](https://github.com/adobe/spacecat-shared/commit/616888a81d870188a02e2c3c4a36a25fc6af9e1a))
|
|
14
|
+
|
|
1
15
|
# [@adobe/spacecat-shared-utils-v1.69.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.68.0...@adobe/spacecat-shared-utils-v1.69.0) (2025-10-30)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
package/src/schemas.js
CHANGED
|
@@ -78,14 +78,11 @@ const topic = z.object({
|
|
|
78
78
|
name: nonEmptyString,
|
|
79
79
|
prompts: z.array(prompt).min(1),
|
|
80
80
|
category: z.union([z.uuid(), nonEmptyString]),
|
|
81
|
-
origin: z.union([z.literal('human'), z.literal('ai'), z.string()]).optional(),
|
|
82
81
|
});
|
|
83
82
|
|
|
84
83
|
const deletedPrompt = prompt.extend({
|
|
85
84
|
topic: nonEmptyString,
|
|
86
85
|
category: nonEmptyString,
|
|
87
|
-
regions: z.array(region).min(1),
|
|
88
|
-
origin: z.union([z.literal('human'), z.literal('ai'), z.string()]).optional(),
|
|
89
86
|
});
|
|
90
87
|
|
|
91
88
|
export const llmoConfig = z.object({
|