@adobe/spacecat-shared-data-access 2.15.1 → 2.16.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 +14 -0
- package/package.json +1 -1
- package/src/models/site/config.js +23 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [@adobe/spacecat-shared-data-access-v2.16.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.15.2...@adobe/spacecat-shared-data-access-v2.16.0) (2025-04-24)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* Added cwv-daily and cwv-weekly import types ([#693](https://github.com/adobe/spacecat-shared/issues/693)) ([659826b](https://github.com/adobe/spacecat-shared/commit/659826b37cea03aa08f2db36a0ff7a43437c03a7))
|
|
7
|
+
|
|
8
|
+
# [@adobe/spacecat-shared-data-access-v2.15.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.15.1...@adobe/spacecat-shared-data-access-v2.15.2) (2025-04-17)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* add comments ([7b62a79](https://github.com/adobe/spacecat-shared/commit/7b62a7987d5f72f100840543870b74b9b783e721))
|
|
14
|
+
|
|
1
15
|
# [@adobe/spacecat-shared-data-access-v2.15.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.15.0...@adobe/spacecat-shared-data-access-v2.15.1) (2025-04-17)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -17,6 +17,8 @@ export const IMPORT_TYPES = {
|
|
|
17
17
|
ORGANIC_TRAFFIC: 'organic-traffic',
|
|
18
18
|
TOP_PAGES: 'top-pages',
|
|
19
19
|
ALL_TRAFFIC: 'all-traffic',
|
|
20
|
+
CWV_DAILY: 'cwv-daily',
|
|
21
|
+
CWV_WEEKLY: 'cwv-weekly',
|
|
20
22
|
};
|
|
21
23
|
|
|
22
24
|
export const IMPORT_DESTINATIONS = {
|
|
@@ -61,6 +63,14 @@ export const IMPORT_TYPE_SCHEMAS = {
|
|
|
61
63
|
limit: Joi.number().integer().min(1).max(2000)
|
|
62
64
|
.optional(),
|
|
63
65
|
}),
|
|
66
|
+
[IMPORT_TYPES.CWV_DAILY]: Joi.object({
|
|
67
|
+
type: Joi.string().valid(IMPORT_TYPES.CWV_DAILY).required(),
|
|
68
|
+
...IMPORT_BASE_KEYS,
|
|
69
|
+
}),
|
|
70
|
+
[IMPORT_TYPES.CWV_WEEKLY]: Joi.object({
|
|
71
|
+
type: Joi.string().valid(IMPORT_TYPES.CWV_WEEKLY).required(),
|
|
72
|
+
...IMPORT_BASE_KEYS,
|
|
73
|
+
}),
|
|
64
74
|
};
|
|
65
75
|
|
|
66
76
|
export const DEFAULT_IMPORT_CONFIGS = {
|
|
@@ -89,6 +99,18 @@ export const DEFAULT_IMPORT_CONFIGS = {
|
|
|
89
99
|
enabled: true,
|
|
90
100
|
geo: 'global',
|
|
91
101
|
},
|
|
102
|
+
'cwv-daily': {
|
|
103
|
+
type: 'cwv-daily',
|
|
104
|
+
destinations: ['default'],
|
|
105
|
+
sources: ['rum'],
|
|
106
|
+
enabled: true,
|
|
107
|
+
},
|
|
108
|
+
'cwv-weekly': {
|
|
109
|
+
type: 'cwv-weekly',
|
|
110
|
+
destinations: ['default'],
|
|
111
|
+
sources: ['rum'],
|
|
112
|
+
enabled: true,
|
|
113
|
+
},
|
|
92
114
|
};
|
|
93
115
|
|
|
94
116
|
export const configSchema = Joi.object({
|
|
@@ -108,7 +130,7 @@ export const configSchema = Joi.object({
|
|
|
108
130
|
overrideBaseURL: Joi.string().uri().optional(),
|
|
109
131
|
}).optional(),
|
|
110
132
|
contentAiConfig: Joi.object({
|
|
111
|
-
index: Joi.string().
|
|
133
|
+
index: Joi.string().optional(),
|
|
112
134
|
}).optional(),
|
|
113
135
|
handlers: Joi.object().pattern(Joi.string(), Joi.object({
|
|
114
136
|
mentions: Joi.object().pattern(Joi.string(), Joi.array().items(Joi.string())),
|