OBJECT

ExtensionInstallationFeatureFlags

The set of extension features an installer can opt in or out of.

link GraphQL Schema definition

1type ExtensionInstallationFeatureFlags {
2
3# Whether the installer has granted the extension access to their subscriptions
4# list.
5canRetrieveSubscriptionStatus: Boolean!
6
7# Whether the installer has opted in or out of chat capabilities in extensions.
8canSendChat: Boolean!
9
10# Whether the installer has opted in or out of bit capabilities in extensions.
11canUseBits: Boolean!
12
13# The dynamic management settings for the extension installation.
14dynamicManagement: [ExtensionInstallationDynamicManagement!]
15
16}