ENUM

UpdateExtensionDiscoveryDataError

UpdateExtensionDiscoveryDataError is an error associated with the updateExtensionDiscoveryData mutation.

link GraphQL Schema definition

1enum UpdateExtensionDiscoveryDataError {
2
3# User is unable to make modifications to the extension.
4UNAUTHORIZED
5
6# Version specified is invalid.
7INVALID_VERSION
8
9# Extension names must be shorter than 40 characters.
10INVALID_NAME_LENGTH
11
12# Extension description must be shorter than 1024 characters.
13INVALID_DESCRIPTION_LENGTH
14
15# Extension summary must be shorter than 140 characters.
16INVALID_SUMMARY_LENGTH
17
18# Extension author email must not be nil. Lenght must be < 254, Parses a single
19# RFC 5322 address.
20INVALID_AUTHOR_EMAIL
21
22# Extension support email must not be nil. Lenght must be < 254, Parses a single
23# RFC 5322 address.
24INVALID_SUPPORT_EMAIL
25
26# Extension author name length must be > 40.
27INVALID_AUTHOR_NAME_LENGTH
28
29# Extension testing base uri must not be nil and empty scheme. Scheme should be
30# http or https. User should not be nil.
31INVALID_TESTING_BASE_URI
32
33# Extension terms uri must not be nil and empty scheme. Scheme should be http or
34# https. User should not be nil.
35INVALID_TERMS_URI
36
37# Extension privacy uri must not be nil and empty scheme. Scheme should be http or
38# https. User should not be nil.
39INVALID_PRIVACY_URI
40}