diff --git a/src/components/about-page/ceo-message.json b/src/components/about-page/ceo-message.json index b3d5c08..3de01e2 100644 --- a/src/components/about-page/ceo-message.json +++ b/src/components/about-page/ceo-message.json @@ -1,18 +1,19 @@ { "collectionName": "components_about_page_ceo_messages", "info": { - "displayName": "CEO Message" + "displayName": "CEO Message", + "description": "" }, "options": {}, "attributes": { "Title": { "type": "string" }, - "name": { + "Name": { "type": "string" }, "Text": { - "type": "string" + "type": "text" } } } diff --git a/src/components/section/title-with-text.json b/src/components/section/title-with-text.json index f8ef8ff..c2625d3 100644 --- a/src/components/section/title-with-text.json +++ b/src/components/section/title-with-text.json @@ -10,7 +10,7 @@ "type": "string" }, "Text": { - "type": "string" + "type": "text" } } } diff --git a/src/extensions/documentation/documentation/1.0.0/full_documentation.json b/src/extensions/documentation/documentation/1.0.0/full_documentation.json index bc6c702..f690bb4 100644 --- a/src/extensions/documentation/documentation/1.0.0/full_documentation.json +++ b/src/extensions/documentation/documentation/1.0.0/full_documentation.json @@ -14,7 +14,7 @@ "name": "Apache 2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" }, - "x-generation-date": "2024-03-14T17:55:21.780Z" + "x-generation-date": "2024-03-14T18:34:06.485Z" }, "x-strapi-config": { "path": "/documentation", @@ -656,7 +656,7 @@ "Title": { "type": "string" }, - "name": { + "Name": { "type": "string" }, "Text": { diff --git a/types/generated/components.d.ts b/types/generated/components.d.ts index 09a824d..dba9c60 100644 --- a/types/generated/components.d.ts +++ b/types/generated/components.d.ts @@ -17,11 +17,12 @@ export interface AboutPageCeoMessage extends Schema.Component { collectionName: 'components_about_page_ceo_messages'; info: { displayName: 'CEO Message'; + description: ''; }; attributes: { Title: Attribute.String; - name: Attribute.String; - Text: Attribute.String; + Name: Attribute.String; + Text: Attribute.Text; }; } @@ -33,7 +34,7 @@ export interface SectionTitleWithText extends Schema.Component { }; attributes: { Title: Attribute.String; - Text: Attribute.String; + Text: Attribute.Text; }; }