0.13.10 : add fiels on message and channel
All checks were successful
Build release Docker image / Build Docker Images (push) Successful in 10m36s

This commit is contained in:
2026-04-14 23:06:41 +02:00
parent 0648bf74bd
commit f7f0ee17d7
7 changed files with 889 additions and 5 deletions

View File

@@ -560,6 +560,7 @@ export interface ApiBoardBoard extends Struct.CollectionTypeSchema {
export interface ApiChannelChannel extends Struct.CollectionTypeSchema {
collectionName: 'channels';
info: {
description: '';
displayName: 'Channel';
pluralName: 'channels';
singularName: 'channel';
@@ -572,6 +573,7 @@ export interface ApiChannelChannel extends Struct.CollectionTypeSchema {
createdAt: Schema.Attribute.DateTime;
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
description: Schema.Attribute.Text;
locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation<
'oneToMany',
@@ -580,6 +582,7 @@ export interface ApiChannelChannel extends Struct.CollectionTypeSchema {
Schema.Attribute.Private;
messages: Schema.Attribute.Relation<'oneToMany', 'api::message.message'>;
name: Schema.Attribute.String;
permissions: Schema.Attribute.JSON;
publishedAt: Schema.Attribute.DateTime;
type: Schema.Attribute.Enumeration<['TEXT', 'AUDIO', 'VIDEO']>;
updatedAt: Schema.Attribute.DateTime;
@@ -1413,7 +1416,12 @@ export interface ApiMessageMessage extends Struct.CollectionTypeSchema {
'api::message.message'
> &
Schema.Attribute.Private;
parent_message: Schema.Attribute.Relation<
'oneToOne',
'api::message.message'
>;
publishedAt: Schema.Attribute.DateTime;
reactions: Schema.Attribute.JSON;
updatedAt: Schema.Attribute.DateTime;
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;