@adobe/spacecat-shared-ahrefs-client 1.5.1 → 1.5.3

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-ahrefs-client-v1.5.3](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-ahrefs-client-v1.5.2...@adobe/spacecat-shared-ahrefs-client-v1.5.3) (2024-09-14)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update external fixes ([#369](https://github.com/adobe/spacecat-shared/issues/369)) ([5412d7b](https://github.com/adobe/spacecat-shared/commit/5412d7be554b9940d43b39b18f2913146e866846))
7
+
8
+ # [@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)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **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))
14
+
1
15
  # [@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
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/spacecat-shared-ahrefs-client",
3
- "version": "1.5.1",
3
+ "version": "1.5.3",
4
4
  "description": "Shared modules of the Spacecat Services - Ahrefs Client",
5
5
  "type": "module",
6
6
  "engines": {
@@ -42,8 +42,8 @@
42
42
  "chai": "5.1.1",
43
43
  "chai-as-promised": "8.0.0",
44
44
  "nock": "13.5.5",
45
- "sinon": "18.0.0",
45
+ "sinon": "18.0.1",
46
46
  "sinon-chai": "4.0.0",
47
- "typescript": "5.5.4"
47
+ "typescript": "5.6.2"
48
48
  }
49
49
  }
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] },