@@ -22,6 +22,7 @@ export interface ApiHomeHome extends Struct.SingleTypeSchema {
2222 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
2323 Schema . Attribute . Private ;
2424 locale : Schema . Attribute . String ;
25+ localizations : Schema . Attribute . Relation < 'oneToMany' , 'api::home.home' > ;
2526 } ;
2627}
2728
@@ -45,6 +46,7 @@ export interface ApiPagePage extends Struct.CollectionTypeSchema {
4546 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
4647 Schema . Attribute . Private ;
4748 locale : Schema . Attribute . String ;
49+ localizations : Schema . Attribute . Relation < 'oneToMany' , 'api::page.page' > ;
4850 } ;
4951}
5052
@@ -99,6 +101,10 @@ export interface PluginUploadFile extends Struct.CollectionTypeSchema {
99101 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
100102 Schema . Attribute . Private ;
101103 locale : Schema . Attribute . String ;
104+ localizations : Schema . Attribute . Relation <
105+ 'oneToMany' ,
106+ 'plugin::upload.file'
107+ > ;
102108 } ;
103109}
104110
@@ -145,6 +151,10 @@ export interface PluginUploadFolder extends Struct.CollectionTypeSchema {
145151 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
146152 Schema . Attribute . Private ;
147153 locale : Schema . Attribute . String ;
154+ localizations : Schema . Attribute . Relation <
155+ 'oneToMany' ,
156+ 'plugin::upload.folder'
157+ > ;
148158 } ;
149159}
150160
@@ -186,6 +196,10 @@ export interface PluginI18NLocale extends Struct.CollectionTypeSchema {
186196 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
187197 Schema . Attribute . Private ;
188198 locale : Schema . Attribute . String ;
199+ localizations : Schema . Attribute . Relation <
200+ 'oneToMany' ,
201+ 'plugin::i18n.locale'
202+ > ;
189203 } ;
190204}
191205
@@ -229,6 +243,10 @@ export interface PluginContentReleasesRelease
229243 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
230244 Schema . Attribute . Private ;
231245 locale : Schema . Attribute . String ;
246+ localizations : Schema . Attribute . Relation <
247+ 'oneToMany' ,
248+ 'plugin::content-releases.release'
249+ > ;
232250 } ;
233251}
234252
@@ -269,6 +287,10 @@ export interface PluginContentReleasesReleaseAction
269287 Schema . Attribute . Private ;
270288 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
271289 Schema . Attribute . Private ;
290+ localizations : Schema . Attribute . Relation <
291+ 'oneToMany' ,
292+ 'plugin::content-releases.release-action'
293+ > ;
272294 } ;
273295}
274296
@@ -312,6 +334,10 @@ export interface PluginReviewWorkflowsWorkflow
312334 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
313335 Schema . Attribute . Private ;
314336 locale : Schema . Attribute . String ;
337+ localizations : Schema . Attribute . Relation <
338+ 'oneToMany' ,
339+ 'plugin::review-workflows.workflow'
340+ > ;
315341 } ;
316342}
317343
@@ -353,6 +379,10 @@ export interface PluginReviewWorkflowsWorkflowStage
353379 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
354380 Schema . Attribute . Private ;
355381 locale : Schema . Attribute . String ;
382+ localizations : Schema . Attribute . Relation <
383+ 'oneToMany' ,
384+ 'plugin::review-workflows.workflow-stage'
385+ > ;
356386 } ;
357387}
358388
@@ -391,6 +421,10 @@ export interface PluginUsersPermissionsPermission
391421 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
392422 Schema . Attribute . Private ;
393423 locale : Schema . Attribute . String ;
424+ localizations : Schema . Attribute . Relation <
425+ 'oneToMany' ,
426+ 'plugin::users-permissions.permission'
427+ > ;
394428 } ;
395429}
396430
@@ -439,6 +473,10 @@ export interface PluginUsersPermissionsRole
439473 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
440474 Schema . Attribute . Private ;
441475 locale : Schema . Attribute . String ;
476+ localizations : Schema . Attribute . Relation <
477+ 'oneToMany' ,
478+ 'plugin::users-permissions.role'
479+ > ;
442480 } ;
443481}
444482
@@ -490,6 +528,10 @@ export interface PluginUsersPermissionsUser
490528 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
491529 Schema . Attribute . Private ;
492530 locale : Schema . Attribute . String ;
531+ localizations : Schema . Attribute . Relation <
532+ 'oneToMany' ,
533+ 'plugin::users-permissions.user'
534+ > ;
493535 } ;
494536}
495537
@@ -535,6 +577,7 @@ export interface AdminPermission extends Struct.CollectionTypeSchema {
535577 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
536578 Schema . Attribute . Private ;
537579 locale : Schema . Attribute . String ;
580+ localizations : Schema . Attribute . Relation < 'oneToMany' , 'admin::permission' > ;
538581 } ;
539582}
540583
@@ -599,6 +642,7 @@ export interface AdminUser extends Struct.CollectionTypeSchema {
599642 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
600643 Schema . Attribute . Private ;
601644 locale : Schema . Attribute . String ;
645+ localizations : Schema . Attribute . Relation < 'oneToMany' , 'admin::user' > ;
602646 } ;
603647}
604648
@@ -646,6 +690,7 @@ export interface AdminRole extends Struct.CollectionTypeSchema {
646690 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
647691 Schema . Attribute . Private ;
648692 locale : Schema . Attribute . String ;
693+ localizations : Schema . Attribute . Relation < 'oneToMany' , 'admin::role' > ;
649694 } ;
650695}
651696
@@ -704,6 +749,7 @@ export interface AdminApiToken extends Struct.CollectionTypeSchema {
704749 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
705750 Schema . Attribute . Private ;
706751 locale : Schema . Attribute . String ;
752+ localizations : Schema . Attribute . Relation < 'oneToMany' , 'admin::api-token' > ;
707753 } ;
708754}
709755
@@ -742,6 +788,10 @@ export interface AdminApiTokenPermission extends Struct.CollectionTypeSchema {
742788 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
743789 Schema . Attribute . Private ;
744790 locale : Schema . Attribute . String ;
791+ localizations : Schema . Attribute . Relation <
792+ 'oneToMany' ,
793+ 'admin::api-token-permission'
794+ > ;
745795 } ;
746796}
747797
@@ -797,6 +847,10 @@ export interface AdminTransferToken extends Struct.CollectionTypeSchema {
797847 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
798848 Schema . Attribute . Private ;
799849 locale : Schema . Attribute . String ;
850+ localizations : Schema . Attribute . Relation <
851+ 'oneToMany' ,
852+ 'admin::transfer-token'
853+ > ;
800854 } ;
801855}
802856
@@ -836,6 +890,10 @@ export interface AdminTransferTokenPermission
836890 updatedBy : Schema . Attribute . Relation < 'oneToOne' , 'admin::user' > &
837891 Schema . Attribute . Private ;
838892 locale : Schema . Attribute . String ;
893+ localizations : Schema . Attribute . Relation <
894+ 'oneToMany' ,
895+ 'admin::transfer-token-permission'
896+ > ;
839897 } ;
840898}
841899
0 commit comments