@adobe/spacecat-shared-ahrefs-client 1.3.1 → 1.4.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 CHANGED
@@ -1,3 +1,17 @@
1
+ # [@adobe/spacecat-shared-ahrefs-client-v1.4.0](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-ahrefs-client-v1.3.2...@adobe/spacecat-shared-ahrefs-client-v1.4.0) (2024-07-25)
2
+
3
+
4
+ ### Features
5
+
6
+ * update broken backlinks filter for ahrefs ([#302](https://github.com/adobe/spacecat-shared/issues/302)) ([2dd383b](https://github.com/adobe/spacecat-shared/commit/2dd383b48ed8490be1fd385af946c0a1dfc84aca))
7
+
8
+ # [@adobe/spacecat-shared-ahrefs-client-v1.3.2](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-ahrefs-client-v1.3.1...@adobe/spacecat-shared-ahrefs-client-v1.3.2) (2024-07-08)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **deps:** update external fixes ([#284](https://github.com/adobe/spacecat-shared/issues/284)) ([f4fe169](https://github.com/adobe/spacecat-shared/commit/f4fe1699c432637f1217198ad7f4a1cde6deeb76))
14
+
1
15
  # [@adobe/spacecat-shared-ahrefs-client-v1.3.1](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-ahrefs-client-v1.3.0...@adobe/spacecat-shared-ahrefs-client-v1.3.1) (2024-06-27)
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.3.1",
3
+ "version": "1.4.0",
4
4
  "description": "Shared modules of the Spacecat Services - Ahrefs Client",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -40,6 +40,6 @@
40
40
  "nock": "13.5.4",
41
41
  "sinon": "18.0.0",
42
42
  "sinon-chai": "3.7.0",
43
- "typescript": "5.5.2"
43
+ "typescript": "5.5.3"
44
44
  }
45
45
  }
package/src/index.js CHANGED
@@ -137,8 +137,6 @@ export default class AhrefsAPIClient {
137
137
  async getBacklinks(url, limit = 200) {
138
138
  const filter = {
139
139
  and: [
140
- { field: 'is_dofollow', is: ['eq', 1] },
141
- { field: 'is_content', is: ['eq', 1] },
142
140
  { field: 'domain_rating_source', is: ['gte', 29.5] },
143
141
  { field: 'traffic_domain', is: ['gte', 500] },
144
142
  { field: 'links_external', is: ['lte', 300] },