@@ -18,6 +18,7 @@ import { Route as IndexRouteImport } from './routes/index'
1818import { Route as PasswordIndexRouteImport } from './routes/password/index'
1919import { Route as PasswordSentRouteImport } from './routes/password/sent'
2020import { Route as PasswordFinishRouteImport } from './routes/password/finish'
21+ import { Route as OpenidCallbackRouteImport } from './routes/openid/callback'
2122
2223const TestRoute = TestRouteImport . update ( {
2324 id : '/test' ,
@@ -64,6 +65,11 @@ const PasswordFinishRoute = PasswordFinishRouteImport.update({
6465 path : '/password/finish' ,
6566 getParentRoute : ( ) => rootRouteImport ,
6667} as any )
68+ const OpenidCallbackRoute = OpenidCallbackRouteImport . update ( {
69+ id : '/openid/callback' ,
70+ path : '/openid/callback' ,
71+ getParentRoute : ( ) => rootRouteImport ,
72+ } as any )
6773
6874export interface FileRoutesByFullPath {
6975 '/' : typeof IndexRoute
@@ -72,6 +78,7 @@ export interface FileRoutesByFullPath {
7278 '/enrollment-start' : typeof EnrollmentStartRoute
7379 '/password-reset' : typeof PasswordResetRoute
7480 '/test' : typeof TestRoute
81+ '/openid/callback' : typeof OpenidCallbackRoute
7582 '/password/finish' : typeof PasswordFinishRoute
7683 '/password/sent' : typeof PasswordSentRoute
7784 '/password' : typeof PasswordIndexRoute
@@ -83,6 +90,7 @@ export interface FileRoutesByTo {
8390 '/enrollment-start' : typeof EnrollmentStartRoute
8491 '/password-reset' : typeof PasswordResetRoute
8592 '/test' : typeof TestRoute
93+ '/openid/callback' : typeof OpenidCallbackRoute
8694 '/password/finish' : typeof PasswordFinishRoute
8795 '/password/sent' : typeof PasswordSentRoute
8896 '/password' : typeof PasswordIndexRoute
@@ -95,6 +103,7 @@ export interface FileRoutesById {
95103 '/enrollment-start' : typeof EnrollmentStartRoute
96104 '/password-reset' : typeof PasswordResetRoute
97105 '/test' : typeof TestRoute
106+ '/openid/callback' : typeof OpenidCallbackRoute
98107 '/password/finish' : typeof PasswordFinishRoute
99108 '/password/sent' : typeof PasswordSentRoute
100109 '/password/' : typeof PasswordIndexRoute
@@ -108,6 +117,7 @@ export interface FileRouteTypes {
108117 | '/enrollment-start'
109118 | '/password-reset'
110119 | '/test'
120+ | '/openid/callback'
111121 | '/password/finish'
112122 | '/password/sent'
113123 | '/password'
@@ -119,6 +129,7 @@ export interface FileRouteTypes {
119129 | '/enrollment-start'
120130 | '/password-reset'
121131 | '/test'
132+ | '/openid/callback'
122133 | '/password/finish'
123134 | '/password/sent'
124135 | '/password'
@@ -130,6 +141,7 @@ export interface FileRouteTypes {
130141 | '/enrollment-start'
131142 | '/password-reset'
132143 | '/test'
144+ | '/openid/callback'
133145 | '/password/finish'
134146 | '/password/sent'
135147 | '/password/'
@@ -142,6 +154,7 @@ export interface RootRouteChildren {
142154 EnrollmentStartRoute : typeof EnrollmentStartRoute
143155 PasswordResetRoute : typeof PasswordResetRoute
144156 TestRoute : typeof TestRoute
157+ OpenidCallbackRoute : typeof OpenidCallbackRoute
145158 PasswordFinishRoute : typeof PasswordFinishRoute
146159 PasswordSentRoute : typeof PasswordSentRoute
147160 PasswordIndexRoute : typeof PasswordIndexRoute
@@ -212,6 +225,13 @@ declare module '@tanstack/react-router' {
212225 preLoaderRoute : typeof PasswordFinishRouteImport
213226 parentRoute : typeof rootRouteImport
214227 }
228+ '/openid/callback' : {
229+ id : '/openid/callback'
230+ path : '/openid/callback'
231+ fullPath : '/openid/callback'
232+ preLoaderRoute : typeof OpenidCallbackRouteImport
233+ parentRoute : typeof rootRouteImport
234+ }
215235 }
216236}
217237
@@ -222,6 +242,7 @@ const rootRouteChildren: RootRouteChildren = {
222242 EnrollmentStartRoute : EnrollmentStartRoute ,
223243 PasswordResetRoute : PasswordResetRoute ,
224244 TestRoute : TestRoute ,
245+ OpenidCallbackRoute : OpenidCallbackRoute ,
225246 PasswordFinishRoute : PasswordFinishRoute ,
226247 PasswordSentRoute : PasswordSentRoute ,
227248 PasswordIndexRoute : PasswordIndexRoute ,
0 commit comments