We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b39001d commit f74ed34Copy full SHA for f74ed34
packages/field-plugin/src/messaging/pluginMessage/containerToPluginMessage/Asset.ts
@@ -3,6 +3,15 @@ import { AssetSelectedMessage } from './AssetSelectedMessage'
3
4
export type Asset = {
5
filename: string
6
+ fieldtype: 'asset'
7
+ name: string
8
+ meta_data: Record<string, string>
9
+ title: string
10
+ copyright: string
11
+ focus: string
12
+ alt: string
13
+ source: string
14
+ is_private: boolean
15
}
16
17
export const isAsset = (data: unknown): data is Asset =>
0 commit comments