diff --git a/.gitignore b/.gitignore index 91e0eb7ad7b6a59c3dc20c2fd8a1a25b01965543..bea5dca291cd73f9718439d0984587d6859e2472 100644 --- a/.gitignore +++ b/.gitignore @@ -65,11 +65,7 @@ $RECYCLE.BIN/ # Logs and databases ############################ -.tmp *.log -*.sql -*.sqlite -*.sqlite3 ############################ diff --git a/types/generated/contentTypes.d.ts b/types/generated/contentTypes.d.ts index dc33bde650bdb331b8e831c7845f1bae69dd8891..51dc75ff5577c6b0914320b6b454a7c4e42c2c97 100644 --- a/types/generated/contentTypes.d.ts +++ b/types/generated/contentTypes.d.ts @@ -848,6 +848,39 @@ export interface ApiPostPost extends Schema.CollectionType { }; } +export interface ApiProjetoProjeto extends Schema.CollectionType { + collectionName: 'projetos'; + info: { + singularName: 'projeto'; + pluralName: 'projetos'; + displayName: ' Projeto'; + }; + options: { + draftAndPublish: true; + }; + attributes: { + Titulo: Attribute.String; + Status: Attribute.String; + Parceiro: Attribute.String; + Descricao: Attribute.RichText; + createdAt: Attribute.DateTime; + updatedAt: Attribute.DateTime; + publishedAt: Attribute.DateTime; + createdBy: Attribute.Relation< + 'api::projeto.projeto', + 'oneToOne', + 'admin::user' + > & + Attribute.Private; + updatedBy: Attribute.Relation< + 'api::projeto.projeto', + 'oneToOne', + 'admin::user' + > & + Attribute.Private; + }; +} + declare module '@strapi/types' { export module Shared { export interface ContentTypes { @@ -868,6 +901,7 @@ declare module '@strapi/types' { 'plugin::users-permissions.user': PluginUsersPermissionsUser; 'api::o-c3sl.o-c3sl': ApiOC3SlOC3Sl; 'api::post.post': ApiPostPost; + 'api::projeto.projeto': ApiProjetoProjeto; } } }