From 9c93d46c479c944e6b70a4cf7cd9a9ab20b960cf Mon Sep 17 00:00:00 2001 From: nicwands Date: Fri, 3 Jul 2026 15:37:10 -0400 Subject: [PATCH] add footer info --- src/api/global/content-types/global/schema.json | 3 +++ types/generated/contentTypes.d.ts | 1 + 2 files changed, 4 insertions(+) diff --git a/src/api/global/content-types/global/schema.json b/src/api/global/content-types/global/schema.json index 24d21a8..7b05df7 100644 --- a/src/api/global/content-types/global/schema.json +++ b/src/api/global/content-types/global/schema.json @@ -24,6 +24,9 @@ "relation": "oneToMany", "target": "api::mosaic-item.mosaic-item" }, + "footer_info": { + "type": "blocks" + }, "seo": { "type": "component", "component": "global.seo", diff --git a/types/generated/contentTypes.d.ts b/types/generated/contentTypes.d.ts index e84d14f..2578e88 100644 --- a/types/generated/contentTypes.d.ts +++ b/types/generated/contentTypes.d.ts @@ -454,6 +454,7 @@ export interface ApiGlobalGlobal extends Struct.SingleTypeSchema { createdAt: Schema.Attribute.DateTime; createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> & Schema.Attribute.Private; + footer_info: Schema.Attribute.Blocks; header_copy: Schema.Attribute.Blocks; header_dl: Schema.Attribute.Component<'global.descriptive-list', true>; locale: Schema.Attribute.String & Schema.Attribute.Private;