ENUM

CloneExtensionManifestError

CloneExtensionManifestError is an error associated with the cloneExtensionManifest mutation.

link GraphQL Schema definition

1enum CloneExtensionManifestError {
2
3# User is unable to clone the extension.
4UNAUTHORIZED
5
6# Version specified is invalid.
7INVALID_NEW_VERSION
8
9# The version to clone to already exists.
10VERSION_ALREDY_EXISTS
11
12# The Version to clone from does not exist.
13VERSION_NOT_FOUND
14}