From 719b4c7905436e01f1943668a1203b82d3e6ca1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20FAMIBELLE-PRONZOLA?= Date: Sun, 5 Jul 2026 01:18:44 +0400 Subject: [PATCH] =?UTF-8?q?chore:=20r=C3=A9g=C3=A9n=C3=A9rer=20les=20types?= =?UTF-8?q?=20Strapi=20(champs=20bokante)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- types/generated/contentTypes.d.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/types/generated/contentTypes.d.ts b/types/generated/contentTypes.d.ts index 527838e..da8a7d3 100644 --- a/types/generated/contentTypes.d.ts +++ b/types/generated/contentTypes.d.ts @@ -488,6 +488,10 @@ export interface ApiCommentaireCommentaire extends Struct.CollectionTypeSchema { draftAndPublish: true; }; attributes: { + auteurAvatarUrl: Schema.Attribute.String; + auteurHandle: Schema.Attribute.String; + auteurNom: Schema.Attribute.String; + auteurProfilUrl: Schema.Attribute.String; contenu: Schema.Attribute.RichText & Schema.Attribute.Required; createdAt: Schema.Attribute.DateTime; createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & @@ -499,8 +503,13 @@ export interface ApiCommentaireCommentaire extends Struct.CollectionTypeSchema { 'api::commentaire.commentaire' > & Schema.Attribute.Private; + origine: Schema.Attribute.Enumeration<['local', 'activitypub']> & + Schema.Attribute.Required & + Schema.Attribute.DefaultTo<'local'>; parole: Schema.Attribute.Relation<'oneToOne', 'api::parole.parole'>; publishedAt: Schema.Attribute.DateTime; + remoteId: Schema.Attribute.String & Schema.Attribute.Unique; + remoteUrl: Schema.Attribute.String; updatedAt: Schema.Attribute.DateTime; updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & Schema.Attribute.Private; @@ -526,6 +535,7 @@ export interface ApiParoleParole extends Struct.CollectionTypeSchema { attributes: { annee: Schema.Attribute.Integer; artistes: Schema.Attribute.Relation<'manyToMany', 'api::artiste.artiste'>; + bokanteStatusId: Schema.Attribute.String; commentaires: Schema.Attribute.Relation< 'oneToMany', 'api::commentaire.commentaire'