@adobe/spacecat-shared-ahrefs-client 1.8.0 → 1.8.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 +7 -0
- package/package.json +1 -1
- package/src/index.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [@adobe/spacecat-shared-ahrefs-client-v1.8.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-ahrefs-client-v1.8.0...@adobe/spacecat-shared-ahrefs-client-v1.8.1) (2025-06-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* log error object ([#783](https://github.com/adobe/spacecat-shared/issues/783)) ([66285c1](https://github.com/adobe/spacecat-shared/commit/66285c14c4b7f022ad9bfd447025732fd993b644))
|
|
7
|
+
|
|
1
8
|
# [@adobe/spacecat-shared-ahrefs-client-v1.8.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-ahrefs-client-v1.7.1...@adobe/spacecat-shared-ahrefs-client-v1.8.0) (2025-06-02)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -32,7 +32,7 @@ export const ORGANIC_KEYWORDS_FIELDS = /** @type {const} */ ([
|
|
|
32
32
|
'is_informational',
|
|
33
33
|
'is_commercial',
|
|
34
34
|
'is_transactional',
|
|
35
|
-
'
|
|
35
|
+
'serp_features',
|
|
36
36
|
]);
|
|
37
37
|
|
|
38
38
|
export default class AhrefsAPIClient {
|
|
@@ -99,7 +99,7 @@ export default class AhrefsAPIClient {
|
|
|
99
99
|
fullAuditRef,
|
|
100
100
|
};
|
|
101
101
|
} catch (e) {
|
|
102
|
-
this.log.error(`Error parsing Ahrefs API response: ${e.message}
|
|
102
|
+
this.log.error(`Error parsing Ahrefs API response: ${e.message}`, e);
|
|
103
103
|
throw new Error(`Error parsing Ahrefs API response: ${e.message}`);
|
|
104
104
|
}
|
|
105
105
|
}
|