@adobe/spacecat-shared-utils 1.69.1 → 1.69.3
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 +3 -3
- package/src/schemas.js +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [@adobe/spacecat-shared-utils-v1.69.3](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.69.2...@adobe/spacecat-shared-utils-v1.69.3) (2025-11-01)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update external fixes ([#1081](https://github.com/adobe/spacecat-shared/issues/1081)) ([4476494](https://github.com/adobe/spacecat-shared/commit/44764944350f9344d0ca5e2af5a2161cc7470899))
|
|
7
|
+
|
|
8
|
+
# [@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)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* remove topic origin ([#1080](https://github.com/adobe/spacecat-shared/issues/1080)) ([69c0dd6](https://github.com/adobe/spacecat-shared/commit/69c0dd6ab50c520a3fd776db69a951a13ace9f1d))
|
|
14
|
+
|
|
1
15
|
# [@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)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/spacecat-shared-utils",
|
|
3
|
-
"version": "1.69.
|
|
3
|
+
"version": "1.69.3",
|
|
4
4
|
"description": "Shared modules of the Spacecat Services - utils",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@adobe/fetch": "4.2.3",
|
|
56
|
-
"@aws-sdk/client-s3": "3.
|
|
57
|
-
"@aws-sdk/client-sqs": "3.
|
|
56
|
+
"@aws-sdk/client-s3": "3.922.0",
|
|
57
|
+
"@aws-sdk/client-sqs": "3.922.0",
|
|
58
58
|
"@json2csv/plainjs": "7.0.6",
|
|
59
59
|
"aws-xray-sdk": "3.11.0",
|
|
60
60
|
"cheerio": "1.1.2",
|
package/src/schemas.js
CHANGED
|
@@ -78,13 +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
|
-
topicOrigin: z.union([z.literal('human'), z.literal('ai'), z.string()]).optional(),
|
|
88
86
|
});
|
|
89
87
|
|
|
90
88
|
export const llmoConfig = z.object({
|