@@ -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 : {
@@ -498,6 +535,11 @@ export interface ApiArticleArticle extends Struct.CollectionTypeSchema {
498535 localized : true ;
499536 } ;
500537 } > ;
538+ strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
539+ strapi_stage : Schema . Attribute . Relation <
540+ 'oneToOne' ,
541+ 'plugin::review-workflows.workflow-stage'
542+ > ;
501543 title : Schema . Attribute . String &
502544 Schema . Attribute . SetPluginOptions < {
503545 i18n : {
@@ -569,6 +611,11 @@ export interface ApiBlogPageBlogPage extends Struct.SingleTypeSchema {
569611 localized : true ;
570612 } ;
571613 } > ;
614+ strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
615+ strapi_stage : Schema . Attribute . Relation <
616+ 'oneToOne' ,
617+ 'plugin::review-workflows.workflow-stage'
618+ > ;
572619 sub_heading : Schema . Attribute . String &
573620 Schema . Attribute . SetPluginOptions < {
574621 i18n : {
@@ -606,6 +653,11 @@ export interface ApiCategoryCategory extends Struct.CollectionTypeSchema {
606653 name : Schema . Attribute . String ;
607654 product : Schema . Attribute . Relation < 'manyToOne' , 'api::product.product' > ;
608655 publishedAt : Schema . Attribute . DateTime ;
656+ strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
657+ strapi_stage : Schema . Attribute . Relation <
658+ 'oneToOne' ,
659+ 'plugin::review-workflows.workflow-stage'
660+ > ;
609661 updatedAt : Schema . Attribute . DateTime ;
610662 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
611663 Schema . Attribute . Private ;
@@ -647,6 +699,11 @@ export interface ApiFaqFaq extends Struct.CollectionTypeSchema {
647699 localized : true ;
648700 } ;
649701 } > ;
702+ strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
703+ strapi_stage : Schema . Attribute . Relation <
704+ 'oneToOne' ,
705+ 'plugin::review-workflows.workflow-stage'
706+ > ;
650707 updatedAt : Schema . Attribute . DateTime ;
651708 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
652709 Schema . Attribute . Private ;
@@ -694,6 +751,11 @@ export interface ApiGlobalGlobal extends Struct.SingleTypeSchema {
694751 localized : true ;
695752 } ;
696753 } > ;
754+ strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
755+ strapi_stage : Schema . Attribute . Relation <
756+ 'oneToOne' ,
757+ 'plugin::review-workflows.workflow-stage'
758+ > ;
697759 updatedAt : Schema . Attribute . DateTime ;
698760 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
699761 Schema . Attribute . Private ;
@@ -721,6 +783,11 @@ export interface ApiLogoLogo extends Struct.CollectionTypeSchema {
721783 localizations : Schema . Attribute . Relation < 'oneToMany' , 'api::logo.logo' > &
722784 Schema . Attribute . Private ;
723785 publishedAt : Schema . Attribute . DateTime ;
786+ strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
787+ strapi_stage : Schema . Attribute . Relation <
788+ 'oneToOne' ,
789+ 'plugin::review-workflows.workflow-stage'
790+ > ;
724791 updatedAt : Schema . Attribute . DateTime ;
725792 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
726793 Schema . Attribute . Private ;
@@ -783,6 +850,11 @@ export interface ApiPagePage extends Struct.CollectionTypeSchema {
783850 } ;
784851 } > &
785852 Schema . Attribute . DefaultTo < 'slug' > ;
853+ strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
854+ strapi_stage : Schema . Attribute . Relation <
855+ 'oneToOne' ,
856+ 'plugin::review-workflows.workflow-stage'
857+ > ;
786858 updatedAt : Schema . Attribute . DateTime ;
787859 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
788860 Schema . Attribute . Private ;
@@ -815,6 +887,11 @@ export interface ApiPlanPlan extends Struct.CollectionTypeSchema {
815887 price : Schema . Attribute . Integer ;
816888 product : Schema . Attribute . Relation < 'manyToOne' , 'api::product.product' > ;
817889 publishedAt : Schema . Attribute . DateTime ;
890+ strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
891+ strapi_stage : Schema . Attribute . Relation <
892+ 'oneToOne' ,
893+ 'plugin::review-workflows.workflow-stage'
894+ > ;
818895 sub_text : Schema . Attribute . String ;
819896 updatedAt : Schema . Attribute . DateTime ;
820897 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
@@ -880,6 +957,11 @@ export interface ApiProductPageProductPage extends Struct.SingleTypeSchema {
880957 localized : true ;
881958 } ;
882959 } > ;
960+ strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
961+ strapi_stage : Schema . Attribute . Relation <
962+ 'oneToOne' ,
963+ 'plugin::review-workflows.workflow-stage'
964+ > ;
883965 sub_heading : Schema . Attribute . String &
884966 Schema . Attribute . SetPluginOptions < {
885967 i18n : {
@@ -929,6 +1011,11 @@ export interface ApiProductProduct extends Struct.CollectionTypeSchema {
9291011 price : Schema . Attribute . Integer ;
9301012 publishedAt : Schema . Attribute . DateTime ;
9311013 slug : Schema . Attribute . UID < 'name' > ;
1014+ strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
1015+ strapi_stage : Schema . Attribute . Relation <
1016+ 'oneToOne' ,
1017+ 'plugin::review-workflows.workflow-stage'
1018+ > ;
9321019 updatedAt : Schema . Attribute . DateTime ;
9331020 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
9341021 Schema . Attribute . Private ;
@@ -958,6 +1045,11 @@ export interface ApiRedirectionRedirection extends Struct.CollectionTypeSchema {
9581045 Schema . Attribute . Private ;
9591046 publishedAt : Schema . Attribute . DateTime ;
9601047 source : Schema . Attribute . String ;
1048+ strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
1049+ strapi_stage : Schema . Attribute . Relation <
1050+ 'oneToOne' ,
1051+ 'plugin::review-workflows.workflow-stage'
1052+ > ;
9611053 updatedAt : Schema . Attribute . DateTime ;
9621054 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
9631055 Schema . Attribute . Private ;
@@ -990,6 +1082,11 @@ export interface ApiTestimonialTestimonial extends Struct.CollectionTypeSchema {
9901082 'api::testimonial.testimonial'
9911083 > ;
9921084 publishedAt : Schema . Attribute . DateTime ;
1085+ strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
1086+ strapi_stage : Schema . Attribute . Relation <
1087+ 'oneToOne' ,
1088+ 'plugin::review-workflows.workflow-stage'
1089+ > ;
9931090 text : Schema . Attribute . String &
9941091 Schema . Attribute . SetPluginOptions < {
9951092 i18n : {
@@ -1495,6 +1592,11 @@ export interface PluginUsersPermissionsUser
14951592 'manyToOne' ,
14961593 'plugin::users-permissions.role'
14971594 > ;
1595+ strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
1596+ strapi_stage : Schema . Attribute . Relation <
1597+ 'oneToOne' ,
1598+ 'plugin::review-workflows.workflow-stage'
1599+ > ;
14981600 updatedAt : Schema . Attribute . DateTime ;
14991601 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
15001602 Schema . Attribute . Private ;
@@ -1512,6 +1614,7 @@ declare module '@strapi/strapi' {
15121614 export interface ContentTypeSchemas {
15131615 'admin::api-token' : AdminApiToken ;
15141616 'admin::api-token-permission' : AdminApiTokenPermission ;
1617+ 'admin::audit-log' : AdminAuditLog ;
15151618 'admin::permission' : AdminPermission ;
15161619 'admin::role' : AdminRole ;
15171620 'admin::session' : AdminSession ;
0 commit comments