@adobe/mysticat-shared-seo-client 1.3.1 → 1.5.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,15 @@
1
+ ## [@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)
2
+
3
+ ### Features
4
+
5
+ * **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))
6
+
7
+ ## [@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)
8
+
9
+ ### Features
10
+
11
+ * **ci:** migrate npm publishing to OIDC Trusted Publishers ([#1592](https://github.com/adobe/spacecat-shared/issues/1592)) ([7556295](https://github.com/adobe/spacecat-shared/commit/75562957a223b5783a97998c8dc12eebd3e4db34))
12
+
1
13
  ## [@adobe/mysticat-shared-seo-client-v1.3.1](https://github.com/adobe/spacecat-shared/compare/@adobe/mysticat-shared-seo-client-v1.3.0...@adobe/mysticat-shared-seo-client-v1.3.1) (2026-05-14)
2
14
 
3
15
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/mysticat-shared-seo-client",
3
- "version": "1.3.1",
3
+ "version": "1.5.0",
4
4
  "description": "Shared modules of the SpaceCat Services - SEO Client",
5
5
  "type": "module",
6
6
  "engines": {
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: {