add diptych to mosaic content

This commit is contained in:
nicwands 2026-06-23 11:09:52 -04:00
parent 721bc4bf78
commit f122cfd5fb
2 changed files with 5 additions and 2 deletions

View file

@ -39,7 +39,8 @@
"type": "dynamiczone", "type": "dynamiczone",
"components": [ "components": [
"global.copy", "global.copy",
"global.media" "global.media",
"global.dipytch"
] ]
} }
} }

View file

@ -485,7 +485,9 @@ export interface ApiMosaicItemMosaicItem extends Struct.CollectionTypeSchema {
draftAndPublish: true; draftAndPublish: true;
}; };
attributes: { attributes: {
content: Schema.Attribute.DynamicZone<['global.copy', 'global.media']>; content: Schema.Attribute.DynamicZone<
['global.copy', 'global.media', 'global.dipytch']
>;
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;