OBJECT

ExtensionViews

The potential anchor-specific configurations and extension can have.

link GraphQL Schema definition

1type ExtensionViews {
2
3# The developer configuration of the extension as a component extension, if
4# supported.
5component: ComponentView
6
7# The developer configuration of the extension's configuration view, if supported.
8config: ConfigView
9
10# The configuration for a hidden extension. The only hidden extension is used for
11# load testing.
12hidden: HiddenView
13
14# The developer configuration of the extension's live configuration dashboard
15# view, if supported.
16liveConfig: LiveConfigView
17
18# The developer configuration of the extension as a mobile extension, if
19# supported.
20mobile: MobileView
21
22# The developer configuration of the extension as a panel extension, if supported.
23panel: PanelView
24
25# The developer configuration of the extension as a video overlay extension, if
26# supported.
27videoOverlay: VideoOverlayView
28
29}