@@ -62,6 +62,7 @@ export const productScenes: Record<string, () => Promise<any>> = {
6262 '../../products/error_tracking/frontend/scenes/ErrorTrackingConfigurationScene/ErrorTrackingConfigurationScene'
6363 ) ,
6464 Game368Hedgehogs : ( ) => import ( '../../products/games/368Hedgehogs/368Hedgehogs' ) ,
65+ FlappyHog : ( ) => import ( '../../products/games/FlappyHog/FlappyHog' ) ,
6566 Links : ( ) => import ( '../../products/links/frontend/LinksScene' ) ,
6667 Link : ( ) => import ( '../../products/links/frontend/LinkScene' ) ,
6768 LiveDebugger : ( ) => import ( '../../products/live_debugger/frontend/LiveDebugger' ) ,
@@ -113,6 +114,7 @@ export const productRoutes: Record<string, [string, string]> = {
113114 '/error_tracking/alerts/:id' : [ 'HogFunction' , 'errorTrackingAlert' ] ,
114115 '/error_tracking/alerts/new/:templateId' : [ 'HogFunction' , 'errorTrackingAlertNew' ] ,
115116 '/games/368hedgehogs' : [ 'Game368Hedgehogs' , 'game368Hedgehogs' ] ,
117+ '/games/flappyhog' : [ 'FlappyHog' , 'flappyHog' ] ,
116118 '/links' : [ 'Links' , 'links' ] ,
117119 '/link/:id' : [ 'Link' , 'link' ] ,
118120 '/live-debugger' : [ 'LiveDebugger' , 'liveDebugger' ] ,
@@ -255,6 +257,7 @@ export const productConfiguration: Record<string, any> = {
255257 ErrorTrackingIssueFingerprints : { projectBased : true , name : 'Error tracking issue fingerprints' } ,
256258 ErrorTrackingConfiguration : { projectBased : true , name : 'Error tracking configuration' } ,
257259 Game368Hedgehogs : { name : '368Hedgehogs' , projectBased : true , activityScope : 'Games' } ,
260+ FlappyHog : { name : 'FlappyHog' , projectBased : true , activityScope : 'Games' } ,
258261 Links : {
259262 name : 'Links' ,
260263 projectBased : true ,
@@ -464,6 +467,7 @@ export const productUrls = {
464467 featureFlag : ( id : string | number ) : string => `/feature_flags/${ id } ` ,
465468 featureFlagDuplicate : ( sourceId : number | string | null ) : string => `/feature_flags/new?sourceId=${ sourceId } ` ,
466469 game368hedgehogs : ( ) : string => `/games/368hedgehogs` ,
470+ flappyHog : ( ) : string => `/games/flappyhog` ,
467471 groups : ( groupTypeIndex : string | number ) : string => `/groups/${ groupTypeIndex } ` ,
468472 groupsNew : ( groupTypeIndex : string | number ) : string => `/groups/${ groupTypeIndex } /new` ,
469473 group : ( groupTypeIndex : string | number , groupKey : string , encode : boolean = true , tab ?: string | null ) : string =>
@@ -1191,7 +1195,10 @@ export const getTreeItemsProducts = (): FileSystemImport[] => [
11911195]
11921196
11931197/** This const is auto-generated, as is the whole file */
1194- export const getTreeItemsGames = ( ) : FileSystemImport [ ] => [ { path : '368 Hedgehogs' , href : urls . game368hedgehogs ( ) } ]
1198+ export const getTreeItemsGames = ( ) : FileSystemImport [ ] => [
1199+ { path : '368 Hedgehogs' , href : urls . game368hedgehogs ( ) } ,
1200+ { path : 'Flappy Hog' , href : '/games/flappyhog' } ,
1201+ ]
11951202
11961203/** This const is auto-generated, as is the whole file */
11971204export const getTreeItemsMetadata = ( ) : FileSystemImport [ ] => [
0 commit comments