@adobe/spacecat-shared-data-access 2.50.0 → 2.51.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
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [@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)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* 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))
|
|
7
|
+
|
|
8
|
+
# [@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)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* removed slash from reports path ([#906](https://github.com/adobe/spacecat-shared/issues/906)) ([44ace99](https://github.com/adobe/spacecat-shared/commit/44ace9999fc2d5d2fc332b03cae7ceafbd9a939a))
|
|
14
|
+
|
|
1
15
|
# [@adobe/spacecat-shared-data-access-v2.50.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-data-access-v2.49.0...@adobe/spacecat-shared-data-access-v2.50.0) (2025-08-12)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -25,7 +25,7 @@ class ReportCollection extends BaseCollection {
|
|
|
25
25
|
|
|
26
26
|
// If storagePath is empty string (default value), compute it automatically
|
|
27
27
|
if (report.getStoragePath() === '') {
|
|
28
|
-
const storagePath =
|
|
28
|
+
const storagePath = `reports/${item.siteId}/${item.reportType}/${report.getId()}/`;
|
|
29
29
|
report.setStoragePath(storagePath);
|
|
30
30
|
await report.save();
|
|
31
31
|
}
|
|
@@ -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',
|