@@ -107,6 +107,43 @@ export interface AdminApiTokenPermission extends Struct.CollectionTypeSchema {
107107 } ;
108108}
109109
110+ export interface AdminAuditLog extends Struct . CollectionTypeSchema {
111+ collectionName : 'strapi_audit_logs' ;
112+ info : {
113+ displayName : 'Audit Log' ;
114+ pluralName : 'audit-logs' ;
115+ singularName : 'audit-log' ;
116+ } ;
117+ options : {
118+ draftAndPublish : false ;
119+ timestamps : false ;
120+ } ;
121+ pluginOptions : {
122+ 'content-manager' : {
123+ visible : false ;
124+ } ;
125+ 'content-type-builder' : {
126+ visible : false ;
127+ } ;
128+ } ;
129+ attributes : {
130+ action : Schema . Attribute . String & Schema . Attribute . Required ;
131+ createdAt : Schema . Attribute . DateTime ;
132+ createdBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
133+ Schema . Attribute . Private ;
134+ date : Schema . Attribute . DateTime & Schema . Attribute . Required ;
135+ locale : Schema . Attribute . String & Schema . Attribute . Private ;
136+ localizations : Schema . Attribute . Relation < 'oneToMany' , 'admin::audit-log' > &
137+ Schema . Attribute . Private ;
138+ payload : Schema . Attribute . JSON ;
139+ publishedAt : Schema . Attribute . DateTime ;
140+ updatedAt : Schema . Attribute . DateTime ;
141+ updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
142+ Schema . Attribute . Private ;
143+ user : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
144+ } ;
145+ }
146+
110147export interface AdminPermission extends Struct . CollectionTypeSchema {
111148 collectionName : 'admin_permissions' ;
112149 info : {
@@ -499,6 +536,11 @@ export interface ApiArticleArticle extends Struct.CollectionTypeSchema {
499536 localized : true ;
500537 } ;
501538 } > ;
539+ strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
540+ strapi_stage : Schema . Attribute . Relation <
541+ 'oneToOne' ,
542+ 'plugin::review-workflows.workflow-stage'
543+ > ;
502544 title : Schema . Attribute . String &
503545 Schema . Attribute . SetPluginOptions < {
504546 i18n : {
@@ -570,6 +612,11 @@ export interface ApiBlogPageBlogPage extends Struct.SingleTypeSchema {
570612 localized : true ;
571613 } ;
572614 } > ;
615+ strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
616+ strapi_stage : Schema . Attribute . Relation <
617+ 'oneToOne' ,
618+ 'plugin::review-workflows.workflow-stage'
619+ > ;
573620 sub_heading : Schema . Attribute . String &
574621 Schema . Attribute . SetPluginOptions < {
575622 i18n : {
@@ -616,6 +663,11 @@ export interface ApiCategoryCategory extends Struct.CollectionTypeSchema {
616663 } > ;
617664 product : Schema . Attribute . Relation < 'manyToOne' , 'api::product.product' > ;
618665 publishedAt : Schema . Attribute . DateTime ;
666+ strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
667+ strapi_stage : Schema . Attribute . Relation <
668+ 'oneToOne' ,
669+ 'plugin::review-workflows.workflow-stage'
670+ > ;
619671 updatedAt : Schema . Attribute . DateTime ;
620672 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
621673 Schema . Attribute . Private ;
@@ -657,6 +709,11 @@ export interface ApiFaqFaq extends Struct.CollectionTypeSchema {
657709 localized : true ;
658710 } ;
659711 } > ;
712+ strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
713+ strapi_stage : Schema . Attribute . Relation <
714+ 'oneToOne' ,
715+ 'plugin::review-workflows.workflow-stage'
716+ > ;
660717 updatedAt : Schema . Attribute . DateTime ;
661718 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
662719 Schema . Attribute . Private ;
@@ -722,6 +779,11 @@ export interface ApiGlobalGlobal extends Struct.SingleTypeSchema {
722779 localized : true ;
723780 } ;
724781 } > ;
782+ strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
783+ strapi_stage : Schema . Attribute . Relation <
784+ 'oneToOne' ,
785+ 'plugin::review-workflows.workflow-stage'
786+ > ;
725787 updatedAt : Schema . Attribute . DateTime ;
726788 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
727789 Schema . Attribute . Private ;
@@ -755,6 +817,11 @@ export interface ApiLogoLogo extends Struct.CollectionTypeSchema {
755817 localizations : Schema . Attribute . Relation < 'oneToMany' , 'api::logo.logo' > &
756818 Schema . Attribute . Private ;
757819 publishedAt : Schema . Attribute . DateTime ;
820+ strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
821+ strapi_stage : Schema . Attribute . Relation <
822+ 'oneToOne' ,
823+ 'plugin::review-workflows.workflow-stage'
824+ > ;
758825 updatedAt : Schema . Attribute . DateTime ;
759826 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
760827 Schema . Attribute . Private ;
@@ -817,6 +884,11 @@ export interface ApiPagePage extends Struct.CollectionTypeSchema {
817884 } ;
818885 } > &
819886 Schema . Attribute . DefaultTo < 'slug' > ;
887+ strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
888+ strapi_stage : Schema . Attribute . Relation <
889+ 'oneToOne' ,
890+ 'plugin::review-workflows.workflow-stage'
891+ > ;
820892 updatedAt : Schema . Attribute . DateTime ;
821893 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
822894 Schema . Attribute . Private ;
@@ -884,6 +956,11 @@ export interface ApiPlanPlan extends Struct.CollectionTypeSchema {
884956 } > ;
885957 product : Schema . Attribute . Relation < 'manyToOne' , 'api::product.product' > ;
886958 publishedAt : Schema . Attribute . DateTime ;
959+ strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
960+ strapi_stage : Schema . Attribute . Relation <
961+ 'oneToOne' ,
962+ 'plugin::review-workflows.workflow-stage'
963+ > ;
887964 sub_text : Schema . Attribute . String &
888965 Schema . Attribute . SetPluginOptions < {
889966 i18n : {
@@ -978,6 +1055,11 @@ export interface ApiProductPageProductPage extends Struct.SingleTypeSchema {
9781055 localized : true ;
9791056 } ;
9801057 } > ;
1058+ strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
1059+ strapi_stage : Schema . Attribute . Relation <
1060+ 'oneToOne' ,
1061+ 'plugin::review-workflows.workflow-stage'
1062+ > ;
9811063 sub_heading : Schema . Attribute . String &
9821064 Schema . Attribute . SetPluginOptions < {
9831065 i18n : {
@@ -1067,6 +1149,11 @@ export interface ApiProductProduct extends Struct.CollectionTypeSchema {
10671149 } > ;
10681150 publishedAt : Schema . Attribute . DateTime ;
10691151 slug : Schema . Attribute . UID < 'name' > ;
1152+ strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
1153+ strapi_stage : Schema . Attribute . Relation <
1154+ 'oneToOne' ,
1155+ 'plugin::review-workflows.workflow-stage'
1156+ > ;
10701157 updatedAt : Schema . Attribute . DateTime ;
10711158 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
10721159 Schema . Attribute . Private ;
@@ -1096,6 +1183,11 @@ export interface ApiRedirectionRedirection extends Struct.CollectionTypeSchema {
10961183 Schema . Attribute . Private ;
10971184 publishedAt : Schema . Attribute . DateTime ;
10981185 source : Schema . Attribute . String ;
1186+ strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
1187+ strapi_stage : Schema . Attribute . Relation <
1188+ 'oneToOne' ,
1189+ 'plugin::review-workflows.workflow-stage'
1190+ > ;
10991191 updatedAt : Schema . Attribute . DateTime ;
11001192 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
11011193 Schema . Attribute . Private ;
@@ -1128,6 +1220,11 @@ export interface ApiTestimonialTestimonial extends Struct.CollectionTypeSchema {
11281220 'api::testimonial.testimonial'
11291221 > ;
11301222 publishedAt : Schema . Attribute . DateTime ;
1223+ strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
1224+ strapi_stage : Schema . Attribute . Relation <
1225+ 'oneToOne' ,
1226+ 'plugin::review-workflows.workflow-stage'
1227+ > ;
11311228 text : Schema . Attribute . String &
11321229 Schema . Attribute . SetPluginOptions < {
11331230 i18n : {
@@ -1634,6 +1731,11 @@ export interface PluginUsersPermissionsUser
16341731 'manyToOne' ,
16351732 'plugin::users-permissions.role'
16361733 > ;
1734+ strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
1735+ strapi_stage : Schema . Attribute . Relation <
1736+ 'oneToOne' ,
1737+ 'plugin::review-workflows.workflow-stage'
1738+ > ;
16371739 updatedAt : Schema . Attribute . DateTime ;
16381740 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
16391741 Schema . Attribute . Private ;
@@ -1651,6 +1753,7 @@ declare module '@strapi/strapi' {
16511753 export interface ContentTypeSchemas {
16521754 'admin::api-token' : AdminApiToken ;
16531755 'admin::api-token-permission' : AdminApiTokenPermission ;
1756+ 'admin::audit-log' : AdminAuditLog ;
16541757 'admin::permission' : AdminPermission ;
16551758 'admin::role' : AdminRole ;
16561759 'admin::session' : AdminSession ;
0 commit comments