diff --git a/src/api/article/content-types/article/schema.json b/src/api/article/content-types/article/schema.json index 905fe3a..d8fd4e2 100644 --- a/src/api/article/content-types/article/schema.json +++ b/src/api/article/content-types/article/schema.json @@ -50,6 +50,9 @@ }, "date": { "type": "string" + }, + "chapeau": { + "type": "text" } } } diff --git a/types/generated/contentTypes.d.ts b/types/generated/contentTypes.d.ts index 7aa1814..2bcb495 100644 --- a/types/generated/contentTypes.d.ts +++ b/types/generated/contentTypes.d.ts @@ -388,6 +388,7 @@ export interface ApiArticleArticle extends Schema.CollectionType { } >; date: Attribute.String; + chapeau: Attribute.Text; createdAt: Attribute.DateTime; updatedAt: Attribute.DateTime; publishedAt: Attribute.DateTime;