@adobe/spacecat-shared-data-access 2.84.0 → 2.85.1
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 +2 -2
- package/src/models/audit/audit.model.js +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [@adobe/spacecat-shared-data-access-v2.85.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.85.0...@adobe/spacecat-shared-data-access-v2.85.1) (2025-11-18)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update shared utils in data access ([#1145](https://github.com/adobe/spacecat-shared/issues/1145)) ([5e38e70](https://github.com/adobe/spacecat-shared/commit/5e38e7032cf1e95a363c6fab67d67065a50ea7a0))
|
|
7
|
+
|
|
8
|
+
# [@adobe/spacecat-shared-data-access-v2.85.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.84.0...@adobe/spacecat-shared-data-access-v2.85.0) (2025-11-18)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **data-access:** add new handlers to audit model ([#1141](https://github.com/adobe/spacecat-shared/issues/1141)) ([73e531b](https://github.com/adobe/spacecat-shared/commit/73e531b28773378defbef0f905f3db8e846cacc1))
|
|
14
|
+
|
|
1
15
|
# [@adobe/spacecat-shared-data-access-v2.84.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.83.2...@adobe/spacecat-shared-data-access-v2.84.0) (2025-11-17)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/spacecat-shared-data-access",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.85.1",
|
|
4
4
|
"description": "Shared modules of the Spacecat Services - Data Access",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@adobe/spacecat-shared-utils": "1.
|
|
41
|
+
"@adobe/spacecat-shared-utils": "1.74.0",
|
|
42
42
|
"@aws-sdk/client-dynamodb": "3.932.0",
|
|
43
43
|
"@aws-sdk/lib-dynamodb": "3.932.0",
|
|
44
44
|
"@types/joi": "17.2.3",
|
|
@@ -72,6 +72,10 @@ class Audit extends BaseModel {
|
|
|
72
72
|
SUMMARIZATION: 'summarization',
|
|
73
73
|
PAGE_TYPE_DETECTION: 'page-type-detection',
|
|
74
74
|
FAQS: 'faqs',
|
|
75
|
+
CDN_LOGS_ANALYSIS: 'cdn-logs-analysis',
|
|
76
|
+
CDN_LOGS_REPORT: 'cdn-logs-report',
|
|
77
|
+
LLMO_REFERRAL_TRAFFIC: 'llmo-referral-traffic',
|
|
78
|
+
PAGE_INTENT: 'page-intent',
|
|
75
79
|
};
|
|
76
80
|
|
|
77
81
|
static AUDIT_TYPE_PROPERTIES = {
|