OBJECT

ExtensionDeveloperManifest

ExtensionDeveloperManifest is the developer specific extension data.

link GraphQL Schema definition

1type ExtensionDeveloperManifest {
2
3# Author email.
4authorEmail: String!
5
6# Time when an extension was created.
7createdAt: String!
8
9# Time when an extensions version was last transitioned.
10lastTransitionedAt: Time
11
12# Testing uri for extension development.
13testingBaseURI: String!
14
15# Current state of this version in the development timeline.
16versionState: ExtensionState!
17
18}