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'