INPUT_OBJECT

UpdateExtensionManifestInput

UpdateExtensionManifestInput updates the manifest.

link GraphQL Schema definition

1input UpdateExtensionManifestInput {
4
2# ExtensionAssetManifest is data related to the assets of an extension.
3assetManifest: ExtensionAssetManifestInput!
7
5# Data about what an Extension can do, in general, and at the time of interaction.
6capabilities: ExtensionCapabilitiesInput!
10
8# ExtensionDeveloperManifest is the developer specific extension data.
9developerManifest: ExtensionDeveloperManifestInput!
13
11# Extension metadata used for discovery.
12discoveryManifest: ExtensionDiscoveryManifestInput!
16
14# The extension ID of the manifest to update.
15id: ID!
19
17# The extension version to update.
18version: String!
22
20# Extension views.
21views: ExtensionViewsInput!
23}