@adobe/spacecat-shared-data-access 3.20.0 → 3.21.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.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)
2
+
3
+ ### Features
4
+
5
+ * **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))
6
+
7
+ ## [@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)
8
+
9
+ ### Bug Fixes
10
+
11
+ * **data-access:** supabase/postgrest-js major dependency bump to v2 ([#1439](https://github.com/adobe/spacecat-shared/issues/1439)) ([29ca15b](https://github.com/adobe/spacecat-shared/commit/29ca15b7e23c95af43a14536e6e4917d423ec71e))
12
+
1
13
  ## [@adobe/spacecat-shared-data-access-v3.20.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.19.0...@adobe/spacecat-shared-data-access-v3.20.0) (2026-03-13)
2
14
 
3
15
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spacecat-shared-data-access",
3
- "version": "3.20.0",
3
+ "version": "3.21.0",
4
4
  "description": "Shared modules of the Spacecat Services - Data Access",
5
5
  "type": "module",
6
6
  "engines": {
@@ -42,7 +42,7 @@
42
42
  "dependencies": {
43
43
  "@adobe/fetch": "^4.2.3",
44
44
  "@adobe/spacecat-shared-utils": "1.101.0",
45
- "@supabase/postgrest-js": "^1.21.4",
45
+ "@supabase/postgrest-js": "2.99.1",
46
46
  "@aws-sdk/client-s3": "^3.940.0",
47
47
  "@types/joi": "17.2.3",
48
48
  "aws-xray-sdk": "3.12.0",
@@ -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: {