@@ -107,43 +107,6 @@ 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-
147110export interface AdminPermission extends Struct . CollectionTypeSchema {
148111 collectionName : 'admin_permissions' ;
149112 info : {
@@ -535,11 +498,6 @@ export interface ApiArticleArticle extends Struct.CollectionTypeSchema {
535498 localized : true ;
536499 } ;
537500 } > ;
538- strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
539- strapi_stage : Schema . Attribute . Relation <
540- 'oneToOne' ,
541- 'plugin::review-workflows.workflow-stage'
542- > ;
543501 title : Schema . Attribute . String &
544502 Schema . Attribute . SetPluginOptions < {
545503 i18n : {
@@ -611,11 +569,6 @@ export interface ApiBlogPageBlogPage extends Struct.SingleTypeSchema {
611569 localized : true ;
612570 } ;
613571 } > ;
614- strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
615- strapi_stage : Schema . Attribute . Relation <
616- 'oneToOne' ,
617- 'plugin::review-workflows.workflow-stage'
618- > ;
619572 sub_heading : Schema . Attribute . String &
620573 Schema . Attribute . SetPluginOptions < {
621574 i18n : {
@@ -653,11 +606,6 @@ export interface ApiCategoryCategory extends Struct.CollectionTypeSchema {
653606 name : Schema . Attribute . String ;
654607 product : Schema . Attribute . Relation < 'manyToOne' , 'api::product.product' > ;
655608 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- > ;
661609 updatedAt : Schema . Attribute . DateTime ;
662610 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
663611 Schema . Attribute . Private ;
@@ -699,11 +647,6 @@ export interface ApiFaqFaq extends Struct.CollectionTypeSchema {
699647 localized : true ;
700648 } ;
701649 } > ;
702- strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
703- strapi_stage : Schema . Attribute . Relation <
704- 'oneToOne' ,
705- 'plugin::review-workflows.workflow-stage'
706- > ;
707650 updatedAt : Schema . Attribute . DateTime ;
708651 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
709652 Schema . Attribute . Private ;
@@ -751,11 +694,6 @@ export interface ApiGlobalGlobal extends Struct.SingleTypeSchema {
751694 localized : true ;
752695 } ;
753696 } > ;
754- strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
755- strapi_stage : Schema . Attribute . Relation <
756- 'oneToOne' ,
757- 'plugin::review-workflows.workflow-stage'
758- > ;
759697 updatedAt : Schema . Attribute . DateTime ;
760698 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
761699 Schema . Attribute . Private ;
@@ -783,11 +721,6 @@ export interface ApiLogoLogo extends Struct.CollectionTypeSchema {
783721 localizations : Schema . Attribute . Relation < 'oneToMany' , 'api::logo.logo' > &
784722 Schema . Attribute . Private ;
785723 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- > ;
791724 updatedAt : Schema . Attribute . DateTime ;
792725 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
793726 Schema . Attribute . Private ;
@@ -850,11 +783,6 @@ export interface ApiPagePage extends Struct.CollectionTypeSchema {
850783 } ;
851784 } > &
852785 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- > ;
858786 updatedAt : Schema . Attribute . DateTime ;
859787 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
860788 Schema . Attribute . Private ;
@@ -887,11 +815,6 @@ export interface ApiPlanPlan extends Struct.CollectionTypeSchema {
887815 price : Schema . Attribute . Integer ;
888816 product : Schema . Attribute . Relation < 'manyToOne' , 'api::product.product' > ;
889817 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- > ;
895818 sub_text : Schema . Attribute . String ;
896819 updatedAt : Schema . Attribute . DateTime ;
897820 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
@@ -957,11 +880,6 @@ export interface ApiProductPageProductPage extends Struct.SingleTypeSchema {
957880 localized : true ;
958881 } ;
959882 } > ;
960- strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
961- strapi_stage : Schema . Attribute . Relation <
962- 'oneToOne' ,
963- 'plugin::review-workflows.workflow-stage'
964- > ;
965883 sub_heading : Schema . Attribute . String &
966884 Schema . Attribute . SetPluginOptions < {
967885 i18n : {
@@ -1011,11 +929,6 @@ export interface ApiProductProduct extends Struct.CollectionTypeSchema {
1011929 price : Schema . Attribute . Integer ;
1012930 publishedAt : Schema . Attribute . DateTime ;
1013931 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- > ;
1019932 updatedAt : Schema . Attribute . DateTime ;
1020933 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
1021934 Schema . Attribute . Private ;
@@ -1045,11 +958,6 @@ export interface ApiRedirectionRedirection extends Struct.CollectionTypeSchema {
1045958 Schema . Attribute . Private ;
1046959 publishedAt : Schema . Attribute . DateTime ;
1047960 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- > ;
1053961 updatedAt : Schema . Attribute . DateTime ;
1054962 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
1055963 Schema . Attribute . Private ;
@@ -1082,11 +990,6 @@ export interface ApiTestimonialTestimonial extends Struct.CollectionTypeSchema {
1082990 'api::testimonial.testimonial'
1083991 > ;
1084992 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- > ;
1090993 text : Schema . Attribute . String &
1091994 Schema . Attribute . SetPluginOptions < {
1092995 i18n : {
@@ -1592,11 +1495,6 @@ export interface PluginUsersPermissionsUser
15921495 'manyToOne' ,
15931496 'plugin::users-permissions.role'
15941497 > ;
1595- strapi_assignee : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > ;
1596- strapi_stage : Schema . Attribute . Relation <
1597- 'oneToOne' ,
1598- 'plugin::review-workflows.workflow-stage'
1599- > ;
16001498 updatedAt : Schema . Attribute . DateTime ;
16011499 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
16021500 Schema . Attribute . Private ;
@@ -1614,7 +1512,6 @@ declare module '@strapi/strapi' {
16141512 export interface ContentTypeSchemas {
16151513 'admin::api-token' : AdminApiToken ;
16161514 'admin::api-token-permission' : AdminApiTokenPermission ;
1617- 'admin::audit-log' : AdminAuditLog ;
16181515 'admin::permission' : AdminPermission ;
16191516 'admin::role' : AdminRole ;
16201517 'admin::session' : AdminSession ;
0 commit comments