0.11.9 : add create event and field changes

This commit is contained in:
2025-10-24 12:40:15 +02:00
parent 4c5b72d0d9
commit 337293182b
9 changed files with 449 additions and 1322 deletions

View File

@@ -918,51 +918,6 @@ export interface ApiDirectMessageDirectMessage
};
}
export interface ApiEventOtherEventOther extends Struct.CollectionTypeSchema {
collectionName: 'event_others';
info: {
displayName: 'EventOther';
pluralName: 'event-others';
singularName: 'event-other';
};
options: {
draftAndPublish: false;
};
attributes: {
createdAt: Schema.Attribute.DateTime;
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
fromDate: Schema.Attribute.DateTime;
locale: Schema.Attribute.String & Schema.Attribute.Private;
localizations: Schema.Attribute.Relation<
'oneToMany',
'api::event-other.event-other'
> &
Schema.Attribute.Private;
public: Schema.Attribute.Boolean;
publishedAt: Schema.Attribute.DateTime;
title: Schema.Attribute.String;
toDate: Schema.Attribute.DateTime;
type: Schema.Attribute.Enumeration<
[
'concert',
'festival',
'trade show',
'symposium',
'competition',
'masterclass',
'vocal_workshop',
'conference',
'rehearsal',
'outings',
]
>;
updatedAt: Schema.Attribute.DateTime;
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
};
}
export interface ApiEventRelationshipEventRelationship
extends Struct.CollectionTypeSchema {
collectionName: 'event_relationships';
@@ -1031,8 +986,21 @@ export interface ApiEventEvent extends Struct.CollectionTypeSchema {
Schema.Attribute.Private;
location: Schema.Attribute.String;
publishedAt: Schema.Attribute.DateTime;
repertory: Schema.Attribute.Enumeration<
[
'sacred',
'classical',
'pop',
'gospel',
'traditional',
'jazz',
'world_music',
'not_specified',
]
>;
size: Schema.Attribute.Integer;
start: Schema.Attribute.DateTime;
tags: Schema.Attribute.Component<'social.tags', true>;
title: Schema.Attribute.String;
type: Schema.Attribute.Enumeration<
[
@@ -1051,9 +1019,6 @@ export interface ApiEventEvent extends Struct.CollectionTypeSchema {
updatedAt: Schema.Attribute.DateTime;
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;
voice: Schema.Attribute.Enumeration<
['soprano', 'alto', 'tenor', 'bass', 'mixed']
>;
};
}
@@ -1947,7 +1912,6 @@ declare module '@strapi/strapi' {
'api::contact.contact': ApiContactContact;
'api::conversation.conversation': ApiConversationConversation;
'api::direct-message.direct-message': ApiDirectMessageDirectMessage;
'api::event-other.event-other': ApiEventOtherEventOther;
'api::event-relationship.event-relationship': ApiEventRelationshipEventRelationship;
'api::event.event': ApiEventEvent;
'api::group-membership.group-membership': ApiGroupMembershipGroupMembership;