@anywayseo/gatsby-plugin 2.10.0 → 5.11.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@anywayseo/gatsby-plugin",
3
3
  "description": "Shared config for Anywayseo sites",
4
- "version": "2.10.0",
4
+ "version": "5.11.0",
5
5
  "author": "zerg41",
6
6
  "license": "MIT",
7
7
  "publishConfig": {
@@ -1 +1 @@
1
- export declare const article = "\n # === STRAPI ARTICLE DEFINITION ===\n type StrapiArticle implements Node {\n id: ID!\n title: String!\n description: String\n slug: String!\n hub: Hub\n previewImage: Image\n minutesToRead: Int\n seo: Seo\n author: Author\n locale: String\n content: [ContentComponent]\n createdAt: Date @dateformat\n updatedAt: Date @dateformat\n }\n";
1
+ export declare const article = "\n # === STRAPI ARTICLE DEFINITION ===\n type StrapiArticle implements Node {\n id: ID!\n title: String!\n description: String\n slug: String!\n canonicalUrl: String\n seo: Seo\n hub: Hub\n previewImage: Image\n minutesToRead: Int\n author: Author\n locale: String\n content: [ContentComponent]\n createdAt: Date @dateformat\n updatedAt: Date @dateformat\n }\n";
@@ -8,10 +8,11 @@ exports.article = `
8
8
  title: String!
9
9
  description: String
10
10
  slug: String!
11
+ canonicalUrl: String
12
+ seo: Seo
11
13
  hub: Hub
12
14
  previewImage: Image
13
15
  minutesToRead: Int
14
- seo: Seo
15
16
  author: Author
16
17
  locale: String
17
18
  content: [ContentComponent]
@@ -1 +1 @@
1
- export declare const page = "\n # === STRAPI PAGE DEFINITION ===\n type StrapiPage implements Node {\n id: ID!\n locale: String\n title: String\n slug: String\n seo: Seo\n author: Author\n hub: Hub\n createdAt: Date @dateformat\n updatedAt: Date @dateformat\n content: [ContentComponent]\n }\n";
1
+ export declare const page = "\n # === STRAPI PAGE DEFINITION ===\n type StrapiPage implements Node {\n id: ID!\n locale: String\n title: String\n slug: String\n canonicalUrl: String\n seo: Seo\n author: Author\n hub: Hub\n createdAt: Date @dateformat\n updatedAt: Date @dateformat\n content: [ContentComponent]\n }\n";
@@ -8,6 +8,7 @@ exports.page = `
8
8
  locale: String
9
9
  title: String
10
10
  slug: String
11
+ canonicalUrl: String
11
12
  seo: Seo
12
13
  author: Author
13
14
  hub: Hub
@@ -10,7 +10,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.sourceStrapiNavigationNode = sourceStrapiNavigationNode;
13
- const navigationSlugs = ['header-navigation', 'footer-navigation'];
13
+ const navigationSlugs = ['header-navigation', 'footer-navigation', 'dummy-navigation'];
14
14
  function sourceStrapiNavigationNode(args, strapiClient) {
15
15
  return __awaiter(this, void 0, void 0, function* () {
16
16
  const { actions, reporter, createNodeId, createContentDigest } = args;