OBJECT

ExtensionRequiredAction

The action a user must take to complete an activation of an extension installation.

link GraphQL Schema definition

1type ExtensionRequiredAction {
2
3# On PROMPT_FOR_PERMISSIONS the redirectURI to load for OAuth.
4redirectURI: String @deprecated( reason: "PROMPT_FOR_PERMISSIONS is no longer a valid required action" )
5
6# The action the user must take in order to complete the activation.
7type: ExtensionRequiredActionType!
8
9}