@@ -28,9 +28,10 @@ import { Route as LibraryIdIndexRouteImport } from './routes/$libraryId/index'
28
28
import { Route as LibrariesTermsRouteImport } from './routes/_libraries/terms'
29
29
import { Route as LibrariesSupportRouteImport } from './routes/_libraries/support'
30
30
import { Route as LibrariesPrivacyRouteImport } from './routes/_libraries/privacy'
31
+ import { Route as LibrariesPartnersRouteImport } from './routes/_libraries/partners'
32
+ import { Route as LibrariesPaidSupportRouteImport } from './routes/_libraries/paid-support'
31
33
import { Route as LibrariesLearnRouteImport } from './routes/_libraries/learn'
32
34
import { Route as LibrariesEthosRouteImport } from './routes/_libraries/ethos'
33
- import { Route as LibrariesDedicatedSupportRouteImport } from './routes/_libraries/dedicated-support'
34
35
import { Route as LibrariesBlogRouteImport } from './routes/_libraries/blog'
35
36
import { Route as LibraryIdVersionRouteImport } from './routes/$libraryId/$version'
36
37
import { Route as StatsNpmIndexRouteImport } from './routes/stats/npm/index'
@@ -119,6 +120,16 @@ const LibrariesPrivacyRoute = LibrariesPrivacyRouteImport.update({
119
120
path : '/privacy' ,
120
121
getParentRoute : ( ) => LibrariesRouteRoute ,
121
122
} as any )
123
+ const LibrariesPartnersRoute = LibrariesPartnersRouteImport . update ( {
124
+ id : '/partners' ,
125
+ path : '/partners' ,
126
+ getParentRoute : ( ) => LibrariesRouteRoute ,
127
+ } as any )
128
+ const LibrariesPaidSupportRoute = LibrariesPaidSupportRouteImport . update ( {
129
+ id : '/paid-support' ,
130
+ path : '/paid-support' ,
131
+ getParentRoute : ( ) => LibrariesRouteRoute ,
132
+ } as any )
122
133
const LibrariesLearnRoute = LibrariesLearnRouteImport . update ( {
123
134
id : '/learn' ,
124
135
path : '/learn' ,
@@ -129,12 +140,6 @@ const LibrariesEthosRoute = LibrariesEthosRouteImport.update({
129
140
path : '/ethos' ,
130
141
getParentRoute : ( ) => LibrariesRouteRoute ,
131
142
} as any )
132
- const LibrariesDedicatedSupportRoute =
133
- LibrariesDedicatedSupportRouteImport . update ( {
134
- id : '/dedicated-support' ,
135
- path : '/dedicated-support' ,
136
- getParentRoute : ( ) => LibrariesRouteRoute ,
137
- } as any )
138
143
const LibrariesBlogRoute = LibrariesBlogRouteImport . update ( {
139
144
id : '/blog' ,
140
145
path : '/blog' ,
@@ -295,9 +300,10 @@ export interface FileRoutesByFullPath {
295
300
'/sponsors-embed' : typeof SponsorsEmbedRoute
296
301
'/$libraryId/$version' : typeof LibraryIdVersionRouteWithChildren
297
302
'/blog' : typeof LibrariesBlogRouteWithChildren
298
- '/dedicated-support' : typeof LibrariesDedicatedSupportRoute
299
303
'/ethos' : typeof LibrariesEthosRoute
300
304
'/learn' : typeof LibrariesLearnRoute
305
+ '/paid-support' : typeof LibrariesPaidSupportRoute
306
+ '/partners' : typeof LibrariesPartnersRoute
301
307
'/privacy' : typeof LibrariesPrivacyRoute
302
308
'/support' : typeof LibrariesSupportRoute
303
309
'/terms' : typeof LibrariesTermsRoute
@@ -333,9 +339,10 @@ export interface FileRoutesByTo {
333
339
'/merch' : typeof MerchRoute
334
340
'/sponsors-embed' : typeof SponsorsEmbedRoute
335
341
'/$libraryId/$version' : typeof LibraryIdVersionRouteWithChildren
336
- '/dedicated-support' : typeof LibrariesDedicatedSupportRoute
337
342
'/ethos' : typeof LibrariesEthosRoute
338
343
'/learn' : typeof LibrariesLearnRoute
344
+ '/paid-support' : typeof LibrariesPaidSupportRoute
345
+ '/partners' : typeof LibrariesPartnersRoute
339
346
'/privacy' : typeof LibrariesPrivacyRoute
340
347
'/support' : typeof LibrariesSupportRoute
341
348
'/terms' : typeof LibrariesTermsRoute
@@ -374,9 +381,10 @@ export interface FileRoutesById {
374
381
'/sponsors-embed' : typeof SponsorsEmbedRoute
375
382
'/$libraryId/$version' : typeof LibraryIdVersionRouteWithChildren
376
383
'/_libraries/blog' : typeof LibrariesBlogRouteWithChildren
377
- '/_libraries/dedicated-support' : typeof LibrariesDedicatedSupportRoute
378
384
'/_libraries/ethos' : typeof LibrariesEthosRoute
379
385
'/_libraries/learn' : typeof LibrariesLearnRoute
386
+ '/_libraries/paid-support' : typeof LibrariesPaidSupportRoute
387
+ '/_libraries/partners' : typeof LibrariesPartnersRoute
380
388
'/_libraries/privacy' : typeof LibrariesPrivacyRoute
381
389
'/_libraries/support' : typeof LibrariesSupportRoute
382
390
'/_libraries/terms' : typeof LibrariesTermsRoute
@@ -416,9 +424,10 @@ export interface FileRouteTypes {
416
424
| '/sponsors-embed'
417
425
| '/$libraryId/$version'
418
426
| '/blog'
419
- | '/dedicated-support'
420
427
| '/ethos'
421
428
| '/learn'
429
+ | '/paid-support'
430
+ | '/partners'
422
431
| '/privacy'
423
432
| '/support'
424
433
| '/terms'
@@ -454,9 +463,10 @@ export interface FileRouteTypes {
454
463
| '/merch'
455
464
| '/sponsors-embed'
456
465
| '/$libraryId/$version'
457
- | '/dedicated-support'
458
466
| '/ethos'
459
467
| '/learn'
468
+ | '/paid-support'
469
+ | '/partners'
460
470
| '/privacy'
461
471
| '/support'
462
472
| '/terms'
@@ -494,9 +504,10 @@ export interface FileRouteTypes {
494
504
| '/sponsors-embed'
495
505
| '/$libraryId/$version'
496
506
| '/_libraries/blog'
497
- | '/_libraries/dedicated-support'
498
507
| '/_libraries/ethos'
499
508
| '/_libraries/learn'
509
+ | '/_libraries/paid-support'
510
+ | '/_libraries/partners'
500
511
| '/_libraries/privacy'
501
512
| '/_libraries/support'
502
513
| '/_libraries/terms'
@@ -628,13 +639,6 @@ declare module '@tanstack/react-router' {
628
639
preLoaderRoute : typeof LibrariesBlogRouteImport
629
640
parentRoute : typeof LibrariesRouteRoute
630
641
}
631
- '/_libraries/dedicated-support' : {
632
- id : '/_libraries/dedicated-support'
633
- path : '/dedicated-support'
634
- fullPath : '/dedicated-support'
635
- preLoaderRoute : typeof LibrariesDedicatedSupportRouteImport
636
- parentRoute : typeof LibrariesRouteRoute
637
- }
638
642
'/_libraries/ethos' : {
639
643
id : '/_libraries/ethos'
640
644
path : '/ethos'
@@ -649,6 +653,20 @@ declare module '@tanstack/react-router' {
649
653
preLoaderRoute : typeof LibrariesLearnRouteImport
650
654
parentRoute : typeof LibrariesRouteRoute
651
655
}
656
+ '/_libraries/paid-support' : {
657
+ id : '/_libraries/paid-support'
658
+ path : '/paid-support'
659
+ fullPath : '/paid-support'
660
+ preLoaderRoute : typeof LibrariesPaidSupportRouteImport
661
+ parentRoute : typeof LibrariesRouteRoute
662
+ }
663
+ '/_libraries/partners' : {
664
+ id : '/_libraries/partners'
665
+ path : '/partners'
666
+ fullPath : '/partners'
667
+ preLoaderRoute : typeof LibrariesPartnersRouteImport
668
+ parentRoute : typeof LibrariesRouteRoute
669
+ }
652
670
'/_libraries/privacy' : {
653
671
id : '/_libraries/privacy'
654
672
path : '/privacy'
@@ -919,13 +937,6 @@ declare module '@tanstack/react-start/server' {
919
937
preLoaderRoute : unknown
920
938
parentRoute : typeof rootServerRouteImport
921
939
}
922
- '/_libraries/dedicated-support' : {
923
- id : '/_libraries/dedicated-support'
924
- path : '/dedicated-support'
925
- fullPath : '/dedicated-support'
926
- preLoaderRoute : unknown
927
- parentRoute : typeof rootServerRouteImport
928
- }
929
940
'/_libraries/ethos' : {
930
941
id : '/_libraries/ethos'
931
942
path : '/ethos'
@@ -940,6 +951,20 @@ declare module '@tanstack/react-start/server' {
940
951
preLoaderRoute : unknown
941
952
parentRoute : typeof rootServerRouteImport
942
953
}
954
+ '/_libraries/paid-support' : {
955
+ id : '/_libraries/paid-support'
956
+ path : '/paid-support'
957
+ fullPath : '/paid-support'
958
+ preLoaderRoute : unknown
959
+ parentRoute : typeof rootServerRouteImport
960
+ }
961
+ '/_libraries/partners' : {
962
+ id : '/_libraries/partners'
963
+ path : '/partners'
964
+ fullPath : '/partners'
965
+ preLoaderRoute : unknown
966
+ parentRoute : typeof rootServerRouteImport
967
+ }
943
968
'/_libraries/privacy' : {
944
969
id : '/_libraries/privacy'
945
970
path : '/privacy'
@@ -1289,23 +1314,6 @@ declare module './routes/_libraries/blog' {
1289
1314
unknown
1290
1315
>
1291
1316
}
1292
- declare module './routes/_libraries/dedicated-support' {
1293
- const createFileRoute : CreateFileRoute <
1294
- '/_libraries/dedicated-support' ,
1295
- FileRoutesByPath [ '/_libraries/dedicated-support' ] [ 'parentRoute' ] ,
1296
- FileRoutesByPath [ '/_libraries/dedicated-support' ] [ 'id' ] ,
1297
- FileRoutesByPath [ '/_libraries/dedicated-support' ] [ 'path' ] ,
1298
- FileRoutesByPath [ '/_libraries/dedicated-support' ] [ 'fullPath' ]
1299
- >
1300
-
1301
- const createServerFileRoute : CreateServerFileRoute <
1302
- ServerFileRoutesByPath [ '/_libraries/dedicated-support' ] [ 'parentRoute' ] ,
1303
- ServerFileRoutesByPath [ '/_libraries/dedicated-support' ] [ 'id' ] ,
1304
- ServerFileRoutesByPath [ '/_libraries/dedicated-support' ] [ 'path' ] ,
1305
- ServerFileRoutesByPath [ '/_libraries/dedicated-support' ] [ 'fullPath' ] ,
1306
- unknown
1307
- >
1308
- }
1309
1317
declare module './routes/_libraries/ethos' {
1310
1318
const createFileRoute : CreateFileRoute <
1311
1319
'/_libraries/ethos' ,
@@ -1340,6 +1348,40 @@ declare module './routes/_libraries/learn' {
1340
1348
unknown
1341
1349
>
1342
1350
}
1351
+ declare module './routes/_libraries/paid-support' {
1352
+ const createFileRoute : CreateFileRoute <
1353
+ '/_libraries/paid-support' ,
1354
+ FileRoutesByPath [ '/_libraries/paid-support' ] [ 'parentRoute' ] ,
1355
+ FileRoutesByPath [ '/_libraries/paid-support' ] [ 'id' ] ,
1356
+ FileRoutesByPath [ '/_libraries/paid-support' ] [ 'path' ] ,
1357
+ FileRoutesByPath [ '/_libraries/paid-support' ] [ 'fullPath' ]
1358
+ >
1359
+
1360
+ const createServerFileRoute : CreateServerFileRoute <
1361
+ ServerFileRoutesByPath [ '/_libraries/paid-support' ] [ 'parentRoute' ] ,
1362
+ ServerFileRoutesByPath [ '/_libraries/paid-support' ] [ 'id' ] ,
1363
+ ServerFileRoutesByPath [ '/_libraries/paid-support' ] [ 'path' ] ,
1364
+ ServerFileRoutesByPath [ '/_libraries/paid-support' ] [ 'fullPath' ] ,
1365
+ unknown
1366
+ >
1367
+ }
1368
+ declare module './routes/_libraries/partners' {
1369
+ const createFileRoute : CreateFileRoute <
1370
+ '/_libraries/partners' ,
1371
+ FileRoutesByPath [ '/_libraries/partners' ] [ 'parentRoute' ] ,
1372
+ FileRoutesByPath [ '/_libraries/partners' ] [ 'id' ] ,
1373
+ FileRoutesByPath [ '/_libraries/partners' ] [ 'path' ] ,
1374
+ FileRoutesByPath [ '/_libraries/partners' ] [ 'fullPath' ]
1375
+ >
1376
+
1377
+ const createServerFileRoute : CreateServerFileRoute <
1378
+ ServerFileRoutesByPath [ '/_libraries/partners' ] [ 'parentRoute' ] ,
1379
+ ServerFileRoutesByPath [ '/_libraries/partners' ] [ 'id' ] ,
1380
+ ServerFileRoutesByPath [ '/_libraries/partners' ] [ 'path' ] ,
1381
+ ServerFileRoutesByPath [ '/_libraries/partners' ] [ 'fullPath' ] ,
1382
+ unknown
1383
+ >
1384
+ }
1343
1385
declare module './routes/_libraries/privacy' {
1344
1386
const createFileRoute : CreateFileRoute <
1345
1387
'/_libraries/privacy' ,
@@ -1919,9 +1961,10 @@ const LibrariesBlogRouteWithChildren = LibrariesBlogRoute._addFileChildren(
1919
1961
1920
1962
interface LibrariesRouteRouteChildren {
1921
1963
LibrariesBlogRoute : typeof LibrariesBlogRouteWithChildren
1922
- LibrariesDedicatedSupportRoute : typeof LibrariesDedicatedSupportRoute
1923
1964
LibrariesEthosRoute : typeof LibrariesEthosRoute
1924
1965
LibrariesLearnRoute : typeof LibrariesLearnRoute
1966
+ LibrariesPaidSupportRoute : typeof LibrariesPaidSupportRoute
1967
+ LibrariesPartnersRoute : typeof LibrariesPartnersRoute
1925
1968
LibrariesPrivacyRoute : typeof LibrariesPrivacyRoute
1926
1969
LibrariesSupportRoute : typeof LibrariesSupportRoute
1927
1970
LibrariesTermsRoute : typeof LibrariesTermsRoute
@@ -1941,9 +1984,10 @@ interface LibrariesRouteRouteChildren {
1941
1984
1942
1985
const LibrariesRouteRouteChildren : LibrariesRouteRouteChildren = {
1943
1986
LibrariesBlogRoute : LibrariesBlogRouteWithChildren ,
1944
- LibrariesDedicatedSupportRoute : LibrariesDedicatedSupportRoute ,
1945
1987
LibrariesEthosRoute : LibrariesEthosRoute ,
1946
1988
LibrariesLearnRoute : LibrariesLearnRoute ,
1989
+ LibrariesPaidSupportRoute : LibrariesPaidSupportRoute ,
1990
+ LibrariesPartnersRoute : LibrariesPartnersRoute ,
1947
1991
LibrariesPrivacyRoute : LibrariesPrivacyRoute ,
1948
1992
LibrariesSupportRoute : LibrariesSupportRoute ,
1949
1993
LibrariesTermsRoute : LibrariesTermsRoute ,
0 commit comments