ENUM

TransitionExtensionStateError

TransitionExtensionStateError is an error associated with the transitionExtensionState mutation.

link GraphQL Schema definition

1enum TransitionExtensionStateError {
2
3# User is unable to make modifications to the extension.
4UNAUTHORIZED
5
6# The version does not have an asset hash and it must for the transition.
7MISSING_ASSET_HASH
8
9# Review notes were not specified when transitioning an extension to IN_REVIEW.
10MISSING_REVIEW_NOTES
11
12# Test channel was not specified when transitioning an extension to IN_REVIEW.
13MISSING_TEST_CHANNEL
14
15# Only one version of an Extension can be in a review state (APPROVED, or in
16# IN_REVIEW) at a time.
17MULTIPLE_VERSIONS_IN_REVIEW
18
19# Author email cannot be empty when transit to READY_FOR_REVIEW.
20TRANSITION_MISSING_AUTHOR_EMAIL
21
22# Author name cannot be empty when transit to READY_FOR_REVIEW.
23TRANSITION_MISSING_AUTHOR_NAME
24
25# Category cannot be empty when transit to READY_FOR_REVIEW.
26TRANSITION_MISSING_CATEGORY
27
28# Support email cannot be empty when transit to READY_FOR_REVIEW.
29TRANSITION_MISSING_SUPPORT_EMAIL
30
31# Name cannot be empty when transit to READY_FOR_REVIEW.
32TRANSITION_MISSING_NAME
33
34# Version cannot be empty when transit to READY_FOR_REVIEW.
35TRANSITION_MISSING_VERSION
36
37# Testing base URI cannot be empty when transit to READY_FOR_REVIEW.
38TRANSITION_MISSING_TESTING_BASE_URI
39
40# Summary cannot be empty when transit to READY_FOR_REVIEW.
41TRANSITION_MISSING_SUMMARY
42
43# Description cannot be empty when transit to READY_FOR_REVIEW.
44TRANSITION_MISSING_DESCRIPTION
45
46# Screenshot URLs cannot be empy when transit to READY_FOR_REVIEW.
47TRANSITION_MISSING_SCREENSHOT_URLS
48
49# Invalid state transition.
50INVALID_STATE_TRANSITION
51
52# Version specified is invalid.
53INVALID_VERSION
54
55# At least one anchor must be specified.
56ANCHOR_REQUIRED
57
58# HasZoom was specified but ZoomPixels is missing.
59INVALID_ZOOM
60
61# The number of whitelisted broadcasters exceeds the limit.
62MAX_BROADCASTERS
63
64# The number of whitelisted testing users exceeds the limit.
65MAX_TESTERS
66
67# The number of whitelisted config URLs exceeds the limit.
68MAX_WHITELISTED_CONFIG_URLS
69
70# The number of whitelisted panel URLs exceeds the limit.
71MAX_WHITELISTED_PANEL_URLS
72
73# Extension names must be shorter than 40 characters.
74INVALID_NAME_LENGTH
75
76# Extension description must be shorter than 1024 characters.
77INVALID_DESCRIPTION_LENGTH
78
79# Extension summary must be shorter than 140 characters.
80INVALID_SUMMARY_LENGTH
81
82# Extension author email must not be nil. Lenght must be < 254, Parses a single
83# RFC 5322 address.
84INVALID_AUTHOR_EMAIL
85
86# Extension support email must not be nil. Lenght must be < 254, Parses a single
87# RFC 5322 address.
88INVALID_SUPPORT_EMAIL
89
90# Extension author name length must be > 40.
91INVALID_AUTHOR_NAME_LENGTH
92
93# Extension testing base uri must not be nil and empty scheme. Scheme should be
94# http or https. User should not be nil.
95INVALID_TESTING_BASE_URI
96
97# Extension terms uri must not be nil and empty scheme. Scheme should be http or
98# https. User should not be nil.
99INVALID_TERMS_URI
100
101# Extension privacy uri must not be nil and empty scheme. Scheme should be http or
102# https. User should not be nil.
103INVALID_PRIVACY_URI
104
105# Extension component viewer path must not be nil. Format should be
106# BaseUri/Extension_Path.
107INVALID_COMPONENT_VIEWER_PATH
108
109# Extension panel viewer path must not be nil. Format should be
110# BaseUri/Extension_Path.
111INVALID_PANEL_VIEWER_PATH
112
113# Extension video overlay viewer path must not be nil. Format should be
114# BaseUri/Extension_Path.
115INVALID_VIDEO_OVERLAY_VIEWER_PATH
116
117# Extension config viewer path must not be nil. Format should be
118# BaseUri/Extension_Path.
119INVALID_CONFIG_VIEWER_PATH
120
121# Extension live config viewer path must not be nil. Format should be
122# BaseUri/Extension_Path.
123INVALID_LIVE_CONFIG_VIEWER_PATH
124
125# Extension mobile viewer path must not be nil. Format should be
126# BaseUri/Extension_Path.
127INVALID_MOBILE_VIEWER_PATH
128
129# Extension component aspect width must be < 50 or > 1.
130INVALID_COMPONENT_ASPECT_WIDTH
131
132# Extension component aspect height must be < 50 or > 1.
133INVALID_COMPONENT_ASPECT_HEIGHT
134
135# Extension panel hiehgt must be < 500 or > 100.
136INVALID_PANEL_HEIGHT
137
138# Extension Bits Support Level must ba valid member of the BitsSupportLevelEnum.
139INVALID_BITS_SUPPORT_LEVEL
140
141# Scale pixels must be set to a positive integer when autoscale is true.
142INVALID_SCALING_PIXELS
143
144# Aspect Ratio X must be set to a positive integer.
145INVALID_COMPONENT_ASPECT_RATIO_X
146
147# Aspect Ratio Y must be set to a positive integer.
148INVALID_COMPONENT_ASPECT_RATIO_Y
149
150# Target Height must be set to a positve integer.
151INVALID_COMPONENT_TARGET_HEIGHT
152}