translations & restructuring

This commit is contained in:
Julian Krauser 2024-11-01 11:20:16 +01:00
parent 5caeae2338
commit 1943224f33
23 changed files with 370 additions and 330 deletions

32
package-lock.json generated
View file

@ -9,7 +9,6 @@
"version": "0.1.0", "version": "0.1.0",
"dependencies": { "dependencies": {
"@offset-dev/strapi-calendar": "^1.0.0-beta.1", "@offset-dev/strapi-calendar": "^1.0.0-beta.1",
"@strapi/plugin-cloud": "5.1.1",
"@strapi/plugin-color-picker": "^5.1.1", "@strapi/plugin-color-picker": "^5.1.1",
"@strapi/plugin-documentation": "^5.1.1", "@strapi/plugin-documentation": "^5.1.1",
"@strapi/plugin-graphql": "^5.1.1", "@strapi/plugin-graphql": "^5.1.1",
@ -4920,27 +4919,6 @@
"npm": ">=6.0.0" "npm": ">=6.0.0"
} }
}, },
"node_modules/@strapi/plugin-cloud": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/@strapi/plugin-cloud/-/plugin-cloud-5.1.1.tgz",
"integrity": "sha512-HKpqRxZgY7Za7m3ZhbMov2dqeQp9MJHq5p07KVXQB5cr5j4P8q6AbEWlgn0jK/7ktTlTccx29ocBLmN80wvI4Q==",
"dependencies": {
"@strapi/design-system": "2.0.0-rc.11",
"@strapi/icons": "2.0.0-rc.11",
"react-intl": "6.6.2"
},
"engines": {
"node": ">=18.0.0 <=22.x.x",
"npm": ">=6.0.0"
},
"peerDependencies": {
"@strapi/strapi": "^5.0.0 || ^5.0.0-beta || ^5.0.0-alpha || ^5.0.0-rc",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"react-router-dom": "^6.0.0",
"styled-components": "^6.0.0"
}
},
"node_modules/@strapi/plugin-color-picker": { "node_modules/@strapi/plugin-color-picker": {
"version": "5.1.1", "version": "5.1.1",
"resolved": "https://registry.npmjs.org/@strapi/plugin-color-picker/-/plugin-color-picker-5.1.1.tgz", "resolved": "https://registry.npmjs.org/@strapi/plugin-color-picker/-/plugin-color-picker-5.1.1.tgz",
@ -24405,16 +24383,6 @@
"sift": "16.0.1" "sift": "16.0.1"
} }
}, },
"@strapi/plugin-cloud": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/@strapi/plugin-cloud/-/plugin-cloud-5.1.1.tgz",
"integrity": "sha512-HKpqRxZgY7Za7m3ZhbMov2dqeQp9MJHq5p07KVXQB5cr5j4P8q6AbEWlgn0jK/7ktTlTccx29ocBLmN80wvI4Q==",
"requires": {
"@strapi/design-system": "2.0.0-rc.11",
"@strapi/icons": "2.0.0-rc.11",
"react-intl": "6.6.2"
}
},
"@strapi/plugin-color-picker": { "@strapi/plugin-color-picker": {
"version": "5.1.1", "version": "5.1.1",
"resolved": "https://registry.npmjs.org/@strapi/plugin-color-picker/-/plugin-color-picker-5.1.1.tgz", "resolved": "https://registry.npmjs.org/@strapi/plugin-color-picker/-/plugin-color-picker-5.1.1.tgz",

View file

@ -12,7 +12,6 @@
}, },
"dependencies": { "dependencies": {
"@offset-dev/strapi-calendar": "^1.0.0-beta.1", "@offset-dev/strapi-calendar": "^1.0.0-beta.1",
"@strapi/plugin-cloud": "5.1.1",
"@strapi/plugin-color-picker": "^5.1.1", "@strapi/plugin-color-picker": "^5.1.1",
"@strapi/plugin-documentation": "^5.1.1", "@strapi/plugin-documentation": "^5.1.1",
"@strapi/plugin-graphql": "^5.1.1", "@strapi/plugin-graphql": "^5.1.1",

View file

@ -4,7 +4,7 @@
"info": { "info": {
"singularName": "article", "singularName": "article",
"pluralName": "articles", "pluralName": "articles",
"displayName": "Articles", "displayName": "Artikel",
"description": "" "description": ""
}, },
"options": { "options": {
@ -22,7 +22,8 @@
"localized": true "localized": true
} }
}, },
"type": "string" "type": "string",
"required": true
}, },
"description": { "description": {
"pluginOptions": { "pluginOptions": {
@ -30,7 +31,8 @@
"localized": true "localized": true
} }
}, },
"type": "string" "type": "string",
"required": true
}, },
"slug": { "slug": {
"pluginOptions": { "pluginOptions": {
@ -39,7 +41,8 @@
} }
}, },
"type": "uid", "type": "uid",
"targetField": "title" "targetField": "title",
"required": true
}, },
"content": { "content": {
"pluginOptions": { "pluginOptions": {
@ -52,7 +55,7 @@
"image": { "image": {
"type": "media", "type": "media",
"multiple": false, "multiple": false,
"required": false, "required": true,
"allowedTypes": [ "allowedTypes": [
"images", "images",
"files", "files",

View file

@ -4,7 +4,7 @@
"info": { "info": {
"singularName": "event", "singularName": "event",
"pluralName": "events", "pluralName": "events",
"displayName": "Events", "displayName": "Termine",
"description": "" "description": ""
}, },
"options": { "options": {
@ -22,7 +22,8 @@
"localized": true "localized": true
} }
}, },
"type": "string" "type": "string",
"required": true
}, },
"description": { "description": {
"pluginOptions": { "pluginOptions": {
@ -30,7 +31,8 @@
"localized": true "localized": true
} }
}, },
"type": "string" "type": "string",
"required": true
}, },
"slug": { "slug": {
"pluginOptions": { "pluginOptions": {
@ -39,7 +41,8 @@
} }
}, },
"type": "uid", "type": "uid",
"targetField": "title" "targetField": "title",
"required": true
}, },
"date": { "date": {
"pluginOptions": { "pluginOptions": {

View file

@ -24,7 +24,8 @@
"localized": true "localized": true
} }
}, },
"component": "global.navbar" "component": "global.navbar",
"required": true
}, },
"footer": { "footer": {
"type": "component", "type": "component",

View file

@ -4,7 +4,7 @@
"info": { "info": {
"singularName": "homepage", "singularName": "homepage",
"pluralName": "homepages", "pluralName": "homepages",
"displayName": "Homepage", "displayName": "Startseite",
"description": "" "description": ""
}, },
"options": { "options": {
@ -28,7 +28,8 @@
"dynamic-zone.full-image", "dynamic-zone.full-image",
"dynamic-zone.emphasise-article", "dynamic-zone.emphasise-article",
"dynamic-zone.dual-column-text", "dynamic-zone.dual-column-text",
"dynamic-zone.column-image-text" "dynamic-zone.column-image-text",
"shared.list"
] ]
} }
} }

