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",
"components": [
"global.copy",
"global.media"
"global.media",
"global.dipytch"
]
}
}

View file

@ -485,7 +485,9 @@ export interface ApiMosaicItemMosaicItem extends Struct.CollectionTypeSchema {
draftAndPublish: true;
};
attributes: {
content: Schema.Attribute.DynamicZone<['global.copy', 'global.media']>;
content: Schema.Attribute.DynamicZone<
['global.copy', 'global.media', 'global.dipytch']
>;
createdAt: Schema.Attribute.DateTime;
createdBy: Schema.Attribute.Relation<'oneToOne', 'admin::user'> &
Schema.Attribute.Private;