@@ -7,6 +7,22 @@ import {
7
7
BugReportingStateScreen ,
8
8
type BugReportingStateScreenProp ,
9
9
} from '../screens/bug-reporting/BugReportingStateScreen' ;
10
+ import {
11
+ ExtendedBugReportStateScreen ,
12
+ type ExtendedBugReportStateScreenProp ,
13
+ } from '../screens/bug-reporting/ExtendedBugReportStateScreen' ;
14
+ import {
15
+ BugReportingTypesScreen ,
16
+ type BugReportingTypesScreenProp ,
17
+ } from '../screens/bug-reporting/BugReportingTypesScreen' ;
18
+ import {
19
+ DisclaimerTextScreen ,
20
+ type DisclaimerTextScreenProp ,
21
+ } from '../screens/bug-reporting/DisclaimerTextScreen' ;
22
+ import {
23
+ InvocationOptionsScreen ,
24
+ type InvocationOptionsScreenProp ,
25
+ } from '../screens/bug-reporting/InvocationOptionsScreen' ;
10
26
import { CrashReportingScreen } from '../screens/CrashReportingScreen' ;
11
27
import { FeatureRequestsScreen } from '../screens/FeatureRequestsScreen' ;
12
28
import { HomeScreen } from '../screens/HomeScreen' ;
@@ -35,11 +51,28 @@ import { HttpScreen } from '../screens/apm/HttpScreen';
35
51
import { WebViewsScreen } from '../screens/apm/webViews/WebViewsScreen' ;
36
52
import { FullWebViewsScreen } from '../screens/apm/webViews/FullWebViewsScreen' ;
37
53
import { PartialWebViewsScreen } from '../screens/apm/webViews/PartialWebViewsScreen' ;
54
+ import {
55
+ InvocationEventsScreen ,
56
+ type InvocationEventsScreenProp ,
57
+ } from '../screens/bug-reporting/InvocationEventsScreen' ;
58
+ import {
59
+ SessionProfilerScreen ,
60
+ type SessionProfilerScreenProp ,
61
+ } from '../screens/bug-reporting/SessionProfilerScreen' ;
38
62
39
63
export type HomeStackParamList = {
40
64
Home : undefined ;
65
+
66
+ // Bug Reporting //
41
67
BugReporting : undefined ;
42
68
BugReportingState : BugReportingStateScreenProp ;
69
+ ExtendedBugReportState : ExtendedBugReportStateScreenProp ;
70
+ BugReportingTypes : BugReportingTypesScreenProp ;
71
+ DisclaimerText : DisclaimerTextScreenProp ;
72
+ InvocationEvents : InvocationEventsScreenProp ;
73
+ SessionProfiler : SessionProfilerScreenProp ;
74
+ InvocationOptions : InvocationOptionsScreenProp ;
75
+
43
76
CrashReporting : undefined ;
44
77
FeatureRequests : undefined ;
45
78
Replies : undefined ;
@@ -74,6 +107,8 @@ export const HomeStackNavigator: React.FC = () => {
74
107
return (
75
108
< HomeStack . Navigator >
76
109
< HomeStack . Screen name = "Home" component = { HomeScreen } />
110
+
111
+ { /* Bug Reporting */ }
77
112
< HomeStack . Screen
78
113
name = "BugReporting"
79
114
component = { BugReportingScreen }
@@ -84,6 +119,37 @@ export const HomeStackNavigator: React.FC = () => {
84
119
component = { BugReportingStateScreen }
85
120
options = { { title : 'Bug Reporting State' } }
86
121
/>
122
+ < HomeStack . Screen
123
+ name = "ExtendedBugReportState"
124
+ component = { ExtendedBugReportStateScreen }
125
+ options = { { title : 'Extended Bug Report State' } }
126
+ />
127
+ < HomeStack . Screen
128
+ name = "BugReportingTypes"
129
+ component = { BugReportingTypesScreen }
130
+ options = { { title : 'Bug Reporting Types' } }
131
+ />
132
+ < HomeStack . Screen
133
+ name = "DisclaimerText"
134
+ component = { DisclaimerTextScreen }
135
+ options = { { title : 'Disclaimer Text' } }
136
+ />
137
+ < HomeStack . Screen
138
+ name = "InvocationEvents"
139
+ component = { InvocationEventsScreen }
140
+ options = { { title : 'Invocation Events' } }
141
+ />
142
+ < HomeStack . Screen
143
+ name = "SessionProfiler"
144
+ component = { SessionProfilerScreen }
145
+ options = { { title : 'Session Profiler' } }
146
+ />
147
+ < HomeStack . Screen
148
+ name = "InvocationOptions"
149
+ component = { InvocationOptionsScreen }
150
+ options = { { title : 'Invocation Options' } }
151
+ />
152
+
87
153
< HomeStack . Screen
88
154
name = "CrashReporting"
89
155
component = { CrashReportingScreen }
0 commit comments