@quintype/seo 1.49.1 → 1.49.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 CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.49.2](https://github.com/quintype/quintype-node-seo/compare/v1.49.1...v1.49.2) (2025-07-07)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * support article schema when enableNewsArticle is not set to "withoutArticleSchema" value ([#569](https://github.com/quintype/quintype-node-seo/issues/569)) ([bfacda1](https://github.com/quintype/quintype-node-seo/commit/bfacda161f4d9b2e5d220acb1c3088081c0f04ec))
11
+
5
12
  ### [1.49.1](https://github.com/quintype/quintype-node-seo/compare/v1.49.1-live-blog-meta-description.1...v1.49.1) (2025-07-01)
6
13
 
7
14
 
package/dist/index.cjs.js CHANGED
@@ -237,7 +237,7 @@ function generateStructuredData(config = {}) {
237
237
  logo: generateImageObject(config),
238
238
  sameAs: socialLinks ? Object.values(socialLinks) : []
239
239
  },
240
- enableNewsArticle: !!enableStructuredDataForNewsArticle,
240
+ enableNewsArticle: enableStructuredDataForNewsArticle,
241
241
  storyUrlAsMainEntityUrl: !!enableStructuredDataForNewsArticle,
242
242
  enableVideo: !themeConfig["structured_data_enable_video"],
243
243
  enableLiveBlog: !themeConfig["structured_data_enable_live_blog"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quintype/seo",
3
- "version": "1.49.1",
3
+ "version": "1.49.2",
4
4
  "description": "SEO Modules for Quintype",
5
5
  "main": "dist/index.cjs.js",
6
6
  "repository": "https://github.com/quintype/quintype-node-seo",
@@ -67,7 +67,7 @@ export function generateStructuredData(config = {}) {
67
67
  logo: generateImageObject(config),
68
68
  sameAs: socialLinks ? Object.values(socialLinks) : [],
69
69
  },
70
- enableNewsArticle: !!enableStructuredDataForNewsArticle,
70
+ enableNewsArticle: enableStructuredDataForNewsArticle,
71
71
  storyUrlAsMainEntityUrl: !!enableStructuredDataForNewsArticle,
72
72
  enableVideo: !themeConfig["structured_data_enable_video"],
73
73
  enableLiveBlog: !themeConfig["structured_data_enable_live_blog"],