@adobe/spacecat-shared-data-access 3.20.1 → 3.22.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,15 @@
|
|
|
1
|
+
## [@adobe/spacecat-shared-data-access-v3.22.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.21.0...@adobe/spacecat-shared-data-access-v3.22.0) (2026-03-17)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* support boolean and timestamp for edgeOptimizeConfig.enabled ([#1441](https://github.com/adobe/spacecat-shared/issues/1441)) ([2fb173d](https://github.com/adobe/spacecat-shared/commit/2fb173da507df98c0a64977f90181ec501492c88))
|
|
6
|
+
|
|
7
|
+
## [@adobe/spacecat-shared-data-access-v3.21.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.20.1...@adobe/spacecat-shared-data-access-v3.21.0) (2026-03-16)
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **CWV:** add jiraLink to CWV suggestion schema and fix metric validation ([#1425](https://github.com/adobe/spacecat-shared/issues/1425)) ([d0429e0](https://github.com/adobe/spacecat-shared/commit/d0429e0e1b09348f31d5bfd21675b560bfb004e8))
|
|
12
|
+
|
|
1
13
|
## [@adobe/spacecat-shared-data-access-v3.20.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.20.0...@adobe/spacecat-shared-data-access-v3.20.1) (2026-03-13)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -366,7 +366,12 @@ export const configSchema = Joi.object({
|
|
|
366
366
|
forwardedHost: Joi.string().optional(),
|
|
367
367
|
}).optional(),
|
|
368
368
|
edgeOptimizeConfig: Joi.object({
|
|
369
|
-
enabled: Joi.
|
|
369
|
+
enabled: Joi.alternatives()
|
|
370
|
+
.try(
|
|
371
|
+
Joi.boolean(),
|
|
372
|
+
Joi.number(),
|
|
373
|
+
)
|
|
374
|
+
.optional(),
|
|
370
375
|
opted: Joi.number().optional(),
|
|
371
376
|
stagingDomains: Joi.array().items(
|
|
372
377
|
Joi.object({
|
|
@@ -135,16 +135,17 @@ export const DATA_SCHEMAS = {
|
|
|
135
135
|
pageviews: Joi.number().optional(),
|
|
136
136
|
clsCount: Joi.number().optional(),
|
|
137
137
|
ttfbCount: Joi.number().optional(),
|
|
138
|
-
lcp: Joi.number().optional(),
|
|
138
|
+
lcp: Joi.number().allow(null).optional(),
|
|
139
139
|
inpCount: Joi.number().optional(),
|
|
140
140
|
inp: Joi.number().optional(),
|
|
141
|
-
ttfb: Joi.number().optional(),
|
|
142
|
-
cls: Joi.number().optional(),
|
|
141
|
+
ttfb: Joi.number().allow(null).optional(),
|
|
142
|
+
cls: Joi.number().allow(null).optional(),
|
|
143
143
|
lcpCount: Joi.number().optional(),
|
|
144
144
|
organic: Joi.number().optional(),
|
|
145
145
|
}).unknown(true),
|
|
146
146
|
).required(),
|
|
147
147
|
issues: Joi.array().items(Joi.object()).required(),
|
|
148
|
+
jiraLink: Joi.string().uri().allow(null).optional(),
|
|
148
149
|
aggregationKey: Joi.string().allow(null).optional(),
|
|
149
150
|
}).unknown(true),
|
|
150
151
|
projections: {
|