@adobe/spacecat-shared-data-access 3.41.0 → 3.43.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 +12 -0
- package/package.json +1 -1
- package/src/models/site/config.js +9 -16
- package/src/models/site/index.d.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [@adobe/spacecat-shared-data-access-v3.43.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.42.0...@adobe/spacecat-shared-data-access-v3.43.0) (2026-04-02)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* remove llmo-prompts-ahrefs from shared config ([#1504](https://github.com/adobe/spacecat-shared/issues/1504)) ([e8628f2](https://github.com/adobe/spacecat-shared/commit/e8628f21e48e2f1bf89622c5004587165cd62673))
|
|
6
|
+
|
|
7
|
+
## [@adobe/spacecat-shared-data-access-v3.42.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.41.0...@adobe/spacecat-shared-data-access-v3.42.0) (2026-04-02)
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **data-access:** update default import source from ahrefs to seo ([#1499](https://github.com/adobe/spacecat-shared/issues/1499)) ([99f66c0](https://github.com/adobe/spacecat-shared/commit/99f66c020e02469b84192ff354a9cf9a862c831f))
|
|
12
|
+
|
|
1
13
|
## [@adobe/spacecat-shared-data-access-v3.41.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v3.40.0...@adobe/spacecat-shared-data-access-v3.41.0) (2026-04-01)
|
|
2
14
|
|
|
3
15
|
### Features
|
package/package.json
CHANGED
|
@@ -17,7 +17,6 @@ import Joi from 'joi';
|
|
|
17
17
|
import { getLogger } from '../../util/logger-registry.js';
|
|
18
18
|
|
|
19
19
|
export const IMPORT_TYPES = {
|
|
20
|
-
LLMO_QUESTIONS_IMPORT_TYPE: 'llmo-prompts-ahrefs',
|
|
21
20
|
ORGANIC_KEYWORDS: 'organic-keywords',
|
|
22
21
|
ORGANIC_KEYWORDS_NONBRANDED: 'organic-keywords-nonbranded',
|
|
23
22
|
ORGANIC_KEYWORDS_AI_OVERVIEW: 'organic-keywords-ai-overview',
|
|
@@ -42,7 +41,7 @@ export const IMPORT_DESTINATIONS = {
|
|
|
42
41
|
};
|
|
43
42
|
|
|
44
43
|
export const IMPORT_SOURCES = {
|
|
45
|
-
|
|
44
|
+
SEO: 'seo',
|
|
46
45
|
GSC: 'google',
|
|
47
46
|
RUM: 'rum',
|
|
48
47
|
};
|
|
@@ -83,12 +82,6 @@ const IMPORT_BASE_KEYS = {
|
|
|
83
82
|
};
|
|
84
83
|
|
|
85
84
|
export const IMPORT_TYPE_SCHEMAS = {
|
|
86
|
-
[IMPORT_TYPES.LLMO_QUESTIONS_IMPORT_TYPE]: Joi.object({
|
|
87
|
-
type: Joi.string().valid(IMPORT_TYPES.LLMO_QUESTIONS_IMPORT_TYPE).required(),
|
|
88
|
-
enabled: Joi.boolean().default(true),
|
|
89
|
-
limit: Joi.number().integer().min(1).max(100)
|
|
90
|
-
.optional(),
|
|
91
|
-
}),
|
|
92
85
|
[IMPORT_TYPES.ORGANIC_KEYWORDS]: Joi.object({
|
|
93
86
|
type: Joi.string().valid(IMPORT_TYPES.ORGANIC_KEYWORDS).required(),
|
|
94
87
|
...IMPORT_BASE_KEYS,
|
|
@@ -186,37 +179,37 @@ export const DEFAULT_IMPORT_CONFIGS = {
|
|
|
186
179
|
'organic-keywords': {
|
|
187
180
|
type: 'organic-keywords',
|
|
188
181
|
destinations: ['default'],
|
|
189
|
-
sources: ['
|
|
182
|
+
sources: ['seo'],
|
|
190
183
|
enabled: true,
|
|
191
184
|
},
|
|
192
185
|
'organic-keywords-nonbranded': {
|
|
193
186
|
type: 'organic-keywords-nonbranded',
|
|
194
187
|
destinations: ['default'],
|
|
195
|
-
sources: ['
|
|
188
|
+
sources: ['seo'],
|
|
196
189
|
enabled: true,
|
|
197
190
|
},
|
|
198
191
|
'organic-keywords-ai-overview': {
|
|
199
192
|
type: 'organic-keywords-ai-overview',
|
|
200
193
|
destinations: ['default'],
|
|
201
|
-
sources: ['
|
|
194
|
+
sources: ['seo'],
|
|
202
195
|
enabled: true,
|
|
203
196
|
},
|
|
204
197
|
'organic-keywords-feature-snippets': {
|
|
205
198
|
type: 'organic-keywords-feature-snippets',
|
|
206
199
|
destinations: ['default'],
|
|
207
|
-
sources: ['
|
|
200
|
+
sources: ['seo'],
|
|
208
201
|
enabled: true,
|
|
209
202
|
},
|
|
210
203
|
'organic-keywords-questions': {
|
|
211
204
|
type: 'organic-keywords-questions',
|
|
212
205
|
destinations: ['default'],
|
|
213
|
-
sources: ['
|
|
206
|
+
sources: ['seo'],
|
|
214
207
|
enabled: true,
|
|
215
208
|
},
|
|
216
209
|
'organic-traffic': {
|
|
217
210
|
type: 'organic-traffic',
|
|
218
211
|
destinations: ['default'],
|
|
219
|
-
sources: ['
|
|
212
|
+
sources: ['seo'],
|
|
220
213
|
enabled: true,
|
|
221
214
|
},
|
|
222
215
|
'all-traffic': {
|
|
@@ -228,14 +221,14 @@ export const DEFAULT_IMPORT_CONFIGS = {
|
|
|
228
221
|
'top-pages': {
|
|
229
222
|
type: 'top-pages',
|
|
230
223
|
destinations: ['default'],
|
|
231
|
-
sources: ['
|
|
224
|
+
sources: ['seo'],
|
|
232
225
|
enabled: true,
|
|
233
226
|
geo: 'global',
|
|
234
227
|
},
|
|
235
228
|
'ahref-paid-pages': {
|
|
236
229
|
type: 'ahref-paid-pages',
|
|
237
230
|
destinations: ['default'],
|
|
238
|
-
sources: ['
|
|
231
|
+
sources: ['seo'],
|
|
239
232
|
enabled: true,
|
|
240
233
|
},
|
|
241
234
|
'cwv-daily': {
|
|
@@ -57,13 +57,13 @@ export type IMPORT_DESTINATIONS = {
|
|
|
57
57
|
};
|
|
58
58
|
|
|
59
59
|
export type IMPORT_SOURCES = {
|
|
60
|
-
readonly
|
|
60
|
+
readonly SEO: 'seo';
|
|
61
61
|
readonly GSC: 'google';
|
|
62
62
|
};
|
|
63
63
|
|
|
64
64
|
export type ImportType = 'organic-keywords' | 'organic-traffic' | 'top-pages' | 'top-forms' | 'ahref-paid-pages' ;
|
|
65
65
|
export type ImportDestination = 'default';
|
|
66
|
-
export type ImportSource = '
|
|
66
|
+
export type ImportSource = 'seo' | 'google';
|
|
67
67
|
|
|
68
68
|
export interface ImportConfig {
|
|
69
69
|
type: ImportType;
|