@adobe/spacecat-shared-utils 1.93.0 → 1.94.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/strategy-schema.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [@adobe/spacecat-shared-utils-v1.94.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.93.0...@adobe/spacecat-shared-utils-v1.94.0) (2026-02-11)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* store owner of the strategy ([#1339](https://github.com/adobe/spacecat-shared/issues/1339)) ([8d7ea96](https://github.com/adobe/spacecat-shared/commit/8d7ea968315a17a1f614f7cb61e91f997355885b))
|
|
7
|
+
|
|
1
8
|
# [@adobe/spacecat-shared-utils-v1.93.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-utils-v1.92.0...@adobe/spacecat-shared-utils-v1.93.0) (2026-02-10)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/src/strategy-schema.js
CHANGED
|
@@ -76,6 +76,7 @@ const strategy = z.object({
|
|
|
76
76
|
platform: nonEmptyString,
|
|
77
77
|
opportunities: z.array(strategyOpportunity),
|
|
78
78
|
createdAt: z.string(), // ISO 8601 date string
|
|
79
|
+
createdBy: z.string().optional(), // Email of strategy creator/owner
|
|
79
80
|
completedAt: z.string().optional(), // ISO 8601 date string
|
|
80
81
|
goalType: strategyGoalType.optional(),
|
|
81
82
|
});
|