From 8eb3b46936ff29964bab32b5cddacafe91ff9142 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20FAMIBELLE-PRONZOLA?= Date: Sun, 17 Mar 2024 23:06:22 +0100 Subject: [PATCH] Add chapeau field --- src/api/article/content-types/article/schema.json | 3 +++ types/generated/contentTypes.d.ts | 1 + 2 files changed, 4 insertions(+) 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;