@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 +1 -1
- package/utils/strapi-source/schema/collections/article.d.ts +1 -1
- package/utils/strapi-source/schema/collections/article.js +2 -1
- package/utils/strapi-source/schema/collections/page.d.ts +1 -1
- package/utils/strapi-source/schema/collections/page.js +1 -0
- package/utils/strapi-source/strapi-navigation/index.js +1 -1
package/package.json
CHANGED
|
@@ -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
|
|
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";
|
|
@@ -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";
|
|
@@ -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;
|