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