@anywayseo/gatsby-plugin 5.11.0 → 6.0.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": "5.11.0",
4
+ "version": "6.0.0",
5
5
  "author": "zerg41",
6
6
  "license": "MIT",
7
7
  "publishConfig": {
@@ -1 +1 @@
1
- export declare const primitives = "\n # === PRIMITIVE DEFINITIONS ===\n type Image {\n localFile: File @link(from: \"localFile\")\n alternativeText: String\n }\n\n type RichTextContent {\n data: RichTextData\n }\n\n type RichTextData {\n content: String\n }\n\n type JsonValue {\n strapi_json_value: JSON\n }\n ";
1
+ export declare const primitives = "\n # === PRIMITIVE DEFINITIONS ===\n type Image {\n localFile: File @link(from: \"localFile\")\n alternativeText: String\n width: Int\n height: Int\n }\n\n type RichTextContent {\n data: RichTextData\n }\n\n type RichTextData {\n content: String\n }\n\n type JsonValue {\n strapi_json_value: JSON\n }\n ";
@@ -6,6 +6,8 @@ exports.primitives = `
6
6
  type Image {
7
7
  localFile: File @link(from: "localFile")
8
8
  alternativeText: String
9
+ width: Int
10
+ height: Int
9
11
  }
10
12
 
11
13
  type RichTextContent {