Lastest objects for post, invite and add cron GNEWS

This commit is contained in:
2025-09-26 13:22:07 +02:00
parent b6d18c2681
commit a84fdbed9a
21 changed files with 16320 additions and 5273 deletions

View File

@@ -19,6 +19,17 @@ export interface AddressFullAddress extends Struct.ComponentSchema {
};
}
export interface SocialTags extends Struct.ComponentSchema {
collectionName: 'components_social_tags';
info: {
displayName: 'tags';
icon: 'emotionUnhappy';
};
attributes: {
tag: Schema.Attribute.String;
};
}
export interface UserPermissions extends Struct.ComponentSchema {
collectionName: 'components_user_permissions';
info: {
@@ -39,6 +50,7 @@ declare module '@strapi/strapi' {
export module Public {
export interface ComponentSchemas {
'address.full-address': AddressFullAddress;
'social.tags': SocialTags;
'user.permissions': UserPermissions;
}
}