View file

@ -4,7 +4,7 @@
"info": { "info": {
"singularName": "operation", "singularName": "operation",
"pluralName": "operations", "pluralName": "operations",
"displayName": "Operations", "displayName": "Einsätze",
"description": "" "description": ""
}, },
"options": { "options": {
@ -22,7 +22,8 @@
"localized": true "localized": true
} }
}, },
"type": "string" "type": "string",
"required": true
}, },
"description": { "description": {
"pluginOptions": { "pluginOptions": {
@ -30,7 +31,8 @@
"localized": true "localized": true
} }
}, },
"type": "string" "type": "string",
"required": true
}, },
"slug": { "slug": {
"pluginOptions": { "pluginOptions": {
@ -39,15 +41,8 @@
} }
}, },
"type": "uid", "type": "uid",
"targetField": "title" "targetField": "title",
}, "required": true
"content": {
"pluginOptions": {
"i18n": {
"localized": true
}
},
"type": "blocks"
}, },
"attachment": { "attachment": {
"type": "media", "type": "media",

View file

@ -4,7 +4,7 @@
"info": { "info": {
"singularName": "page", "singularName": "page",
"pluralName": "pages", "pluralName": "pages",
"displayName": "Pages", "displayName": "Seiten",
"description": "" "description": ""
}, },
"options": { "options": {
@ -16,6 +16,16 @@
} }
}, },
"attributes": { "attributes": {
"identifier": {
"pluginOptions": {
"i18n": {
"localized": true
}
},
"type": "string",
"required": true,
"unique": true
},
"slug": { "slug": {
"pluginOptions": { "pluginOptions": {
"i18n": { "i18n": {
@ -23,10 +33,10 @@
} }
}, },
"type": "uid", "type": "uid",
"default": "slug", "targetField": "identifier",
"required": true "required": true
}, },
"hero": { "Hero": {
"type": "component", "type": "component",
"repeatable": false, "repeatable": false,
"pluginOptions": { "pluginOptions": {
@ -45,13 +55,13 @@
}, },
"type": "dynamiczone", "type": "dynamiczone",
"components": [ "components": [
"shared.list",
"dynamic-zone.full-text",
"dynamic-zone.emphasise-article",
"dynamic-zone.full-image",
"dynamic-zone.gallery", "dynamic-zone.gallery",
"dynamic-zone.full-text",
"dynamic-zone.full-image",
"dynamic-zone.emphasise-article",
"dynamic-zone.dual-column-text", "dynamic-zone.dual-column-text",
"dynamic-zone.column-image-text" "dynamic-zone.column-image-text",
"shared.list"
] ]
} }
} }

View file

