OBJECT
ExtensionCapabilities
ExtensionCapabilities contains data about what an Extension can do, in general, and at the time of interaction.
link GraphQL Schema definition
1 type ExtensionCapabilities { 2 3 # The bit support level required by the broadcaster for the extension to operate. 4 # Defaults to "NONE". 5 : ExtensionBitsSupportLevel! 6 7 # Location of configuration. 8 : ExtensionConfigurationLocation! 9 10 # Does this extension use bits. 11 : Boolean! 12 13 # Does this extension support chat. 14 : Boolean! 15 16 # Required configuration string. 17 : String! 18 19 # The subscription support level required by the broadcaster for the extension to 20 # operate. Defaults to "NONE". 21 : ExtensionSubscriptionsSupportLevel! 22 23 # Whitelists for restricting extension access and behavior. 24 : ExtensionWhitelists 25 26 # Will this extension request an identity link. 27 : Boolean! 28 29 }