@@ -22,6 +22,7 @@ import { Route as SpaceSpaceIdIndexImport } from './routes/space/$spaceId/index'
22
22
import { Route as SpaceSpaceIdUsersImport } from './routes/space/$spaceId/users'
23
23
import { Route as SpaceSpaceIdPublicIntegrationImport } from './routes/space/$spaceId/public-integration'
24
24
import { Route as SpaceSpaceIdPlaygroundImport } from './routes/space/$spaceId/playground'
25
+ import { Route as SpaceSpaceIdEventsImport } from './routes/space/$spaceId/events'
25
26
import { Route as SpaceSpaceIdChatImport } from './routes/space/$spaceId/chat'
26
27
27
28
// Create Virtual Routes
@@ -98,6 +99,12 @@ const SpaceSpaceIdPlaygroundRoute = SpaceSpaceIdPlaygroundImport.update({
98
99
getParentRoute : ( ) => SpaceSpaceIdRoute ,
99
100
} as any )
100
101
102
+ const SpaceSpaceIdEventsRoute = SpaceSpaceIdEventsImport . update ( {
103
+ id : '/events' ,
104
+ path : '/events' ,
105
+ getParentRoute : ( ) => SpaceSpaceIdRoute ,
106
+ } as any )
107
+
101
108
const SpaceSpaceIdChatRoute = SpaceSpaceIdChatImport . update ( {
102
109
id : '/chat' ,
103
110
path : '/chat' ,
@@ -164,6 +171,13 @@ declare module '@tanstack/react-router' {
164
171
preLoaderRoute : typeof SpaceSpaceIdChatImport
165
172
parentRoute : typeof SpaceSpaceIdImport
166
173
}
174
+ '/space/$spaceId/events' : {
175
+ id : '/space/$spaceId/events'
176
+ path : '/events'
177
+ fullPath : '/space/$spaceId/events'
178
+ preLoaderRoute : typeof SpaceSpaceIdEventsImport
179
+ parentRoute : typeof SpaceSpaceIdImport
180
+ }
167
181
'/space/$spaceId/playground' : {
168
182
id : '/space/$spaceId/playground'
169
183
path : '/playground'
@@ -199,6 +213,7 @@ declare module '@tanstack/react-router' {
199
213
200
214
interface SpaceSpaceIdRouteChildren {
201
215
SpaceSpaceIdChatRoute : typeof SpaceSpaceIdChatRoute
216
+ SpaceSpaceIdEventsRoute : typeof SpaceSpaceIdEventsRoute
202
217
SpaceSpaceIdPlaygroundRoute : typeof SpaceSpaceIdPlaygroundRoute
203
218
SpaceSpaceIdPublicIntegrationRoute : typeof SpaceSpaceIdPublicIntegrationRoute
204
219
SpaceSpaceIdUsersRoute : typeof SpaceSpaceIdUsersRoute
@@ -207,6 +222,7 @@ interface SpaceSpaceIdRouteChildren {
207
222
208
223
const SpaceSpaceIdRouteChildren : SpaceSpaceIdRouteChildren = {
209
224
SpaceSpaceIdChatRoute : SpaceSpaceIdChatRoute ,
225
+ SpaceSpaceIdEventsRoute : SpaceSpaceIdEventsRoute ,
210
226
SpaceSpaceIdPlaygroundRoute : SpaceSpaceIdPlaygroundRoute ,
211
227
SpaceSpaceIdPublicIntegrationRoute : SpaceSpaceIdPublicIntegrationRoute ,
212
228
SpaceSpaceIdUsersRoute : SpaceSpaceIdUsersRoute ,
@@ -226,6 +242,7 @@ export interface FileRoutesByFullPath {
226
242
'/friends/$accountId' : typeof FriendsAccountIdRoute
227
243
'/space/$spaceId' : typeof SpaceSpaceIdRouteWithChildren
228
244
'/space/$spaceId/chat' : typeof SpaceSpaceIdChatRoute
245
+ '/space/$spaceId/events' : typeof SpaceSpaceIdEventsRoute
229
246
'/space/$spaceId/playground' : typeof SpaceSpaceIdPlaygroundRoute
230
247
'/space/$spaceId/public-integration' : typeof SpaceSpaceIdPublicIntegrationRoute
231
248
'/space/$spaceId/users' : typeof SpaceSpaceIdUsersRoute
@@ -240,6 +257,7 @@ export interface FileRoutesByTo {
240
257
'/account-inbox/$inboxId' : typeof AccountInboxInboxIdRoute
241
258
'/friends/$accountId' : typeof FriendsAccountIdRoute
242
259
'/space/$spaceId/chat' : typeof SpaceSpaceIdChatRoute
260
+ '/space/$spaceId/events' : typeof SpaceSpaceIdEventsRoute
243
261
'/space/$spaceId/playground' : typeof SpaceSpaceIdPlaygroundRoute
244
262
'/space/$spaceId/public-integration' : typeof SpaceSpaceIdPublicIntegrationRoute
245
263
'/space/$spaceId/users' : typeof SpaceSpaceIdUsersRoute
@@ -256,6 +274,7 @@ export interface FileRoutesById {
256
274
'/friends/$accountId' : typeof FriendsAccountIdRoute
257
275
'/space/$spaceId' : typeof SpaceSpaceIdRouteWithChildren
258
276
'/space/$spaceId/chat' : typeof SpaceSpaceIdChatRoute
277
+ '/space/$spaceId/events' : typeof SpaceSpaceIdEventsRoute
259
278
'/space/$spaceId/playground' : typeof SpaceSpaceIdPlaygroundRoute
260
279
'/space/$spaceId/public-integration' : typeof SpaceSpaceIdPublicIntegrationRoute
261
280
'/space/$spaceId/users' : typeof SpaceSpaceIdUsersRoute
@@ -273,6 +292,7 @@ export interface FileRouteTypes {
273
292
| '/friends/$accountId'
274
293
| '/space/$spaceId'
275
294
| '/space/$spaceId/chat'
295
+ | '/space/$spaceId/events'
276
296
| '/space/$spaceId/playground'
277
297
| '/space/$spaceId/public-integration'
278
298
| '/space/$spaceId/users'
@@ -286,6 +306,7 @@ export interface FileRouteTypes {
286
306
| '/account-inbox/$inboxId'
287
307
| '/friends/$accountId'
288
308
| '/space/$spaceId/chat'
309
+ | '/space/$spaceId/events'
289
310
| '/space/$spaceId/playground'
290
311
| '/space/$spaceId/public-integration'
291
312
| '/space/$spaceId/users'
@@ -300,6 +321,7 @@ export interface FileRouteTypes {
300
321
| '/friends/$accountId'
301
322
| '/space/$spaceId'
302
323
| '/space/$spaceId/chat'
324
+ | '/space/$spaceId/events'
303
325
| '/space/$spaceId/playground'
304
326
| '/space/$spaceId/public-integration'
305
327
| '/space/$spaceId/users'
@@ -368,6 +390,7 @@ export const routeTree = rootRoute
368
390
"filePath": "space/$spaceId.tsx",
369
391
"children": [
370
392
"/space/$spaceId/chat",
393
+ "/space/$spaceId/events",
371
394
"/space/$spaceId/playground",
372
395
"/space/$spaceId/public-integration",
373
396
"/space/$spaceId/users",
@@ -378,6 +401,10 @@ export const routeTree = rootRoute
378
401
"filePath": "space/$spaceId/chat.tsx",
379
402
"parent": "/space/$spaceId"
380
403
},
404
+ "/space/$spaceId/events": {
405
+ "filePath": "space/$spaceId/events.tsx",
406
+ "parent": "/space/$spaceId"
407
+ },
381
408
"/space/$spaceId/playground": {
382
409
"filePath": "space/$spaceId/playground.tsx",
383
410
"parent": "/space/$spaceId"
0 commit comments