@adobe/mysticat-shared-seo-client 1.4.0 → 1.5.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,16 @@
1
+ ## [@adobe/mysticat-shared-seo-client-v1.5.1](https://github.com/adobe/spacecat-shared/compare/@adobe/mysticat-shared-seo-client-v1.5.0...@adobe/mysticat-shared-seo-client-v1.5.1) (2026-05-29)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **deps:** update adobe fixes ([#1609](https://github.com/adobe/spacecat-shared/issues/1609)) ([ccdcc2b](https://github.com/adobe/spacecat-shared/commit/ccdcc2b88c1b03e5c58ed682daaaadb382638395))
6
+ * **deps:** update external major (major) ([#1611](https://github.com/adobe/spacecat-shared/issues/1611)) ([5a80797](https://github.com/adobe/spacecat-shared/commit/5a807979187f1ebcc32b088faee9165aa38cc461))
7
+
8
+ ## [@adobe/mysticat-shared-seo-client-v1.5.0](https://github.com/adobe/spacecat-shared/compare/@adobe/mysticat-shared-seo-client-v1.4.0...@adobe/mysticat-shared-seo-client-v1.5.0) (2026-05-27)
9
+
10
+ ### Features
11
+
12
+ * **seo-client:** add ad description and visible URL to paid keywords ([#1631](https://github.com/adobe/spacecat-shared/issues/1631)) ([474e200](https://github.com/adobe/spacecat-shared/commit/474e2004c684ed614ddd2a28d87e3e461f5c280d))
13
+
1
14
  ## [@adobe/mysticat-shared-seo-client-v1.4.0](https://github.com/adobe/spacecat-shared/compare/@adobe/mysticat-shared-seo-client-v1.3.1...@adobe/mysticat-shared-seo-client-v1.4.0) (2026-05-21)
2
15
 
3
16
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/mysticat-shared-seo-client",
3
- "version": "1.4.0",
3
+ "version": "1.5.1",
4
4
  "description": "Shared modules of the SpaceCat Services - SEO Client",
5
5
  "type": "module",
6
6
  "engines": {
@@ -35,7 +35,7 @@
35
35
  },
36
36
  "dependencies": {
37
37
  "@adobe/fetch": "4.3.0",
38
- "@adobe/helix-universal": "5.4.1",
38
+ "@adobe/helix-universal": "5.4.2",
39
39
  "@adobe/spacecat-shared-utils": "1.81.1",
40
40
  "urijs": "1.19.11"
41
41
  },
@@ -43,7 +43,7 @@
43
43
  "chai": "6.2.2",
44
44
  "chai-as-promised": "8.0.2",
45
45
  "nock": "14.0.15",
46
- "sinon": "21.1.2",
46
+ "sinon": "22.0.0",
47
47
  "sinon-chai": "4.0.1",
48
48
  "typescript": "6.0.3"
49
49
  }
package/src/client.js CHANGED
@@ -442,6 +442,8 @@ export default class SeoClient {
442
442
  traffic: kw.kwTraffic,
443
443
  cpc: coerceValue(kw.Cp, 'float') ?? null,
444
444
  serp_title: kw.Tt || null,
445
+ serp_description: kw.Ds || null,
446
+ visible_url: kw.Vu || null,
445
447
  position: coerceValue(kw.Po, 'int') ?? null,
446
448
  volume: coerceValue(kw.Nq, 'int') ?? null,
447
449
  country: kw.db.toUpperCase(),
package/src/endpoints.js CHANGED
@@ -39,7 +39,7 @@ export const ENDPOINTS = {
39
39
  paidPages: {
40
40
  type: 'domain_adwords',
41
41
  path: API_PATHS.root,
42
- columns: 'Ph,Ur,Tg,Nq,Cp,Po,Tt',
42
+ columns: 'Ph,Ur,Tg,Nq,Cp,Po,Tt,Ds,Vu',
43
43
  defaultParams: { display_sort: 'tg_desc', export_escape: 1 },
44
44
  },
45
45
  metrics: {