@ -1,7 +1,7 @@
{ {
"collectionName": "components_dynamic_zone_column_image_texts", "collectionName": "components_dynamic_zone_column_image_texts",
"info": { "info": {
"displayName": "Column_Image_Text", "displayName": "Text-Bild-Spalte",
"icon": "bulletList", "icon": "bulletList",
"description": "" "description": ""
}, },

View file

@ -1,7 +1,7 @@
{ {
"collectionName": "components_dynamic_zone_dual_column_texts", "collectionName": "components_dynamic_zone_dual_column_texts",
"info": { "info": {
"displayName": "Dual_Column_Text", "displayName": "Text-Text-Spalte",
"icon": "stack" "icon": "stack"
}, },
"options": {}, "options": {},

View file

@ -1,7 +1,7 @@
{ {
"collectionName": "components_dynamic_zone_emphasise_articles", "collectionName": "components_dynamic_zone_emphasise_articles",
"info": { "info": {
"displayName": "Emphasise_Article", "displayName": "Artikel hervorheben",
"icon": "dashboard", "icon": "dashboard",
"description": "" "description": ""
}, },

View file

@ -1,7 +1,7 @@
{ {
"collectionName": "components_dynamic_zone_full_images", "collectionName": "components_dynamic_zone_full_images",
"info": { "info": {
"displayName": "Full_Image", "displayName": "Voll-Bild",
"icon": "dashboard", "icon": "dashboard",
"description": "" "description": ""
}, },

View file

@ -1,7 +1,7 @@
{ {
"collectionName": "components_dynamic_zone_full_texts", "collectionName": "components_dynamic_zone_full_texts",
"info": { "info": {
"displayName": "Full_Text", "displayName": "Voll-Text",
"icon": "dashboard", "icon": "dashboard",
"description": "" "description": ""
}, },

View file

@ -1,7 +1,7 @@
{ {
"collectionName": "components_dynamic_zone_galleries", "collectionName": "components_dynamic_zone_galleries",
"info": { "info": {
"displayName": "Gallery", "displayName": "Galerie",
"icon": "apps" "icon": "apps"
}, },
"options": {}, "options": {},

View file

@ -1,7 +1,7 @@
{ {
"collectionName": "components_global_footers", "collectionName": "components_global_footers",
"info": { "info": {
"displayName": "Footer", "displayName": "Fußzeile",
"icon": "apps", "icon": "apps",
"description": "" "description": ""
}, },

View file

@ -1,24 +1,25 @@
{ {
"collectionName": "components_global_navbars", "collectionName": "components_global_navbars",
"info": { "info": {
"displayName": "Navbar", "displayName": "Navigationsleiste",
"icon": "bold", "icon": "bold",
"description": "" "description": ""
}, },
"options": {}, "options": {},
"attributes": { "attributes": {
"logo": { "logo": {
"allowedTypes": [
"images"
],
"type": "media", "type": "media",
"multiple": false, "multiple": false,
"required": true "required": true,
"allowedTypes": [
"images"
]
}, },
"navbar_items": { "navbar_items": {
"type": "component", "type": "component",
"repeatable": true, "repeatable": true,
"component": "items.navbar-items" "component": "items.navbar-items",
"required": false
} }
} }
} }

View file

@ -1,7 +1,7 @@
{ {
"collectionName": "components_items_left_navbar_items", "collectionName": "components_items_left_navbar_items",
"info": { "info": {
"displayName": "Navbar_Items", "displayName": "Navigations-Überpunkt",
"icon": "bulletList", "icon": "bulletList",
"description": "" "description": ""
}, },
@ -13,7 +13,7 @@
"URL": { "URL": {
"type": "string" "type": "string"
}, },
"default_URL": { "default_active_child": {
"type": "string" "type": "string"
}, },
"page": { "page": {

View file

@ -1,7 +1,7 @@
{ {
"collectionName": "components_items_navbar_sub_items", "collectionName": "components_items_navbar_sub_items",
"info": { "info": {
"displayName": "Navbar_Sub_Items", "displayName": "Navigations-Unterpunkt",
"icon": "bulletList", "icon": "bulletList",
"description": "" "description": ""
}, },

View file

@ -1,7 +1,7 @@
{ {
"collectionName": "components_shared_lists", "collectionName": "components_shared_lists",
"info": { "info": {
"displayName": "list", "displayName": "Inhaltsauswahl",
"icon": "apps", "icon": "apps",
"description": "" "description": ""
}, },

View file

@ -14,7 +14,7 @@
"name": "Apache 2.0", "name": "Apache 2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0.html" "url": "https://www.apache.org/licenses/LICENSE-2.0.html"
}, },
"x-generation-date": "2024-10-30T13:33:49.587Z" "x-generation-date": "2024-11-01T10:19:23.797Z"
}, },
"x-strapi-config": { "x-strapi-config": {
"plugins": [ "plugins": [
@ -4168,6 +4168,10 @@
"properties": { "properties": {
"data": { "data": {
"required": [ "required": [
"title",
"description",
"slug",
"image",
"date" "date"
], ],
"type": "object", "type": "object",
@ -4270,6 +4274,10 @@
"Article": { "Article": {
"type": "object", "type": "object",
"required": [ "required": [
"title",
"description",
"slug",
"image",
"date" "date"
], ],
"properties": { "properties": {
@ -5421,6 +5429,9 @@
"properties": { "properties": {
"data": { "data": {
"required": [ "required": [
"title",
"description",
"slug",
"date" "date"
], ],
"type": "object", "type": "object",
@ -5497,6 +5508,9 @@
"Event": { "Event": {
"type": "object", "type": "object",
"required": [ "required": [
"title",
"description",
"slug",
"date" "date"
], ],
"properties": { "properties": {
@ -5906,6 +5920,9 @@
], ],
"properties": { "properties": {
"data": { "data": {
"required": [
"navbar"
],
"type": "object", "type": "object",
"properties": { "properties": {
"navbar": { "navbar": {
@ -5972,6 +5989,9 @@
}, },
"Global": { "Global": {
"type": "object", "type": "object",
"required": [
"navbar"
],
"properties": { "properties": {
"id": { "id": {
"type": "number" "type": "number"
@ -6143,7 +6163,7 @@
"URL": { "URL": {
"type": "string" "type": "string"
}, },
"default_URL": { "default_active_child": {
"type": "string" "type": "string"
}, },
"page": { "page": {
@ -6491,7 +6511,7 @@
} }
} }
}, },
"SharedListComponent": { "DynamicZoneGalleryComponent": {
"type": "object", "type": "object",
"properties": { "properties": {
"id": { "id": {
@ -6500,19 +6520,137 @@
"__component": { "__component": {
"type": "string", "type": "string",
"enum": [ "enum": [
"shared.list" "dynamic-zone.gallery"
] ]
}, },
"list": { "images": {
"type": "string", "type": "object",
"enum": [ "properties": {
"articles", "id": {
"events", "type": "number"
"operations" },
] "documentId": {
}, "type": "string"
"enable_detail": { },
"type": "boolean" "name": {
"type": "string"
},
"alternativeText": {
"type": "string"
},
"caption": {
"type": "string"
},
"width": {
"type": "integer"
},
"height": {
"type": "integer"
},
"formats": {},
"hash": {
"type": "string"
},
"ext": {
"type": "string"
},
"mime": {
"type": "string"
},
"size": {
"type": "number",
"format": "float"
},
"url": {
"type": "string"
},
"previewUrl": {
"type": "string"
},
"provider": {
"type": "string"
},
"provider_metadata": {},
"related": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"documentId": {
"type": "string"
}
}
}
},
"folder": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"documentId": {
"type": "string"
}
}
},
"folderPath": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"updatedAt": {
"type": "string",
"format": "date-time"
},
"publishedAt": {
"type": "string",
"format": "date-time"
},
"createdBy": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"documentId": {
"type": "string"
}
}
},
"updatedBy": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"documentId": {
"type": "string"
}
}
},
"locale": {
"type": "string"
},
"localizations": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"documentId": {
"type": "string"
}
}
}
}
}
} }
} }
}, },
@ -6531,40 +6669,6 @@
"text": {} "text": {}
} }
}, },
"DynamicZoneEmphasiseArticleComponent": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"__component": {
"type": "string",
"enum": [
"dynamic-zone.emphasise-article"
]
},
"articles": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"documentId": {
"type": "string"
}
}
}
},
"titel": {
"type": "string"
},
"description": {
"type": "string"
}
}
},
"DynamicZoneFullImageComponent": { "DynamicZoneFullImageComponent": {
"type": "object", "type": "object",
"properties": { "properties": {
@ -6708,7 +6812,7 @@
} }
} }
}, },
"DynamicZoneGalleryComponent": { "DynamicZoneEmphasiseArticleComponent": {
"type": "object", "type": "object",
"properties": { "properties": {
"id": { "id": {
@ -6717,137 +6821,28 @@
"__component": { "__component": {
"type": "string", "type": "string",
"enum": [ "enum": [
"dynamic-zone.gallery" "dynamic-zone.emphasise-article"
] ]
}, },
"images": { "articles": {
"type": "object", "type": "array",
"properties": { "items": {
"id": { "type": "object",
"type": "number" "properties": {
}, "id": {
"documentId": { "type": "number"
"type": "string" },
}, "documentId": {
"name": { "type": "string"
"type": "string"
},
"alternativeText": {
"type": "string"
},
"caption": {
"type": "string"
},
"width": {
"type": "integer"
},
"height": {
"type": "integer"
},
"formats": {},
"hash": {
"type": "string"
},
"ext": {
"type": "string"
},
"mime": {
"type": "string"
},
"size": {
"type": "number",
"format": "float"
},
"url": {
"type": "string"
},
"previewUrl": {
"type": "string"
},
"provider": {
"type": "string"
},
"provider_metadata": {},
"related": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"documentId": {
"type": "string"
}
}
}
},
"folder": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"documentId": {
"type": "string"
}
}
},
"folderPath": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"updatedAt": {
"type": "string",
"format": "date-time"
},
"publishedAt": {
"type": "string",
"format": "date-time"
},
"createdBy": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"documentId": {
"type": "string"
}
}
},
"updatedBy": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"documentId": {
"type": "string"
}
}
},
"locale": {
"type": "string"
},
"localizations": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"documentId": {
"type": "string"
}
}
} }
} }
} }
},
"titel": {
"type": "string"
},
"description": {
"type": "string"
} }
} }
}, },
@ -7014,6 +7009,31 @@
} }
} }
}, },
"SharedListComponent": {
"type": "object",
"properties": {
"id": {
"type": "number"
},
"__component": {
"type": "string",
"enum": [
"shared.list"
]
},
"list": {
"type": "string",
"enum": [
"articles",
"events",
"operations"
]
},
"enable_detail": {
"type": "boolean"
}
}
},
"HomepageRequest": { "HomepageRequest": {
"type": "object", "type": "object",
"required": [ "required": [
@ -7058,6 +7078,9 @@
}, },
{ {
"$ref": "#/components/schemas/DynamicZoneColumnImageTextComponent" "$ref": "#/components/schemas/DynamicZoneColumnImageTextComponent"
},
{
"$ref": "#/components/schemas/SharedListComponent"
} }
] ]
}, },
@ -7069,7 +7092,8 @@
"dynamic-zone.full-image": "#/components/schemas/DynamicZoneFullImageComponent", "dynamic-zone.full-image": "#/components/schemas/DynamicZoneFullImageComponent",
"dynamic-zone.emphasise-article": "#/components/schemas/DynamicZoneEmphasiseArticleComponent", "dynamic-zone.emphasise-article": "#/components/schemas/DynamicZoneEmphasiseArticleComponent",
"dynamic-zone.dual-column-text": "#/components/schemas/DynamicZoneDualColumnTextComponent", "dynamic-zone.dual-column-text": "#/components/schemas/DynamicZoneDualColumnTextComponent",
"dynamic-zone.column-image-text": "#/components/schemas/DynamicZoneColumnImageTextComponent" "dynamic-zone.column-image-text": "#/components/schemas/DynamicZoneColumnImageTextComponent",
"shared.list": "#/components/schemas/SharedListComponent"
} }
} }
}, },
@ -7760,6 +7784,9 @@
}, },
{ {
"$ref": "#/components/schemas/DynamicZoneColumnImageTextComponent" "$ref": "#/components/schemas/DynamicZoneColumnImageTextComponent"
},
{
"$ref": "#/components/schemas/SharedListComponent"
} }
] ]
}, },
@ -7771,7 +7798,8 @@
"dynamic-zone.full-image": "#/components/schemas/DynamicZoneFullImageComponent", "dynamic-zone.full-image": "#/components/schemas/DynamicZoneFullImageComponent",
"dynamic-zone.emphasise-article": "#/components/schemas/DynamicZoneEmphasiseArticleComponent", "dynamic-zone.emphasise-article": "#/components/schemas/DynamicZoneEmphasiseArticleComponent",
"dynamic-zone.dual-column-text": "#/components/schemas/DynamicZoneDualColumnTextComponent", "dynamic-zone.dual-column-text": "#/components/schemas/DynamicZoneDualColumnTextComponent",
"dynamic-zone.column-image-text": "#/components/schemas/DynamicZoneColumnImageTextComponent" "dynamic-zone.column-image-text": "#/components/schemas/DynamicZoneColumnImageTextComponent",
"shared.list": "#/components/schemas/SharedListComponent"
} }
} }
}, },
@ -7973,6 +8001,9 @@
}, },
{ {
"$ref": "#/components/schemas/DynamicZoneColumnImageTextComponent" "$ref": "#/components/schemas/DynamicZoneColumnImageTextComponent"
},
{
"$ref": "#/components/schemas/SharedListComponent"
} }
] ]
}, },
@ -7984,7 +8015,8 @@
"dynamic-zone.full-image": "#/components/schemas/DynamicZoneFullImageComponent", "dynamic-zone.full-image": "#/components/schemas/DynamicZoneFullImageComponent",
"dynamic-zone.emphasise-article": "#/components/schemas/DynamicZoneEmphasiseArticleComponent", "dynamic-zone.emphasise-article": "#/components/schemas/DynamicZoneEmphasiseArticleComponent",
"dynamic-zone.dual-column-text": "#/components/schemas/DynamicZoneDualColumnTextComponent", "dynamic-zone.dual-column-text": "#/components/schemas/DynamicZoneDualColumnTextComponent",
"dynamic-zone.column-image-text": "#/components/schemas/DynamicZoneColumnImageTextComponent" "dynamic-zone.column-image-text": "#/components/schemas/DynamicZoneColumnImageTextComponent",
"shared.list": "#/components/schemas/SharedListComponent"
} }
} }
}, },
@ -8063,6 +8095,9 @@
"properties": { "properties": {
"data": { "data": {
"required": [ "required": [
"title",
"description",
"slug",
"date" "date"
], ],
"type": "object", "type": "object",
@ -8076,7 +8111,6 @@
"slug": { "slug": {
"type": "string" "type": "string"
}, },
"content": {},
"attachment": { "attachment": {
"type": "array", "type": "array",
"items": { "items": {
@ -8154,6 +8188,9 @@
"Operation": { "Operation": {
"type": "object", "type": "object",
"required": [ "required": [
"title",
"description",
"slug",
"date" "date"
], ],
"properties": { "properties": {
@ -8172,7 +8209,6 @@
"slug": { "slug": {
"type": "string" "type": "string"
}, },
"content": {},
"attachment": { "attachment": {
"type": "array", "type": "array",
"items": { "items": {
@ -8835,7 +8871,6 @@
"slug": { "slug": {
"type": "string" "type": "string"
}, },
"content": {},
"attachment": { "attachment": {
"type": "array", "type": "array",
"items": { "items": {
@ -9047,15 +9082,19 @@
"properties": { "properties": {
"data": { "data": {
"required": [ "required": [
"identifier",
"slug", "slug",
"hero" "Hero"
], ],
"type": "object", "type": "object",
"properties": { "properties": {
"identifier": {
"type": "string"
},
"slug": { "slug": {
"type": "string" "type": "string"
}, },
"hero": { "Hero": {
"$ref": "#/components/schemas/SharedHeroComponent" "$ref": "#/components/schemas/SharedHeroComponent"
}, },
"content": { "content": {
@ -9063,38 +9102,38 @@
"items": { "items": {
"anyOf": [ "anyOf": [
{ {
"$ref": "#/components/schemas/SharedListComponent" "$ref": "#/components/schemas/DynamicZoneGalleryComponent"
}, },
{ {
"$ref": "#/components/schemas/DynamicZoneFullTextComponent" "$ref": "#/components/schemas/DynamicZoneFullTextComponent"
}, },
{
"$ref": "#/components/schemas/DynamicZoneEmphasiseArticleComponent"
},
{ {
"$ref": "#/components/schemas/DynamicZoneFullImageComponent" "$ref": "#/components/schemas/DynamicZoneFullImageComponent"
}, },
{ {
"$ref": "#/components/schemas/DynamicZoneGalleryComponent" "$ref": "#/components/schemas/DynamicZoneEmphasiseArticleComponent"
}, },
{ {
"$ref": "#/components/schemas/DynamicZoneDualColumnTextComponent" "$ref": "#/components/schemas/DynamicZoneDualColumnTextComponent"
}, },
{ {
"$ref": "#/components/schemas/DynamicZoneColumnImageTextComponent" "$ref": "#/components/schemas/DynamicZoneColumnImageTextComponent"
},
{
"$ref": "#/components/schemas/SharedListComponent"
} }
] ]
}, },
"discriminator": { "discriminator": {
"propertyName": "__component", "propertyName": "__component",
"mapping": { "mapping": {
"shared.list": "#/components/schemas/SharedListComponent",
"dynamic-zone.full-text": "#/components/schemas/DynamicZoneFullTextComponent",
"dynamic-zone.emphasise-article": "#/components/schemas/DynamicZoneEmphasiseArticleComponent",
"dynamic-zone.full-image": "#/components/schemas/DynamicZoneFullImageComponent",
"dynamic-zone.gallery": "#/components/schemas/DynamicZoneGalleryComponent", "dynamic-zone.gallery": "#/components/schemas/DynamicZoneGalleryComponent",
"dynamic-zone.full-text": "#/components/schemas/DynamicZoneFullTextComponent",
"dynamic-zone.full-image": "#/components/schemas/DynamicZoneFullImageComponent",
"dynamic-zone.emphasise-article": "#/components/schemas/DynamicZoneEmphasiseArticleComponent",
"dynamic-zone.dual-column-text": "#/components/schemas/DynamicZoneDualColumnTextComponent", "dynamic-zone.dual-column-text": "#/components/schemas/DynamicZoneDualColumnTextComponent",
"dynamic-zone.column-image-text": "#/components/schemas/DynamicZoneColumnImageTextComponent" "dynamic-zone.column-image-text": "#/components/schemas/DynamicZoneColumnImageTextComponent",
"shared.list": "#/components/schemas/SharedListComponent"
} }
} }
}, },
@ -9157,8 +9196,9 @@
"Page": { "Page": {
"type": "object", "type": "object",
"required": [ "required": [
"identifier",
"slug", "slug",
"hero" "Hero"
], ],
"properties": { "properties": {
"id": { "id": {
@ -9167,10 +9207,13 @@
"documentId": { "documentId": {
"type": "string" "type": "string"
}, },
"identifier": {
"type": "string"
},
"slug": { "slug": {
"type": "string" "type": "string"
}, },
"hero": { "Hero": {
"$ref": "#/components/schemas/SharedHeroComponent" "$ref": "#/components/schemas/SharedHeroComponent"
}, },
"content": { "content": {
@ -9178,38 +9221,38 @@
"items": { "items": {
"anyOf": [ "anyOf": [
{ {
"$ref": "#/components/schemas/SharedListComponent" "$ref": "#/components/schemas/DynamicZoneGalleryComponent"
}, },
{ {
"$ref": "#/components/schemas/DynamicZoneFullTextComponent" "$ref": "#/components/schemas/DynamicZoneFullTextComponent"
}, },
{
"$ref": "#/components/schemas/DynamicZoneEmphasiseArticleComponent"
},
{ {
"$ref": "#/components/schemas/DynamicZoneFullImageComponent" "$ref": "#/components/schemas/DynamicZoneFullImageComponent"
}, },
{ {
"$ref": "#/components/schemas/DynamicZoneGalleryComponent" "$ref": "#/components/schemas/DynamicZoneEmphasiseArticleComponent"
}, },
{ {
"$ref": "#/components/schemas/DynamicZoneDualColumnTextComponent" "$ref": "#/components/schemas/DynamicZoneDualColumnTextComponent"
}, },
{ {
"$ref": "#/components/schemas/DynamicZoneColumnImageTextComponent" "$ref": "#/components/schemas/DynamicZoneColumnImageTextComponent"
},
{
"$ref": "#/components/schemas/SharedListComponent"
} }
] ]
}, },
"discriminator": { "discriminator": {
"propertyName": "__component", "propertyName": "__component",
"mapping": { "mapping": {
"shared.list": "#/components/schemas/SharedListComponent",
"dynamic-zone.full-text": "#/components/schemas/DynamicZoneFullTextComponent",
"dynamic-zone.emphasise-article": "#/components/schemas/DynamicZoneEmphasiseArticleComponent",
"dynamic-zone.full-image": "#/components/schemas/DynamicZoneFullImageComponent",
"dynamic-zone.gallery": "#/components/schemas/DynamicZoneGalleryComponent", "dynamic-zone.gallery": "#/components/schemas/DynamicZoneGalleryComponent",
"dynamic-zone.full-text": "#/components/schemas/DynamicZoneFullTextComponent",
"dynamic-zone.full-image": "#/components/schemas/DynamicZoneFullImageComponent",
"dynamic-zone.emphasise-article": "#/components/schemas/DynamicZoneEmphasiseArticleComponent",
"dynamic-zone.dual-column-text": "#/components/schemas/DynamicZoneDualColumnTextComponent", "dynamic-zone.dual-column-text": "#/components/schemas/DynamicZoneDualColumnTextComponent",
"dynamic-zone.column-image-text": "#/components/schemas/DynamicZoneColumnImageTextComponent" "dynamic-zone.column-image-text": "#/components/schemas/DynamicZoneColumnImageTextComponent",
"shared.list": "#/components/schemas/SharedListComponent"
} }
} }
}, },
@ -9261,10 +9304,13 @@
"documentId": { "documentId": {
"type": "string" "type": "string"
}, },
"identifier": {
"type": "string"
},
"slug": { "slug": {
"type": "string" "type": "string"
}, },
"hero": { "Hero": {
"$ref": "#/components/schemas/SharedHeroComponent" "$ref": "#/components/schemas/SharedHeroComponent"
}, },
"content": { "content": {
@ -9272,38 +9318,38 @@
"items": { "items": {
"anyOf": [ "anyOf": [
{ {
"$ref": "#/components/schemas/SharedListComponent" "$ref": "#/components/schemas/DynamicZoneGalleryComponent"
}, },
{ {
"$ref": "#/components/schemas/DynamicZoneFullTextComponent" "$ref": "#/components/schemas/DynamicZoneFullTextComponent"
}, },
{
"$ref": "#/components/schemas/DynamicZoneEmphasiseArticleComponent"
},
{ {
"$ref": "#/components/schemas/DynamicZoneFullImageComponent" "$ref": "#/components/schemas/DynamicZoneFullImageComponent"
}, },
{ {
"$ref": "#/components/schemas/DynamicZoneGalleryComponent" "$ref": "#/components/schemas/DynamicZoneEmphasiseArticleComponent"
}, },
{ {
"$ref": "#/components/schemas/DynamicZoneDualColumnTextComponent" "$ref": "#/components/schemas/DynamicZoneDualColumnTextComponent"
}, },
{ {
"$ref": "#/components/schemas/DynamicZoneColumnImageTextComponent" "$ref": "#/components/schemas/DynamicZoneColumnImageTextComponent"
},
{
"$ref": "#/components/schemas/SharedListComponent"
} }
] ]
}, },
"discriminator": { "discriminator": {
"propertyName": "__component", "propertyName": "__component",
"mapping": { "mapping": {
"shared.list": "#/components/schemas/SharedListComponent",
"dynamic-zone.full-text": "#/components/schemas/DynamicZoneFullTextComponent",
"dynamic-zone.emphasise-article": "#/components/schemas/DynamicZoneEmphasiseArticleComponent",
"dynamic-zone.full-image": "#/components/schemas/DynamicZoneFullImageComponent",
"dynamic-zone.gallery": "#/components/schemas/DynamicZoneGalleryComponent", "dynamic-zone.gallery": "#/components/schemas/DynamicZoneGalleryComponent",
"dynamic-zone.full-text": "#/components/schemas/DynamicZoneFullTextComponent",
"dynamic-zone.full-image": "#/components/schemas/DynamicZoneFullImageComponent",
"dynamic-zone.emphasise-article": "#/components/schemas/DynamicZoneEmphasiseArticleComponent",
"dynamic-zone.dual-column-text": "#/components/schemas/DynamicZoneDualColumnTextComponent", "dynamic-zone.dual-column-text": "#/components/schemas/DynamicZoneDualColumnTextComponent",
"dynamic-zone.column-image-text": "#/components/schemas/DynamicZoneColumnImageTextComponent" "dynamic-zone.column-image-text": "#/components/schemas/DynamicZoneColumnImageTextComponent",
"shared.list": "#/components/schemas/SharedListComponent"
} }
} }
}, },

File diff suppressed because one or more lines are too long

View file

@ -4,7 +4,7 @@ export interface DynamicZoneColumnImageText extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_column_image_texts'; collectionName: 'components_dynamic_zone_column_image_texts';
info: { info: {
description: ''; description: '';
displayName: 'Column_Image_Text'; displayName: 'Text-Bild-Spalte';
icon: 'bulletList'; icon: 'bulletList';
}; };
attributes: { attributes: {
@ -19,7 +19,7 @@ export interface DynamicZoneColumnImageText extends Struct.ComponentSchema {
export interface DynamicZoneDualColumnText extends Struct.ComponentSchema { export interface DynamicZoneDualColumnText extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_dual_column_texts'; collectionName: 'components_dynamic_zone_dual_column_texts';
info: { info: {
displayName: 'Dual_Column_Text'; displayName: 'Text-Text-Spalte';
icon: 'stack'; icon: 'stack';
}; };
attributes: { attributes: {
@ -32,7 +32,7 @@ export interface DynamicZoneEmphasiseArticle extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_emphasise_articles'; collectionName: 'components_dynamic_zone_emphasise_articles';
info: { info: {
description: ''; description: '';
displayName: 'Emphasise_Article'; displayName: 'Artikel hervorheben';
icon: 'dashboard'; icon: 'dashboard';
}; };
attributes: { attributes: {
@ -46,7 +46,7 @@ export interface DynamicZoneFullImage extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_full_images'; collectionName: 'components_dynamic_zone_full_images';
info: { info: {
description: ''; description: '';
displayName: 'Full_Image'; displayName: 'Voll-Bild';
icon: 'dashboard'; icon: 'dashboard';
}; };
attributes: { attributes: {
@ -58,7 +58,7 @@ export interface DynamicZoneFullText extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_full_texts'; collectionName: 'components_dynamic_zone_full_texts';
info: { info: {
description: ''; description: '';
displayName: 'Full_Text'; displayName: 'Voll-Text';
icon: 'dashboard'; icon: 'dashboard';
}; };
attributes: { attributes: {
@ -69,7 +69,7 @@ export interface DynamicZoneFullText extends Struct.ComponentSchema {
export interface DynamicZoneGallery extends Struct.ComponentSchema { export interface DynamicZoneGallery extends Struct.ComponentSchema {
collectionName: 'components_dynamic_zone_galleries'; collectionName: 'components_dynamic_zone_galleries';
info: { info: {
displayName: 'Gallery'; displayName: 'Galerie';
icon: 'apps'; icon: 'apps';
}; };
attributes: { attributes: {
@ -81,7 +81,7 @@ export interface GlobalFooter extends Struct.ComponentSchema {
collectionName: 'components_global_footers'; collectionName: 'components_global_footers';
info: { info: {
description: ''; description: '';
displayName: 'Footer'; displayName: 'Fu\u00DFzeile';
icon: 'apps'; icon: 'apps';
}; };
attributes: { attributes: {
@ -95,7 +95,7 @@ export interface GlobalNavbar extends Struct.ComponentSchema {
collectionName: 'components_global_navbars'; collectionName: 'components_global_navbars';
info: { info: {
description: ''; description: '';
displayName: 'Navbar'; displayName: 'Navigationsleiste';
icon: 'bold'; icon: 'bold';
}; };
attributes: { attributes: {
@ -108,11 +108,11 @@ export interface ItemsNavbarItems extends Struct.ComponentSchema {
collectionName: 'components_items_left_navbar_items'; collectionName: 'components_items_left_navbar_items';
info: { info: {
description: ''; description: '';
displayName: 'Navbar_Items'; displayName: 'Navigations-\u00DCberpunkt';
icon: 'bulletList'; icon: 'bulletList';
}; };
attributes: { attributes: {
default_URL: Schema.Attribute.String; default_active_child: Schema.Attribute.String;
name: Schema.Attribute.String; name: Schema.Attribute.String;
navbar_sub_items: Schema.Attribute.Component< navbar_sub_items: Schema.Attribute.Component<
'items.navbar-sub-items', 'items.navbar-sub-items',
@ -127,7 +127,7 @@ export interface ItemsNavbarSubItems extends Struct.ComponentSchema {
collectionName: 'components_items_navbar_sub_items'; collectionName: 'components_items_navbar_sub_items';
info: { info: {
description: ''; description: '';
displayName: 'Navbar_Sub_Items'; displayName: 'Navigations-Unterpunkt';
icon: 'bulletList'; icon: 'bulletList';
}; };
attributes: { attributes: {
@ -171,7 +171,7 @@ export interface SharedList extends Struct.ComponentSchema {
collectionName: 'components_shared_lists'; collectionName: 'components_shared_lists';
info: { info: {
description: ''; description: '';
displayName: 'list'; displayName: 'Inhaltsauswahl';
icon: 'apps'; icon: 'apps';
}; };
attributes: { attributes: {

View file

@ -373,7 +373,7 @@ export interface ApiArticleArticle extends Struct.CollectionTypeSchema {
collectionName: 'articles'; collectionName: 'articles';
info: { info: {
description: ''; description: '';
displayName: 'Articles'; displayName: 'Artikel';
pluralName: 'articles'; pluralName: 'articles';
singularName: 'article'; singularName: 'article';
}; };
@ -409,12 +409,14 @@ export interface ApiArticleArticle extends Struct.CollectionTypeSchema {
}; };
}>; }>;
description: Schema.Attribute.String & description: Schema.Attribute.String &
Schema.Attribute.Required &
Schema.Attribute.SetPluginOptions<{ Schema.Attribute.SetPluginOptions<{
i18n: { i18n: {
localized: true; localized: true;
}; };
}>; }>;
image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'> & image: Schema.Attribute.Media<'images' | 'files' | 'videos' | 'audios'> &
Schema.Attribute.Required &
Schema.Attribute.SetPluginOptions<{ Schema.Attribute.SetPluginOptions<{
i18n: { i18n: {
localized: false; localized: false;
@ -427,12 +429,14 @@ export interface ApiArticleArticle extends Struct.CollectionTypeSchema {
>; >;
publishedAt: Schema.Attribute.DateTime; publishedAt: Schema.Attribute.DateTime;
slug: Schema.Attribute.UID<'title'> & slug: Schema.Attribute.UID<'title'> &
Schema.Attribute.Required &
Schema.Attribute.SetPluginOptions<{ Schema.Attribute.SetPluginOptions<{
i18n: { i18n: {
localized: true; localized: true;
}; };
}>; }>;
title: Schema.Attribute.String & title: Schema.Attribute.String &
Schema.Attribute.Required &
Schema.Attribute.SetPluginOptions<{ Schema.Attribute.SetPluginOptions<{
i18n: { i18n: {
localized: true; localized: true;
@ -448,7 +452,7 @@ export interface ApiEventEvent extends Struct.CollectionTypeSchema {
collectionName: 'events'; collectionName: 'events';
info: { info: {
description: ''; description: '';
displayName: 'Events'; displayName: 'Termine';
pluralName: 'events'; pluralName: 'events';
singularName: 'event'; singularName: 'event';
}; };
@ -472,6 +476,7 @@ export interface ApiEventEvent extends Struct.CollectionTypeSchema {
}; };
}>; }>;
description: Schema.Attribute.String & description: Schema.Attribute.String &
Schema.Attribute.Required &
Schema.Attribute.SetPluginOptions<{ Schema.Attribute.SetPluginOptions<{
i18n: { i18n: {
localized: true; localized: true;
@ -481,12 +486,14 @@ export interface ApiEventEvent extends Struct.CollectionTypeSchema {
localizations: Schema.Attribute.Relation<'oneToMany', 'api::event.event'>; localizations: Schema.Attribute.Relation<'oneToMany', 'api::event.event'>;
publishedAt: Schema.Attribute.DateTime; publishedAt: Schema.Attribute.DateTime;
slug: Schema.Attribute.UID<'title'> & slug: Schema.Attribute.UID<'title'> &
Schema.Attribute.Required &
Schema.Attribute.SetPluginOptions<{ Schema.Attribute.SetPluginOptions<{
i18n: { i18n: {
localized: true; localized: true;
}; };
}>; }>;
title: Schema.Attribute.String & title: Schema.Attribute.String &
Schema.Attribute.Required &
Schema.Attribute.SetPluginOptions<{ Schema.Attribute.SetPluginOptions<{
i18n: { i18n: {
localized: true; localized: true;
@ -527,6 +534,7 @@ export interface ApiGlobalGlobal extends Struct.SingleTypeSchema {
locale: Schema.Attribute.String; locale: Schema.Attribute.String;
localizations: Schema.Attribute.Relation<'oneToMany', 'api::global.global'>; localizations: Schema.Attribute.Relation<'oneToMany', 'api::global.global'>;
navbar: Schema.Attribute.Component<'global.navbar', false> & navbar: Schema.Attribute.Component<'global.navbar', false> &
Schema.Attribute.Required &
Schema.Attribute.SetPluginOptions<{ Schema.Attribute.SetPluginOptions<{
i18n: { i18n: {
localized: true; localized: true;
@ -543,7 +551,7 @@ export interface ApiHomepageHomepage extends Struct.SingleTypeSchema {
collectionName: 'homepages'; collectionName: 'homepages';
info: { info: {
description: ''; description: '';
displayName: 'Homepage'; displayName: 'Startseite';
pluralName: 'homepages'; pluralName: 'homepages';
singularName: 'homepage'; singularName: 'homepage';
}; };
@ -560,6 +568,7 @@ export interface ApiHomepageHomepage extends Struct.SingleTypeSchema {
'dynamic-zone.emphasise-article', 'dynamic-zone.emphasise-article',
'dynamic-zone.dual-column-text', 'dynamic-zone.dual-column-text',
'dynamic-zone.column-image-text', 'dynamic-zone.column-image-text',
'shared.list',
] ]
>; >;
createdAt: Schema.Attribute.DateTime; createdAt: Schema.Attribute.DateTime;
@ -582,7 +591,7 @@ export interface ApiOperationOperation extends Struct.CollectionTypeSchema {
collectionName: 'operations'; collectionName: 'operations';
info: { info: {
description: ''; description: '';
displayName: 'Operations'; displayName: 'Eins\u00E4tze';
pluralName: 'operations'; pluralName: 'operations';
singularName: 'operation'; singularName: 'operation';
}; };
@ -601,12 +610,6 @@ export interface ApiOperationOperation extends Struct.CollectionTypeSchema {
localized: false; localized: false;
}; };
}>; }>;
content: Schema.Attribute.Blocks &
Schema.Attribute.SetPluginOptions<{
i18n: {
localized: true;
};
}>;
createdAt: Schema.Attribute.DateTime; createdAt: Schema.Attribute.DateTime;
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private; Schema.Attribute.Private;
@ -618,6 +621,7 @@ export interface ApiOperationOperation extends Struct.CollectionTypeSchema {
}; };
}>; }>;
description: Schema.Attribute.String & description: Schema.Attribute.String &
Schema.Attribute.Required &
Schema.Attribute.SetPluginOptions<{ Schema.Attribute.SetPluginOptions<{
i18n: { i18n: {
localized: true; localized: true;
@ -630,12 +634,14 @@ export interface ApiOperationOperation extends Struct.CollectionTypeSchema {
>; >;
publishedAt: Schema.Attribute.DateTime; publishedAt: Schema.Attribute.DateTime;
slug: Schema.Attribute.UID<'title'> & slug: Schema.Attribute.UID<'title'> &
Schema.Attribute.Required &
Schema.Attribute.SetPluginOptions<{ Schema.Attribute.SetPluginOptions<{
i18n: { i18n: {
localized: true; localized: true;
}; };
}>; }>;
title: Schema.Attribute.String & title: Schema.Attribute.String &
Schema.Attribute.Required &
Schema.Attribute.SetPluginOptions<{ Schema.Attribute.SetPluginOptions<{
i18n: { i18n: {
localized: true; localized: true;
@ -651,7 +657,7 @@ export interface ApiPagePage extends Struct.CollectionTypeSchema {
collectionName: 'pages'; collectionName: 'pages';
info: { info: {
description: ''; description: '';
displayName: 'Pages'; displayName: 'Seiten';
pluralName: 'pages'; pluralName: 'pages';
singularName: 'page'; singularName: 'page';
}; };
@ -666,13 +672,13 @@ export interface ApiPagePage extends Struct.CollectionTypeSchema {
attributes: { attributes: {
content: Schema.Attribute.DynamicZone< content: Schema.Attribute.DynamicZone<
[ [
'shared.list',
'dynamic-zone.full-text',
'dynamic-zone.emphasise-article',
'dynamic-zone.full-image',
'dynamic-zone.gallery', 'dynamic-zone.gallery',
'dynamic-zone.full-text',
'dynamic-zone.full-image',
'dynamic-zone.emphasise-article',
'dynamic-zone.dual-column-text', 'dynamic-zone.dual-column-text',
'dynamic-zone.column-image-text', 'dynamic-zone.column-image-text',
'shared.list',
] ]
> & > &
Schema.Attribute.SetPluginOptions<{ Schema.Attribute.SetPluginOptions<{
@ -683,24 +689,31 @@ export interface ApiPagePage extends Struct.CollectionTypeSchema {
createdAt: Schema.Attribute.DateTime; createdAt: Schema.Attribute.DateTime;
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private; Schema.Attribute.Private;
hero: Schema.Attribute.Component<'shared.hero', false> & Hero: Schema.Attribute.Component<'shared.hero', false> &
Schema.Attribute.Required & Schema.Attribute.Required &
Schema.Attribute.SetPluginOptions<{ Schema.Attribute.SetPluginOptions<{
i18n: { i18n: {
localized: true; localized: true;
}; };
}>; }>;
identifier: Schema.Attribute.String &
Schema.Attribute.Required &
Schema.Attribute.Unique &
Schema.Attribute.SetPluginOptions<{
i18n: {
localized: true;
};
}>;
locale: Schema.Attribute.String; locale: Schema.Attribute.String;
localizations: Schema.Attribute.Relation<'oneToMany', 'api::page.page'>; localizations: Schema.Attribute.Relation<'oneToMany', 'api::page.page'>;
publishedAt: Schema.Attribute.DateTime; publishedAt: Schema.Attribute.DateTime;
slug: Schema.Attribute.UID & slug: Schema.Attribute.UID<'identifier'> &
Schema.Attribute.Required & Schema.Attribute.Required &
Schema.Attribute.SetPluginOptions<{ Schema.Attribute.SetPluginOptions<{
i18n: { i18n: {
localized: true; localized: true;
}; };
}> & }>;
Schema.Attribute.DefaultTo<'slug'>;
updatedAt: Schema.Attribute.DateTime; updatedAt: Schema.Attribute.DateTime;
updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & updatedBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private; Schema.Attribute.Private;