ENUM

UpdateExtensionManifestError

UpdateExtensionManifestError is an error associated with the updateExtensionManifest mutation.

link GraphQL Schema definition

1enum UpdateExtensionManifestError {
2
3# User is unable to make modifications to the extension.
4UNAUTHORIZED
5
6# Version specified is invalid.
7INVALID_VERSION
8
9# At least one anchor must be specified.
10ANCHOR_REQUIRED
11
12# HasZoom was specified but ZoomPixels is missing.
13INVALID_ZOOM
14
15# The number of whitelisted broadcasters exceeds the limit.
16MAX_BROADCASTERS
17
18# The number of whitelisted testing users exceeds the limit.
19MAX_TESTERS
20
21# The number of whitelisted config URLs exceeds the limit.
22MAX_WHITELISTED_CONFIG_URLS
23
24# The number of whitelisted panel URLs exceeds the limit.
25MAX_WHITELISTED_PANEL_URLS
26
27# Extension names must be shorter than 40 characters.
28INVALID_NAME_LENGTH
29
30# Extension description must be shorter than 1024 characters.
31INVALID_DESCRIPTION_LENGTH
32
33# Extension summary must be shorter than 140 characters.
34INVALID_SUMMARY_LENGTH
35
36# Extension author email must not be nil. Lenght must be < 254, Parses a single
37# RFC 5322 address.
38INVALID_AUTHOR_EMAIL
39
40# Extension support email must not be nil. Lenght must be < 254, Parses a single
41# RFC 5322 address.
42INVALID_SUPPORT_EMAIL
43
44# Extension author name length must be > 40.
45INVALID_AUTHOR_NAME_LENGTH
46
47# Extension testing base uri must not be nil and empty scheme. Scheme should be
48# http or https. User should not be nil.
49INVALID_TESTING_BASE_URI
50
51# Extension terms uri must not be nil and empty scheme. Scheme should be http or
52# https. User should not be nil.
53INVALID_TERMS_URI
54
55# Extension privacy uri must not be nil and empty scheme. Scheme should be http or
56# https. User should not be nil.
57INVALID_PRIVACY_URI
58
59# Extension component viewer path must not be nil. Format should be
60# BaseUri/Extension_Path.
61INVALID_COMPONENT_VIEWER_PATH
62
63# Extension panel viewer path must not be nil. Format should be
64# BaseUri/Extension_Path.
65INVALID_PANEL_VIEWER_PATH
66
67# Extension video overlay viewer path must not be nil. Format should be
68# BaseUri/Extension_Path.
69INVALID_VIDEO_OVERLAY_VIEWER_PATH
70
71# Extension config viewer path must not be nil. Format should be
72# BaseUri/Extension_Path.
73INVALID_CONFIG_VIEWER_PATH
74
75# Extension live config viewer path must not be nil. Format should be
76# BaseUri/Extension_Path.
77INVALID_LIVE_CONFIG_VIEWER_PATH
78
79# Extension mobile viewer path must not be nil. Format should be
80# BaseUri/Extension_Path.
81INVALID_MOBILE_VIEWER_PATH
82
83# Extension component aspect width must be < 50 or > 1.
84INVALID_COMPONENT_ASPECT_WIDTH
85
86# Extension component aspect height must be < 50 or > 1.
87INVALID_COMPONENT_ASPECT_HEIGHT
88
89# Extension panel hiehgt must be < 500 or > 100.
90INVALID_PANEL_HEIGHT
91
92# Extension Bits Support Level must ba valid member of the BitsSupportLevelEnum.
93INVALID_BITS_SUPPORT_LEVEL
94}