0.13.4 : add form-template
All checks were successful
Build release Docker image / Build Docker Images (push) Successful in 10m31s
All checks were successful
Build release Docker image / Build Docker Images (push) Successful in 10m31s
This commit is contained in:
45
types/generated/contentTypes.d.ts
vendored
45
types/generated/contentTypes.d.ts
vendored
@@ -799,6 +799,7 @@ export interface ApiChoralChoral extends Struct.CollectionTypeSchema {
|
||||
'oneToMany',
|
||||
'api::announcement.announcement'
|
||||
>;
|
||||
available_tags: Schema.Attribute.JSON;
|
||||
boards: Schema.Attribute.Relation<'oneToMany', 'api::board.board'>;
|
||||
calendar: Schema.Attribute.Relation<'oneToMany', 'api::event.event'>;
|
||||
channels: Schema.Attribute.Relation<'oneToMany', 'api::channel.channel'>;
|
||||
@@ -1144,6 +1145,48 @@ export interface ApiEventEvent extends Struct.CollectionTypeSchema {
|
||||
};
|
||||
}
|
||||
|
||||
export interface ApiFormTemplateFormTemplate
|
||||
extends Struct.CollectionTypeSchema {
|
||||
collectionName: 'form_templates';
|
||||
info: {
|
||||
displayName: 'FormTemplate';
|
||||
pluralName: 'form-templates';
|
||||
singularName: 'form-template';
|
||||
};
|
||||
options: {
|
||||
draftAndPublish: false;
|
||||
};
|
||||
attributes: {
|
||||
author: Schema.Attribute.Relation<
|
||||
'oneToOne',
|
||||
'plugin::users-permissions.user'
|
||||
>;
|
||||
choral: Schema.Attribute.Relation<'oneToOne', 'api::choral.choral'>;
|
||||
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',
|
||||
'api::form-template.form-template'
|
||||
> &
|
||||
Schema.Attribute.Private;
|
||||
original_file: Schema.Attribute.Media<
|
||||
'images' | 'files' | 'videos' | 'audios'
|
||||
>;
|
||||
publishedAt: Schema.Attribute.DateTime;
|
||||
schema: Schema.Attribute.JSON;
|
||||
state: Schema.Attribute.Enumeration<['draft', 'published', 'archived']> &
|
||||
Schema.Attribute.DefaultTo<'draft'>;
|
||||
target_tags: Schema.Attribute.JSON;
|
||||
title: Schema.Attribute.String & Schema.Attribute.Required;
|
||||
updatedAt: Schema.Attribute.DateTime;
|
||||
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
|
||||
Schema.Attribute.Private;
|
||||
};
|
||||
}
|
||||
|
||||
export interface ApiGroupMembershipGroupMembership
|
||||
extends Struct.CollectionTypeSchema {
|
||||
collectionName: 'group_memberships';
|
||||
@@ -2079,6 +2122,7 @@ export interface PluginUsersPermissionsUser
|
||||
attributes: {
|
||||
activities: Schema.Attribute.Component<'group.activity', true>;
|
||||
address: Schema.Attribute.Text;
|
||||
admin_tags: Schema.Attribute.JSON;
|
||||
announcements: Schema.Attribute.Relation<
|
||||
'oneToMany',
|
||||
'api::announcement.announcement'
|
||||
@@ -2231,6 +2275,7 @@ declare module '@strapi/strapi' {
|
||||
'api::direct-message.direct-message': ApiDirectMessageDirectMessage;
|
||||
'api::event-relationship.event-relationship': ApiEventRelationshipEventRelationship;
|
||||
'api::event.event': ApiEventEvent;
|
||||
'api::form-template.form-template': ApiFormTemplateFormTemplate;
|
||||
'api::group-membership.group-membership': ApiGroupMembershipGroupMembership;
|
||||
'api::group.group': ApiGroupGroup;
|
||||
'api::invite.invite': ApiInviteInvite;
|
||||
|
||||
Reference in New Issue
Block a user