@adobe/spacecat-shared-data-access 2.51.0 → 2.52.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/audit/audit.model.js +6 -2
- package/src/models/site/config.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [@adobe/spacecat-shared-data-access-v2.52.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.51.1...@adobe/spacecat-shared-data-access-v2.52.0) (2025-08-12)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* support extra properties for messages audit -> import ([#911](https://github.com/adobe/spacecat-shared/issues/911)) ([ebbccc1](https://github.com/adobe/spacecat-shared/commit/ebbccc17cdfa02a4f046c705a4410e697894cdb8))
|
|
7
|
+
|
|
8
|
+
# [@adobe/spacecat-shared-data-access-v2.51.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.51.0...@adobe/spacecat-shared-data-access-v2.51.1) (2025-08-12)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* naming of the new llmo prompts import ([#907](https://github.com/adobe/spacecat-shared/issues/907)) ([e3a6703](https://github.com/adobe/spacecat-shared/commit/e3a6703ac7a052946b93707179c237274ec255c6))
|
|
14
|
+
|
|
1
15
|
# [@adobe/spacecat-shared-data-access-v2.51.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.50.0...@adobe/spacecat-shared-data-access-v2.51.0) (2025-08-12)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -97,8 +97,10 @@ class Audit extends BaseModel {
|
|
|
97
97
|
* @param {object} stepResult - The result of the audit step.
|
|
98
98
|
* @param {string} stepResult.type - The import type to trigger.
|
|
99
99
|
* @param {string} stepResult.siteId - The site ID for which the import is triggered.
|
|
100
|
-
* @param {string} stepResult.pageUrl - The page URL for which the import is triggered.
|
|
101
|
-
* @param {
|
|
100
|
+
* @param {string} [stepResult.pageUrl] - The page URL for which the import is triggered.
|
|
101
|
+
* @param {string} [stepResult.startDate] - The start date for the import (optional).
|
|
102
|
+
* @param {string} [stepResult.endDate] - The end date for the import (optional).
|
|
103
|
+
* @param {object[]}[ stepResult.urlConfigs] - The list of URL configs for which the import is
|
|
102
104
|
* triggered.
|
|
103
105
|
* @param {object} auditContext - The audit context.
|
|
104
106
|
* @param {object} auditContext.next - The next audit step to run.
|
|
@@ -114,6 +116,8 @@ class Audit extends BaseModel {
|
|
|
114
116
|
type: stepResult.type,
|
|
115
117
|
siteId: stepResult.siteId,
|
|
116
118
|
pageUrl: stepResult.pageUrl,
|
|
119
|
+
startDate: stepResult.startDate,
|
|
120
|
+
endDate: stepResult.endDate,
|
|
117
121
|
urlConfigs: stepResult.urlConfigs,
|
|
118
122
|
allowCache: true,
|
|
119
123
|
auditContext,
|
|
@@ -14,7 +14,7 @@ import Joi from 'joi';
|
|
|
14
14
|
import { getLogger } from '../../util/logger-registry.js';
|
|
15
15
|
|
|
16
16
|
export const IMPORT_TYPES = {
|
|
17
|
-
LLMO_QUESTIONS_IMPORT_TYPE: 'llmo-prompts-
|
|
17
|
+
LLMO_QUESTIONS_IMPORT_TYPE: 'llmo-prompts-ahrefs',
|
|
18
18
|
ORGANIC_KEYWORDS: 'organic-keywords',
|
|
19
19
|
ORGANIC_KEYWORDS_NONBRANDED: 'organic-keywords-nonbranded',
|
|
20
20
|
ORGANIC_KEYWORDS_AI_OVERVIEW: 'organic-keywords-ai-overview',
|