OBJECT

SetExtensionConfigurationPayload

SetExtensionConfiguration returns the Input as the extensions configuration endpoint returns a 204.

link GraphQL Schema definition

1type SetExtensionConfigurationPayload {
2
3# The channel to which this configuration applies to.
4channelID: ID
5
6# The version of the configuration.
7configVersion: String
8
9# The configuration string to post.
10content: String
11
12# Error code for the frontend to handle.
13error: SetExtensionConfigurationError
14
15# The extension ID.
16extensionID: ID
17
18}