OBJECT

ExtensionInstallationAbilities

The set of abilities an extension is authorized to use.

link GraphQL Schema definition

1type ExtensionInstallationAbilities {
2
3# Whether the extension can use bits in the current context.
4isBitsEnabled: Boolean!
5
6# Whether the extension can send chat messages in the current context.
7isChatEnabled: Boolean!
8
9# Whether the extension has access to subscription status in the current context.
10isSubscriptionStatusAvailable: Boolean!
11
12}