@adobe/spacecat-shared-ahrefs-client 1.5.1 → 1.5.2
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 +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [@adobe/spacecat-shared-ahrefs-client-v1.5.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-ahrefs-client-v1.5.1...@adobe/spacecat-shared-ahrefs-client-v1.5.2) (2024-09-04)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **ahrefs-client:** broken backlinks filter adjustment: do not limit to is do follow and is content ([#357](https://github.com/adobe/spacecat-shared/issues/357)) ([b548336](https://github.com/adobe/spacecat-shared/commit/b54833615d480a567fc87e17009f6c5e87110179))
|
|
7
|
+
|
|
1
8
|
# [@adobe/spacecat-shared-ahrefs-client-v1.5.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-ahrefs-client-v1.5.0...@adobe/spacecat-shared-ahrefs-client-v1.5.1) (2024-08-24)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -83,8 +83,6 @@ export default class AhrefsAPIClient {
|
|
|
83
83
|
async getBrokenBacklinks(url, limit = 50) {
|
|
84
84
|
const filter = {
|
|
85
85
|
and: [
|
|
86
|
-
{ field: 'is_dofollow', is: ['eq', 1] },
|
|
87
|
-
{ field: 'is_content', is: ['eq', 1] },
|
|
88
86
|
{ field: 'domain_rating_source', is: ['gte', 29.5] },
|
|
89
87
|
{ field: 'traffic_domain', is: ['gte', 500] },
|
|
90
88
|
{ field: 'links_external', is: ['lte', 300] },
|