@tanstack/start-plugin-core 1.120.4-alpha.9 → 1.121.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/constants.cjs +10 -0
- package/dist/cjs/constants.cjs.map +1 -0
- package/dist/cjs/constants.d.cts +4 -0
- package/dist/cjs/index.cjs +0 -6
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/index.d.cts +0 -5
- package/dist/cjs/nitro/dev-server-plugin.cjs +11 -3
- package/dist/cjs/nitro/dev-server-plugin.cjs.map +1 -1
- package/dist/cjs/nitro/nitro-plugin.cjs +35 -5
- package/dist/cjs/nitro/nitro-plugin.cjs.map +1 -1
- package/dist/cjs/plugin.cjs +82 -15
- package/dist/cjs/plugin.cjs.map +1 -1
- package/dist/cjs/plugin.d.cts +766 -147
- package/dist/cjs/prerender.cjs +19 -15
- package/dist/cjs/prerender.cjs.map +1 -1
- package/dist/cjs/schema.cjs +21 -2
- package/dist/cjs/schema.cjs.map +1 -1
- package/dist/cjs/schema.d.cts +2362 -601
- package/dist/esm/constants.d.ts +4 -0
- package/dist/esm/constants.js +10 -0
- package/dist/esm/constants.js.map +1 -0
- package/dist/esm/index.d.ts +0 -5
- package/dist/esm/index.js +0 -6
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/nitro/dev-server-plugin.js +11 -3
- package/dist/esm/nitro/dev-server-plugin.js.map +1 -1
- package/dist/esm/nitro/nitro-plugin.js +35 -5
- package/dist/esm/nitro/nitro-plugin.js.map +1 -1
- package/dist/esm/plugin.d.ts +766 -147
- package/dist/esm/plugin.js +65 -15
- package/dist/esm/plugin.js.map +1 -1
- package/dist/esm/prerender.js +19 -15
- package/dist/esm/prerender.js.map +1 -1
- package/dist/esm/schema.d.ts +2362 -601
- package/dist/esm/schema.js +22 -3
- package/dist/esm/schema.js.map +1 -1
- package/package.json +6 -4
- package/src/constants.ts +6 -0
- package/src/index.ts +0 -8
- package/src/nitro/dev-server-plugin.ts +14 -4
- package/src/nitro/nitro-plugin.ts +42 -4
- package/src/plugin.ts +81 -15
- package/src/prerender.ts +26 -19
- package/src/schema.ts +26 -1
- package/dist/cjs/nitro/build-sitemap.cjs +0 -54
- package/dist/cjs/nitro/build-sitemap.cjs.map +0 -1
- package/dist/esm/nitro/build-sitemap.js +0 -54
- package/dist/esm/nitro/build-sitemap.js.map +0 -1
package/dist/cjs/plugin.d.cts
CHANGED
|
@@ -197,10 +197,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
197
197
|
publicationDate: string | Date;
|
|
198
198
|
}>>;
|
|
199
199
|
}, "strip", z.ZodTypeAny, {
|
|
200
|
-
lastmod?: string | Date | undefined;
|
|
201
200
|
exclude?: boolean | undefined;
|
|
202
201
|
priority?: number | undefined;
|
|
203
202
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
203
|
+
lastmod?: string | Date | undefined;
|
|
204
204
|
alternateRefs?: {
|
|
205
205
|
href: string;
|
|
206
206
|
hreflang: string;
|
|
@@ -219,10 +219,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
219
219
|
publicationDate: string | Date;
|
|
220
220
|
} | undefined;
|
|
221
221
|
}, {
|
|
222
|
-
lastmod?: string | Date | undefined;
|
|
223
222
|
exclude?: boolean | undefined;
|
|
224
223
|
priority?: number | undefined;
|
|
225
224
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
225
|
+
lastmod?: string | Date | undefined;
|
|
226
226
|
alternateRefs?: {
|
|
227
227
|
href: string;
|
|
228
228
|
hreflang: string;
|
|
@@ -245,6 +245,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
245
245
|
}, {
|
|
246
246
|
prerender: z.ZodOptional<z.ZodObject<{
|
|
247
247
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
248
|
+
outputPath: z.ZodOptional<z.ZodString>;
|
|
248
249
|
autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
|
|
249
250
|
crawlLinks: z.ZodOptional<z.ZodBoolean>;
|
|
250
251
|
retryCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -309,10 +310,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
309
310
|
publicationDate: string | Date;
|
|
310
311
|
}>>;
|
|
311
312
|
}, "strip", z.ZodTypeAny, {
|
|
312
|
-
lastmod?: string | Date | undefined;
|
|
313
313
|
exclude?: boolean | undefined;
|
|
314
314
|
priority?: number | undefined;
|
|
315
315
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
316
|
+
lastmod?: string | Date | undefined;
|
|
316
317
|
alternateRefs?: {
|
|
317
318
|
href: string;
|
|
318
319
|
hreflang: string;
|
|
@@ -331,10 +332,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
331
332
|
publicationDate: string | Date;
|
|
332
333
|
} | undefined;
|
|
333
334
|
}, {
|
|
334
|
-
lastmod?: string | Date | undefined;
|
|
335
335
|
exclude?: boolean | undefined;
|
|
336
336
|
priority?: number | undefined;
|
|
337
337
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
338
|
+
lastmod?: string | Date | undefined;
|
|
338
339
|
alternateRefs?: {
|
|
339
340
|
href: string;
|
|
340
341
|
hreflang: string;
|
|
@@ -357,10 +358,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
357
358
|
}, "strip", z.ZodTypeAny, {
|
|
358
359
|
path: string;
|
|
359
360
|
sitemap?: {
|
|
360
|
-
lastmod?: string | Date | undefined;
|
|
361
361
|
exclude?: boolean | undefined;
|
|
362
362
|
priority?: number | undefined;
|
|
363
363
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
364
|
+
lastmod?: string | Date | undefined;
|
|
364
365
|
alternateRefs?: {
|
|
365
366
|
href: string;
|
|
366
367
|
hreflang: string;
|
|
@@ -383,10 +384,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
383
384
|
}, {
|
|
384
385
|
path: string;
|
|
385
386
|
sitemap?: {
|
|
386
|
-
lastmod?: string | Date | undefined;
|
|
387
387
|
exclude?: boolean | undefined;
|
|
388
388
|
priority?: number | undefined;
|
|
389
389
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
390
|
+
lastmod?: string | Date | undefined;
|
|
390
391
|
alternateRefs?: {
|
|
391
392
|
href: string;
|
|
392
393
|
hreflang: string;
|
|
@@ -412,10 +413,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
412
413
|
page: {
|
|
413
414
|
path: string;
|
|
414
415
|
sitemap?: {
|
|
415
|
-
lastmod?: string | Date | undefined;
|
|
416
416
|
exclude?: boolean | undefined;
|
|
417
417
|
priority?: number | undefined;
|
|
418
418
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
419
|
+
lastmod?: string | Date | undefined;
|
|
419
420
|
alternateRefs?: {
|
|
420
421
|
href: string;
|
|
421
422
|
hreflang: string;
|
|
@@ -441,10 +442,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
441
442
|
page: {
|
|
442
443
|
path: string;
|
|
443
444
|
sitemap?: {
|
|
444
|
-
lastmod?: string | Date | undefined;
|
|
445
445
|
exclude?: boolean | undefined;
|
|
446
446
|
priority?: number | undefined;
|
|
447
447
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
448
|
+
lastmod?: string | Date | undefined;
|
|
448
449
|
alternateRefs?: {
|
|
449
450
|
href: string;
|
|
450
451
|
hreflang: string;
|
|
@@ -469,6 +470,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
469
470
|
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
470
471
|
}, "strip", z.ZodTypeAny, {
|
|
471
472
|
enabled?: boolean | undefined;
|
|
473
|
+
outputPath?: string | undefined;
|
|
472
474
|
autoSubfolderIndex?: boolean | undefined;
|
|
473
475
|
crawlLinks?: boolean | undefined;
|
|
474
476
|
retryCount?: number | undefined;
|
|
@@ -477,10 +479,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
477
479
|
page: {
|
|
478
480
|
path: string;
|
|
479
481
|
sitemap?: {
|
|
480
|
-
lastmod?: string | Date | undefined;
|
|
481
482
|
exclude?: boolean | undefined;
|
|
482
483
|
priority?: number | undefined;
|
|
483
484
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
485
|
+
lastmod?: string | Date | undefined;
|
|
484
486
|
alternateRefs?: {
|
|
485
487
|
href: string;
|
|
486
488
|
hreflang: string;
|
|
@@ -505,6 +507,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
505
507
|
}, ...args: unknown[]) => any) | undefined;
|
|
506
508
|
}, {
|
|
507
509
|
enabled?: boolean | undefined;
|
|
510
|
+
outputPath?: string | undefined;
|
|
508
511
|
autoSubfolderIndex?: boolean | undefined;
|
|
509
512
|
crawlLinks?: boolean | undefined;
|
|
510
513
|
retryCount?: number | undefined;
|
|
@@ -513,10 +516,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
513
516
|
page: {
|
|
514
517
|
path: string;
|
|
515
518
|
sitemap?: {
|
|
516
|
-
lastmod?: string | Date | undefined;
|
|
517
519
|
exclude?: boolean | undefined;
|
|
518
520
|
priority?: number | undefined;
|
|
519
521
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
522
|
+
lastmod?: string | Date | undefined;
|
|
520
523
|
alternateRefs?: {
|
|
521
524
|
href: string;
|
|
522
525
|
hreflang: string;
|
|
@@ -544,6 +547,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
544
547
|
path: string;
|
|
545
548
|
prerender?: {
|
|
546
549
|
enabled?: boolean | undefined;
|
|
550
|
+
outputPath?: string | undefined;
|
|
547
551
|
autoSubfolderIndex?: boolean | undefined;
|
|
548
552
|
crawlLinks?: boolean | undefined;
|
|
549
553
|
retryCount?: number | undefined;
|
|
@@ -552,10 +556,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
552
556
|
page: {
|
|
553
557
|
path: string;
|
|
554
558
|
sitemap?: {
|
|
555
|
-
lastmod?: string | Date | undefined;
|
|
556
559
|
exclude?: boolean | undefined;
|
|
557
560
|
priority?: number | undefined;
|
|
558
561
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
562
|
+
lastmod?: string | Date | undefined;
|
|
559
563
|
alternateRefs?: {
|
|
560
564
|
href: string;
|
|
561
565
|
hreflang: string;
|
|
@@ -580,10 +584,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
580
584
|
}, ...args: unknown[]) => any) | undefined;
|
|
581
585
|
} | undefined;
|
|
582
586
|
sitemap?: {
|
|
583
|
-
lastmod?: string | Date | undefined;
|
|
584
587
|
exclude?: boolean | undefined;
|
|
585
588
|
priority?: number | undefined;
|
|
586
589
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
590
|
+
lastmod?: string | Date | undefined;
|
|
587
591
|
alternateRefs?: {
|
|
588
592
|
href: string;
|
|
589
593
|
hreflang: string;
|
|
@@ -607,6 +611,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
607
611
|
path: string;
|
|
608
612
|
prerender?: {
|
|
609
613
|
enabled?: boolean | undefined;
|
|
614
|
+
outputPath?: string | undefined;
|
|
610
615
|
autoSubfolderIndex?: boolean | undefined;
|
|
611
616
|
crawlLinks?: boolean | undefined;
|
|
612
617
|
retryCount?: number | undefined;
|
|
@@ -615,10 +620,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
615
620
|
page: {
|
|
616
621
|
path: string;
|
|
617
622
|
sitemap?: {
|
|
618
|
-
lastmod?: string | Date | undefined;
|
|
619
623
|
exclude?: boolean | undefined;
|
|
620
624
|
priority?: number | undefined;
|
|
621
625
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
626
|
+
lastmod?: string | Date | undefined;
|
|
622
627
|
alternateRefs?: {
|
|
623
628
|
href: string;
|
|
624
629
|
hreflang: string;
|
|
@@ -643,10 +648,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
643
648
|
}, ...args: unknown[]) => any) | undefined;
|
|
644
649
|
} | undefined;
|
|
645
650
|
sitemap?: {
|
|
646
|
-
lastmod?: string | Date | undefined;
|
|
647
651
|
exclude?: boolean | undefined;
|
|
648
652
|
priority?: number | undefined;
|
|
649
653
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
654
|
+
lastmod?: string | Date | undefined;
|
|
650
655
|
alternateRefs?: {
|
|
651
656
|
href: string;
|
|
652
657
|
hreflang: string;
|
|
@@ -669,6 +674,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
669
674
|
}>]>, "many">>>;
|
|
670
675
|
sitemap: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
671
676
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
677
|
+
outputPath: z.ZodOptional<z.ZodString>;
|
|
672
678
|
autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
|
|
673
679
|
crawlLinks: z.ZodOptional<z.ZodBoolean>;
|
|
674
680
|
retryCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -733,10 +739,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
733
739
|
publicationDate: string | Date;
|
|
734
740
|
}>>;
|
|
735
741
|
}, "strip", z.ZodTypeAny, {
|
|
736
|
-
lastmod?: string | Date | undefined;
|
|
737
742
|
exclude?: boolean | undefined;
|
|
738
743
|
priority?: number | undefined;
|
|
739
744
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
745
|
+
lastmod?: string | Date | undefined;
|
|
740
746
|
alternateRefs?: {
|
|
741
747
|
href: string;
|
|
742
748
|
hreflang: string;
|
|
@@ -755,10 +761,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
755
761
|
publicationDate: string | Date;
|
|
756
762
|
} | undefined;
|
|
757
763
|
}, {
|
|
758
|
-
lastmod?: string | Date | undefined;
|
|
759
764
|
exclude?: boolean | undefined;
|
|
760
765
|
priority?: number | undefined;
|
|
761
766
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
767
|
+
lastmod?: string | Date | undefined;
|
|
762
768
|
alternateRefs?: {
|
|
763
769
|
href: string;
|
|
764
770
|
hreflang: string;
|
|
@@ -781,10 +787,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
781
787
|
}, "strip", z.ZodTypeAny, {
|
|
782
788
|
path: string;
|
|
783
789
|
sitemap?: {
|
|
784
|
-
lastmod?: string | Date | undefined;
|
|
785
790
|
exclude?: boolean | undefined;
|
|
786
791
|
priority?: number | undefined;
|
|
787
792
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
793
|
+
lastmod?: string | Date | undefined;
|
|
788
794
|
alternateRefs?: {
|
|
789
795
|
href: string;
|
|
790
796
|
hreflang: string;
|
|
@@ -807,10 +813,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
807
813
|
}, {
|
|
808
814
|
path: string;
|
|
809
815
|
sitemap?: {
|
|
810
|
-
lastmod?: string | Date | undefined;
|
|
811
816
|
exclude?: boolean | undefined;
|
|
812
817
|
priority?: number | undefined;
|
|
813
818
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
819
|
+
lastmod?: string | Date | undefined;
|
|
814
820
|
alternateRefs?: {
|
|
815
821
|
href: string;
|
|
816
822
|
hreflang: string;
|
|
@@ -836,10 +842,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
836
842
|
page: {
|
|
837
843
|
path: string;
|
|
838
844
|
sitemap?: {
|
|
839
|
-
lastmod?: string | Date | undefined;
|
|
840
845
|
exclude?: boolean | undefined;
|
|
841
846
|
priority?: number | undefined;
|
|
842
847
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
848
|
+
lastmod?: string | Date | undefined;
|
|
843
849
|
alternateRefs?: {
|
|
844
850
|
href: string;
|
|
845
851
|
hreflang: string;
|
|
@@ -865,10 +871,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
865
871
|
page: {
|
|
866
872
|
path: string;
|
|
867
873
|
sitemap?: {
|
|
868
|
-
lastmod?: string | Date | undefined;
|
|
869
874
|
exclude?: boolean | undefined;
|
|
870
875
|
priority?: number | undefined;
|
|
871
876
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
877
|
+
lastmod?: string | Date | undefined;
|
|
872
878
|
alternateRefs?: {
|
|
873
879
|
href: string;
|
|
874
880
|
hreflang: string;
|
|
@@ -894,8 +900,8 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
894
900
|
}, {
|
|
895
901
|
host: z.ZodOptional<z.ZodString>;
|
|
896
902
|
}>, "strip", z.ZodTypeAny, {
|
|
897
|
-
host?: string | undefined;
|
|
898
903
|
enabled?: boolean | undefined;
|
|
904
|
+
outputPath?: string | undefined;
|
|
899
905
|
autoSubfolderIndex?: boolean | undefined;
|
|
900
906
|
crawlLinks?: boolean | undefined;
|
|
901
907
|
retryCount?: number | undefined;
|
|
@@ -904,10 +910,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
904
910
|
page: {
|
|
905
911
|
path: string;
|
|
906
912
|
sitemap?: {
|
|
907
|
-
lastmod?: string | Date | undefined;
|
|
908
913
|
exclude?: boolean | undefined;
|
|
909
914
|
priority?: number | undefined;
|
|
910
915
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
916
|
+
lastmod?: string | Date | undefined;
|
|
911
917
|
alternateRefs?: {
|
|
912
918
|
href: string;
|
|
913
919
|
hreflang: string;
|
|
@@ -930,9 +936,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
930
936
|
};
|
|
931
937
|
html: string;
|
|
932
938
|
}, ...args: unknown[]) => any) | undefined;
|
|
933
|
-
}, {
|
|
934
939
|
host?: string | undefined;
|
|
940
|
+
}, {
|
|
935
941
|
enabled?: boolean | undefined;
|
|
942
|
+
outputPath?: string | undefined;
|
|
936
943
|
autoSubfolderIndex?: boolean | undefined;
|
|
937
944
|
crawlLinks?: boolean | undefined;
|
|
938
945
|
retryCount?: number | undefined;
|
|
@@ -941,10 +948,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
941
948
|
page: {
|
|
942
949
|
path: string;
|
|
943
950
|
sitemap?: {
|
|
944
|
-
lastmod?: string | Date | undefined;
|
|
945
951
|
exclude?: boolean | undefined;
|
|
946
952
|
priority?: number | undefined;
|
|
947
953
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
954
|
+
lastmod?: string | Date | undefined;
|
|
948
955
|
alternateRefs?: {
|
|
949
956
|
href: string;
|
|
950
957
|
hreflang: string;
|
|
@@ -967,6 +974,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
967
974
|
};
|
|
968
975
|
html: string;
|
|
969
976
|
}, ...args: unknown[]) => any) | undefined;
|
|
977
|
+
host?: string | undefined;
|
|
970
978
|
}>>;
|
|
971
979
|
prerender: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
972
980
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1030,10 +1038,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1030
1038
|
publicationDate: string | Date;
|
|
1031
1039
|
}>>;
|
|
1032
1040
|
}, "strip", z.ZodTypeAny, {
|
|
1033
|
-
lastmod?: string | Date | undefined;
|
|
1034
1041
|
exclude?: boolean | undefined;
|
|
1035
1042
|
priority?: number | undefined;
|
|
1036
1043
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1044
|
+
lastmod?: string | Date | undefined;
|
|
1037
1045
|
alternateRefs?: {
|
|
1038
1046
|
href: string;
|
|
1039
1047
|
hreflang: string;
|
|
@@ -1052,10 +1060,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1052
1060
|
publicationDate: string | Date;
|
|
1053
1061
|
} | undefined;
|
|
1054
1062
|
}, {
|
|
1055
|
-
lastmod?: string | Date | undefined;
|
|
1056
1063
|
exclude?: boolean | undefined;
|
|
1057
1064
|
priority?: number | undefined;
|
|
1058
1065
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1066
|
+
lastmod?: string | Date | undefined;
|
|
1059
1067
|
alternateRefs?: {
|
|
1060
1068
|
href: string;
|
|
1061
1069
|
hreflang: string;
|
|
@@ -1078,6 +1086,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1078
1086
|
}, {
|
|
1079
1087
|
prerender: z.ZodOptional<z.ZodObject<{
|
|
1080
1088
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1089
|
+
outputPath: z.ZodOptional<z.ZodString>;
|
|
1081
1090
|
autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
|
|
1082
1091
|
crawlLinks: z.ZodOptional<z.ZodBoolean>;
|
|
1083
1092
|
retryCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1142,10 +1151,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1142
1151
|
publicationDate: string | Date;
|
|
1143
1152
|
}>>;
|
|
1144
1153
|
}, "strip", z.ZodTypeAny, {
|
|
1145
|
-
lastmod?: string | Date | undefined;
|
|
1146
1154
|
exclude?: boolean | undefined;
|
|
1147
1155
|
priority?: number | undefined;
|
|
1148
1156
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1157
|
+
lastmod?: string | Date | undefined;
|
|
1149
1158
|
alternateRefs?: {
|
|
1150
1159
|
href: string;
|
|
1151
1160
|
hreflang: string;
|
|
@@ -1164,10 +1173,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1164
1173
|
publicationDate: string | Date;
|
|
1165
1174
|
} | undefined;
|
|
1166
1175
|
}, {
|
|
1167
|
-
lastmod?: string | Date | undefined;
|
|
1168
1176
|
exclude?: boolean | undefined;
|
|
1169
1177
|
priority?: number | undefined;
|
|
1170
1178
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1179
|
+
lastmod?: string | Date | undefined;
|
|
1171
1180
|
alternateRefs?: {
|
|
1172
1181
|
href: string;
|
|
1173
1182
|
hreflang: string;
|
|
@@ -1190,10 +1199,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1190
1199
|
}, "strip", z.ZodTypeAny, {
|
|
1191
1200
|
path: string;
|
|
1192
1201
|
sitemap?: {
|
|
1193
|
-
lastmod?: string | Date | undefined;
|
|
1194
1202
|
exclude?: boolean | undefined;
|
|
1195
1203
|
priority?: number | undefined;
|
|
1196
1204
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1205
|
+
lastmod?: string | Date | undefined;
|
|
1197
1206
|
alternateRefs?: {
|
|
1198
1207
|
href: string;
|
|
1199
1208
|
hreflang: string;
|
|
@@ -1216,10 +1225,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1216
1225
|
}, {
|
|
1217
1226
|
path: string;
|
|
1218
1227
|
sitemap?: {
|
|
1219
|
-
lastmod?: string | Date | undefined;
|
|
1220
1228
|
exclude?: boolean | undefined;
|
|
1221
1229
|
priority?: number | undefined;
|
|
1222
1230
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1231
|
+
lastmod?: string | Date | undefined;
|
|
1223
1232
|
alternateRefs?: {
|
|
1224
1233
|
href: string;
|
|
1225
1234
|
hreflang: string;
|
|
@@ -1245,10 +1254,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1245
1254
|
page: {
|
|
1246
1255
|
path: string;
|
|
1247
1256
|
sitemap?: {
|
|
1248
|
-
lastmod?: string | Date | undefined;
|
|
1249
1257
|
exclude?: boolean | undefined;
|
|
1250
1258
|
priority?: number | undefined;
|
|
1251
1259
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1260
|
+
lastmod?: string | Date | undefined;
|
|
1252
1261
|
alternateRefs?: {
|
|
1253
1262
|
href: string;
|
|
1254
1263
|
hreflang: string;
|
|
@@ -1274,10 +1283,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1274
1283
|
page: {
|
|
1275
1284
|
path: string;
|
|
1276
1285
|
sitemap?: {
|
|
1277
|
-
lastmod?: string | Date | undefined;
|
|
1278
1286
|
exclude?: boolean | undefined;
|
|
1279
1287
|
priority?: number | undefined;
|
|
1280
1288
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1289
|
+
lastmod?: string | Date | undefined;
|
|
1281
1290
|
alternateRefs?: {
|
|
1282
1291
|
href: string;
|
|
1283
1292
|
hreflang: string;
|
|
@@ -1302,6 +1311,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1302
1311
|
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
1303
1312
|
}, "strip", z.ZodTypeAny, {
|
|
1304
1313
|
enabled?: boolean | undefined;
|
|
1314
|
+
outputPath?: string | undefined;
|
|
1305
1315
|
autoSubfolderIndex?: boolean | undefined;
|
|
1306
1316
|
crawlLinks?: boolean | undefined;
|
|
1307
1317
|
retryCount?: number | undefined;
|
|
@@ -1310,10 +1320,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1310
1320
|
page: {
|
|
1311
1321
|
path: string;
|
|
1312
1322
|
sitemap?: {
|
|
1313
|
-
lastmod?: string | Date | undefined;
|
|
1314
1323
|
exclude?: boolean | undefined;
|
|
1315
1324
|
priority?: number | undefined;
|
|
1316
1325
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1326
|
+
lastmod?: string | Date | undefined;
|
|
1317
1327
|
alternateRefs?: {
|
|
1318
1328
|
href: string;
|
|
1319
1329
|
hreflang: string;
|
|
@@ -1338,6 +1348,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1338
1348
|
}, ...args: unknown[]) => any) | undefined;
|
|
1339
1349
|
}, {
|
|
1340
1350
|
enabled?: boolean | undefined;
|
|
1351
|
+
outputPath?: string | undefined;
|
|
1341
1352
|
autoSubfolderIndex?: boolean | undefined;
|
|
1342
1353
|
crawlLinks?: boolean | undefined;
|
|
1343
1354
|
retryCount?: number | undefined;
|
|
@@ -1346,10 +1357,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1346
1357
|
page: {
|
|
1347
1358
|
path: string;
|
|
1348
1359
|
sitemap?: {
|
|
1349
|
-
lastmod?: string | Date | undefined;
|
|
1350
1360
|
exclude?: boolean | undefined;
|
|
1351
1361
|
priority?: number | undefined;
|
|
1352
1362
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1363
|
+
lastmod?: string | Date | undefined;
|
|
1353
1364
|
alternateRefs?: {
|
|
1354
1365
|
href: string;
|
|
1355
1366
|
hreflang: string;
|
|
@@ -1377,6 +1388,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1377
1388
|
path: string;
|
|
1378
1389
|
prerender?: {
|
|
1379
1390
|
enabled?: boolean | undefined;
|
|
1391
|
+
outputPath?: string | undefined;
|
|
1380
1392
|
autoSubfolderIndex?: boolean | undefined;
|
|
1381
1393
|
crawlLinks?: boolean | undefined;
|
|
1382
1394
|
retryCount?: number | undefined;
|
|
@@ -1385,10 +1397,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1385
1397
|
page: {
|
|
1386
1398
|
path: string;
|
|
1387
1399
|
sitemap?: {
|
|
1388
|
-
lastmod?: string | Date | undefined;
|
|
1389
1400
|
exclude?: boolean | undefined;
|
|
1390
1401
|
priority?: number | undefined;
|
|
1391
1402
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1403
|
+
lastmod?: string | Date | undefined;
|
|
1392
1404
|
alternateRefs?: {
|
|
1393
1405
|
href: string;
|
|
1394
1406
|
hreflang: string;
|
|
@@ -1413,10 +1425,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1413
1425
|
}, ...args: unknown[]) => any) | undefined;
|
|
1414
1426
|
} | undefined;
|
|
1415
1427
|
sitemap?: {
|
|
1416
|
-
lastmod?: string | Date | undefined;
|
|
1417
1428
|
exclude?: boolean | undefined;
|
|
1418
1429
|
priority?: number | undefined;
|
|
1419
1430
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1431
|
+
lastmod?: string | Date | undefined;
|
|
1420
1432
|
alternateRefs?: {
|
|
1421
1433
|
href: string;
|
|
1422
1434
|
hreflang: string;
|
|
@@ -1440,6 +1452,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1440
1452
|
path: string;
|
|
1441
1453
|
prerender?: {
|
|
1442
1454
|
enabled?: boolean | undefined;
|
|
1455
|
+
outputPath?: string | undefined;
|
|
1443
1456
|
autoSubfolderIndex?: boolean | undefined;
|
|
1444
1457
|
crawlLinks?: boolean | undefined;
|
|
1445
1458
|
retryCount?: number | undefined;
|
|
@@ -1448,10 +1461,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1448
1461
|
page: {
|
|
1449
1462
|
path: string;
|
|
1450
1463
|
sitemap?: {
|
|
1451
|
-
lastmod?: string | Date | undefined;
|
|
1452
1464
|
exclude?: boolean | undefined;
|
|
1453
1465
|
priority?: number | undefined;
|
|
1454
1466
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1467
|
+
lastmod?: string | Date | undefined;
|
|
1455
1468
|
alternateRefs?: {
|
|
1456
1469
|
href: string;
|
|
1457
1470
|
hreflang: string;
|
|
@@ -1476,10 +1489,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1476
1489
|
}, ...args: unknown[]) => any) | undefined;
|
|
1477
1490
|
} | undefined;
|
|
1478
1491
|
sitemap?: {
|
|
1479
|
-
lastmod?: string | Date | undefined;
|
|
1480
1492
|
exclude?: boolean | undefined;
|
|
1481
1493
|
priority?: number | undefined;
|
|
1482
1494
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1495
|
+
lastmod?: string | Date | undefined;
|
|
1483
1496
|
alternateRefs?: {
|
|
1484
1497
|
href: string;
|
|
1485
1498
|
hreflang: string;
|
|
@@ -1506,6 +1519,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1506
1519
|
path: string;
|
|
1507
1520
|
prerender?: {
|
|
1508
1521
|
enabled?: boolean | undefined;
|
|
1522
|
+
outputPath?: string | undefined;
|
|
1509
1523
|
autoSubfolderIndex?: boolean | undefined;
|
|
1510
1524
|
crawlLinks?: boolean | undefined;
|
|
1511
1525
|
retryCount?: number | undefined;
|
|
@@ -1514,10 +1528,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1514
1528
|
page: {
|
|
1515
1529
|
path: string;
|
|
1516
1530
|
sitemap?: {
|
|
1517
|
-
lastmod?: string | Date | undefined;
|
|
1518
1531
|
exclude?: boolean | undefined;
|
|
1519
1532
|
priority?: number | undefined;
|
|
1520
1533
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1534
|
+
lastmod?: string | Date | undefined;
|
|
1521
1535
|
alternateRefs?: {
|
|
1522
1536
|
href: string;
|
|
1523
1537
|
hreflang: string;
|
|
@@ -1542,10 +1556,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1542
1556
|
}, ...args: unknown[]) => any) | undefined;
|
|
1543
1557
|
} | undefined;
|
|
1544
1558
|
sitemap?: {
|
|
1545
|
-
lastmod?: string | Date | undefined;
|
|
1546
1559
|
exclude?: boolean | undefined;
|
|
1547
1560
|
priority?: number | undefined;
|
|
1548
1561
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1562
|
+
lastmod?: string | Date | undefined;
|
|
1549
1563
|
alternateRefs?: {
|
|
1550
1564
|
href: string;
|
|
1551
1565
|
hreflang: string;
|
|
@@ -1574,6 +1588,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1574
1588
|
path: string;
|
|
1575
1589
|
prerender?: {
|
|
1576
1590
|
enabled?: boolean | undefined;
|
|
1591
|
+
outputPath?: string | undefined;
|
|
1577
1592
|
autoSubfolderIndex?: boolean | undefined;
|
|
1578
1593
|
crawlLinks?: boolean | undefined;
|
|
1579
1594
|
retryCount?: number | undefined;
|
|
@@ -1582,10 +1597,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1582
1597
|
page: {
|
|
1583
1598
|
path: string;
|
|
1584
1599
|
sitemap?: {
|
|
1585
|
-
lastmod?: string | Date | undefined;
|
|
1586
1600
|
exclude?: boolean | undefined;
|
|
1587
1601
|
priority?: number | undefined;
|
|
1588
1602
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1603
|
+
lastmod?: string | Date | undefined;
|
|
1589
1604
|
alternateRefs?: {
|
|
1590
1605
|
href: string;
|
|
1591
1606
|
hreflang: string;
|
|
@@ -1610,10 +1625,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1610
1625
|
}, ...args: unknown[]) => any) | undefined;
|
|
1611
1626
|
} | undefined;
|
|
1612
1627
|
sitemap?: {
|
|
1613
|
-
lastmod?: string | Date | undefined;
|
|
1614
1628
|
exclude?: boolean | undefined;
|
|
1615
1629
|
priority?: number | undefined;
|
|
1616
1630
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1631
|
+
lastmod?: string | Date | undefined;
|
|
1617
1632
|
alternateRefs?: {
|
|
1618
1633
|
href: string;
|
|
1619
1634
|
hreflang: string;
|
|
@@ -1639,6 +1654,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1639
1654
|
failOnError?: boolean | undefined;
|
|
1640
1655
|
}>, z.ZodOptional<z.ZodObject<{
|
|
1641
1656
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1657
|
+
outputPath: z.ZodOptional<z.ZodString>;
|
|
1642
1658
|
autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
|
|
1643
1659
|
crawlLinks: z.ZodOptional<z.ZodBoolean>;
|
|
1644
1660
|
retryCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1703,10 +1719,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1703
1719
|
publicationDate: string | Date;
|
|
1704
1720
|
}>>;
|
|
1705
1721
|
}, "strip", z.ZodTypeAny, {
|
|
1706
|
-
lastmod?: string | Date | undefined;
|
|
1707
1722
|
exclude?: boolean | undefined;
|
|
1708
1723
|
priority?: number | undefined;
|
|
1709
1724
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1725
|
+
lastmod?: string | Date | undefined;
|
|
1710
1726
|
alternateRefs?: {
|
|
1711
1727
|
href: string;
|
|
1712
1728
|
hreflang: string;
|
|
@@ -1725,10 +1741,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1725
1741
|
publicationDate: string | Date;
|
|
1726
1742
|
} | undefined;
|
|
1727
1743
|
}, {
|
|
1728
|
-
lastmod?: string | Date | undefined;
|
|
1729
1744
|
exclude?: boolean | undefined;
|
|
1730
1745
|
priority?: number | undefined;
|
|
1731
1746
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1747
|
+
lastmod?: string | Date | undefined;
|
|
1732
1748
|
alternateRefs?: {
|
|
1733
1749
|
href: string;
|
|
1734
1750
|
hreflang: string;
|
|
@@ -1751,10 +1767,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1751
1767
|
}, "strip", z.ZodTypeAny, {
|
|
1752
1768
|
path: string;
|
|
1753
1769
|
sitemap?: {
|
|
1754
|
-
lastmod?: string | Date | undefined;
|
|
1755
1770
|
exclude?: boolean | undefined;
|
|
1756
1771
|
priority?: number | undefined;
|
|
1757
1772
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1773
|
+
lastmod?: string | Date | undefined;
|
|
1758
1774
|
alternateRefs?: {
|
|
1759
1775
|
href: string;
|
|
1760
1776
|
hreflang: string;
|
|
@@ -1777,10 +1793,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1777
1793
|
}, {
|
|
1778
1794
|
path: string;
|
|
1779
1795
|
sitemap?: {
|
|
1780
|
-
lastmod?: string | Date | undefined;
|
|
1781
1796
|
exclude?: boolean | undefined;
|
|
1782
1797
|
priority?: number | undefined;
|
|
1783
1798
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1799
|
+
lastmod?: string | Date | undefined;
|
|
1784
1800
|
alternateRefs?: {
|
|
1785
1801
|
href: string;
|
|
1786
1802
|
hreflang: string;
|
|
@@ -1806,10 +1822,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1806
1822
|
page: {
|
|
1807
1823
|
path: string;
|
|
1808
1824
|
sitemap?: {
|
|
1809
|
-
lastmod?: string | Date | undefined;
|
|
1810
1825
|
exclude?: boolean | undefined;
|
|
1811
1826
|
priority?: number | undefined;
|
|
1812
1827
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1828
|
+
lastmod?: string | Date | undefined;
|
|
1813
1829
|
alternateRefs?: {
|
|
1814
1830
|
href: string;
|
|
1815
1831
|
hreflang: string;
|
|
@@ -1835,10 +1851,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1835
1851
|
page: {
|
|
1836
1852
|
path: string;
|
|
1837
1853
|
sitemap?: {
|
|
1838
|
-
lastmod?: string | Date | undefined;
|
|
1839
1854
|
exclude?: boolean | undefined;
|
|
1840
1855
|
priority?: number | undefined;
|
|
1841
1856
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1857
|
+
lastmod?: string | Date | undefined;
|
|
1842
1858
|
alternateRefs?: {
|
|
1843
1859
|
href: string;
|
|
1844
1860
|
hreflang: string;
|
|
@@ -1863,6 +1879,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1863
1879
|
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
1864
1880
|
}, "strip", z.ZodTypeAny, {
|
|
1865
1881
|
enabled?: boolean | undefined;
|
|
1882
|
+
outputPath?: string | undefined;
|
|
1866
1883
|
autoSubfolderIndex?: boolean | undefined;
|
|
1867
1884
|
crawlLinks?: boolean | undefined;
|
|
1868
1885
|
retryCount?: number | undefined;
|
|
@@ -1871,10 +1888,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1871
1888
|
page: {
|
|
1872
1889
|
path: string;
|
|
1873
1890
|
sitemap?: {
|
|
1874
|
-
lastmod?: string | Date | undefined;
|
|
1875
1891
|
exclude?: boolean | undefined;
|
|
1876
1892
|
priority?: number | undefined;
|
|
1877
1893
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1894
|
+
lastmod?: string | Date | undefined;
|
|
1878
1895
|
alternateRefs?: {
|
|
1879
1896
|
href: string;
|
|
1880
1897
|
hreflang: string;
|
|
@@ -1899,6 +1916,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1899
1916
|
}, ...args: unknown[]) => any) | undefined;
|
|
1900
1917
|
}, {
|
|
1901
1918
|
enabled?: boolean | undefined;
|
|
1919
|
+
outputPath?: string | undefined;
|
|
1902
1920
|
autoSubfolderIndex?: boolean | undefined;
|
|
1903
1921
|
crawlLinks?: boolean | undefined;
|
|
1904
1922
|
retryCount?: number | undefined;
|
|
@@ -1907,10 +1925,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1907
1925
|
page: {
|
|
1908
1926
|
path: string;
|
|
1909
1927
|
sitemap?: {
|
|
1910
|
-
lastmod?: string | Date | undefined;
|
|
1911
1928
|
exclude?: boolean | undefined;
|
|
1912
1929
|
priority?: number | undefined;
|
|
1913
1930
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1931
|
+
lastmod?: string | Date | undefined;
|
|
1914
1932
|
alternateRefs?: {
|
|
1915
1933
|
href: string;
|
|
1916
1934
|
hreflang: string;
|
|
@@ -1934,71 +1952,102 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1934
1952
|
html: string;
|
|
1935
1953
|
}, ...args: unknown[]) => any) | undefined;
|
|
1936
1954
|
}>>>>;
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1955
|
+
spa: z.ZodOptional<z.ZodObject<{
|
|
1956
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1957
|
+
maskPath: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1958
|
+
prerender: z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
1959
|
+
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1960
|
+
outputPath: z.ZodOptional<z.ZodString>;
|
|
1961
|
+
autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
|
|
1962
|
+
crawlLinks: z.ZodOptional<z.ZodBoolean>;
|
|
1963
|
+
retryCount: z.ZodOptional<z.ZodNumber>;
|
|
1964
|
+
retryDelay: z.ZodOptional<z.ZodNumber>;
|
|
1965
|
+
onSuccess: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
1966
|
+
page: z.ZodObject<{
|
|
1967
|
+
path: z.ZodString;
|
|
1968
|
+
sitemap: z.ZodOptional<z.ZodObject<{
|
|
1969
|
+
exclude: z.ZodOptional<z.ZodBoolean>;
|
|
1970
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
1971
|
+
changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
|
|
1972
|
+
lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
|
|
1973
|
+
alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1974
|
+
href: z.ZodString;
|
|
1975
|
+
hreflang: z.ZodString;
|
|
1976
|
+
}, "strip", z.ZodTypeAny, {
|
|
1977
|
+
href: string;
|
|
1978
|
+
hreflang: string;
|
|
1979
|
+
}, {
|
|
1980
|
+
href: string;
|
|
1981
|
+
hreflang: string;
|
|
1982
|
+
}>, "many">>;
|
|
1983
|
+
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1984
|
+
loc: z.ZodString;
|
|
1985
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
1986
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1987
|
+
}, "strip", z.ZodTypeAny, {
|
|
1988
|
+
loc: string;
|
|
1989
|
+
caption?: string | undefined;
|
|
1990
|
+
title?: string | undefined;
|
|
1991
|
+
}, {
|
|
1992
|
+
loc: string;
|
|
1993
|
+
caption?: string | undefined;
|
|
1994
|
+
title?: string | undefined;
|
|
1995
|
+
}>, "many">>;
|
|
1996
|
+
news: z.ZodOptional<z.ZodObject<{
|
|
1997
|
+
publication: z.ZodObject<{
|
|
1998
|
+
name: z.ZodString;
|
|
1999
|
+
language: z.ZodString;
|
|
2000
|
+
}, "strip", z.ZodTypeAny, {
|
|
2001
|
+
name: string;
|
|
2002
|
+
language: string;
|
|
2003
|
+
}, {
|
|
2004
|
+
name: string;
|
|
2005
|
+
language: string;
|
|
2006
|
+
}>;
|
|
2007
|
+
publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
2008
|
+
title: z.ZodString;
|
|
2009
|
+
}, "strip", z.ZodTypeAny, {
|
|
2010
|
+
title: string;
|
|
2011
|
+
publication: {
|
|
2012
|
+
name: string;
|
|
2013
|
+
language: string;
|
|
2014
|
+
};
|
|
2015
|
+
publicationDate: string | Date;
|
|
2016
|
+
}, {
|
|
2017
|
+
title: string;
|
|
2018
|
+
publication: {
|
|
2019
|
+
name: string;
|
|
2020
|
+
language: string;
|
|
2021
|
+
};
|
|
2022
|
+
publicationDate: string | Date;
|
|
2023
|
+
}>>;
|
|
2024
|
+
}, "strip", z.ZodTypeAny, {
|
|
2025
|
+
exclude?: boolean | undefined;
|
|
2026
|
+
priority?: number | undefined;
|
|
2027
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1998
2028
|
lastmod?: string | Date | undefined;
|
|
2029
|
+
alternateRefs?: {
|
|
2030
|
+
href: string;
|
|
2031
|
+
hreflang: string;
|
|
2032
|
+
}[] | undefined;
|
|
2033
|
+
images?: {
|
|
2034
|
+
loc: string;
|
|
2035
|
+
caption?: string | undefined;
|
|
2036
|
+
title?: string | undefined;
|
|
2037
|
+
}[] | undefined;
|
|
2038
|
+
news?: {
|
|
2039
|
+
title: string;
|
|
2040
|
+
publication: {
|
|
2041
|
+
name: string;
|
|
2042
|
+
language: string;
|
|
2043
|
+
};
|
|
2044
|
+
publicationDate: string | Date;
|
|
2045
|
+
} | undefined;
|
|
2046
|
+
}, {
|
|
1999
2047
|
exclude?: boolean | undefined;
|
|
2000
2048
|
priority?: number | undefined;
|
|
2001
2049
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2050
|
+
lastmod?: string | Date | undefined;
|
|
2002
2051
|
alternateRefs?: {
|
|
2003
2052
|
href: string;
|
|
2004
2053
|
hreflang: string;
|
|
@@ -2016,17 +2065,447 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2016
2065
|
};
|
|
2017
2066
|
publicationDate: string | Date;
|
|
2018
2067
|
} | undefined;
|
|
2019
|
-
}
|
|
2020
|
-
fromCrawl
|
|
2021
|
-
}
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2068
|
+
}>>;
|
|
2069
|
+
fromCrawl: z.ZodOptional<z.ZodBoolean>;
|
|
2070
|
+
}, "strip", z.ZodTypeAny, {
|
|
2071
|
+
path: string;
|
|
2072
|
+
sitemap?: {
|
|
2073
|
+
exclude?: boolean | undefined;
|
|
2074
|
+
priority?: number | undefined;
|
|
2075
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2076
|
+
lastmod?: string | Date | undefined;
|
|
2077
|
+
alternateRefs?: {
|
|
2078
|
+
href: string;
|
|
2079
|
+
hreflang: string;
|
|
2080
|
+
}[] | undefined;
|
|
2081
|
+
images?: {
|
|
2082
|
+
loc: string;
|
|
2083
|
+
caption?: string | undefined;
|
|
2084
|
+
title?: string | undefined;
|
|
2085
|
+
}[] | undefined;
|
|
2086
|
+
news?: {
|
|
2087
|
+
title: string;
|
|
2088
|
+
publication: {
|
|
2089
|
+
name: string;
|
|
2090
|
+
language: string;
|
|
2091
|
+
};
|
|
2092
|
+
publicationDate: string | Date;
|
|
2093
|
+
} | undefined;
|
|
2094
|
+
} | undefined;
|
|
2095
|
+
fromCrawl?: boolean | undefined;
|
|
2096
|
+
}, {
|
|
2097
|
+
path: string;
|
|
2098
|
+
sitemap?: {
|
|
2099
|
+
exclude?: boolean | undefined;
|
|
2100
|
+
priority?: number | undefined;
|
|
2101
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2102
|
+
lastmod?: string | Date | undefined;
|
|
2103
|
+
alternateRefs?: {
|
|
2104
|
+
href: string;
|
|
2105
|
+
hreflang: string;
|
|
2106
|
+
}[] | undefined;
|
|
2107
|
+
images?: {
|
|
2108
|
+
loc: string;
|
|
2109
|
+
caption?: string | undefined;
|
|
2110
|
+
title?: string | undefined;
|
|
2111
|
+
}[] | undefined;
|
|
2112
|
+
news?: {
|
|
2113
|
+
title: string;
|
|
2114
|
+
publication: {
|
|
2115
|
+
name: string;
|
|
2116
|
+
language: string;
|
|
2117
|
+
};
|
|
2118
|
+
publicationDate: string | Date;
|
|
2119
|
+
} | undefined;
|
|
2120
|
+
} | undefined;
|
|
2121
|
+
fromCrawl?: boolean | undefined;
|
|
2122
|
+
}>;
|
|
2123
|
+
html: z.ZodString;
|
|
2124
|
+
}, "strip", z.ZodTypeAny, {
|
|
2125
|
+
page: {
|
|
2126
|
+
path: string;
|
|
2127
|
+
sitemap?: {
|
|
2128
|
+
exclude?: boolean | undefined;
|
|
2129
|
+
priority?: number | undefined;
|
|
2130
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2131
|
+
lastmod?: string | Date | undefined;
|
|
2132
|
+
alternateRefs?: {
|
|
2133
|
+
href: string;
|
|
2134
|
+
hreflang: string;
|
|
2135
|
+
}[] | undefined;
|
|
2136
|
+
images?: {
|
|
2137
|
+
loc: string;
|
|
2138
|
+
caption?: string | undefined;
|
|
2139
|
+
title?: string | undefined;
|
|
2140
|
+
}[] | undefined;
|
|
2141
|
+
news?: {
|
|
2142
|
+
title: string;
|
|
2143
|
+
publication: {
|
|
2144
|
+
name: string;
|
|
2145
|
+
language: string;
|
|
2146
|
+
};
|
|
2147
|
+
publicationDate: string | Date;
|
|
2148
|
+
} | undefined;
|
|
2149
|
+
} | undefined;
|
|
2150
|
+
fromCrawl?: boolean | undefined;
|
|
2151
|
+
};
|
|
2152
|
+
html: string;
|
|
2153
|
+
}, {
|
|
2154
|
+
page: {
|
|
2155
|
+
path: string;
|
|
2156
|
+
sitemap?: {
|
|
2157
|
+
exclude?: boolean | undefined;
|
|
2158
|
+
priority?: number | undefined;
|
|
2159
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2160
|
+
lastmod?: string | Date | undefined;
|
|
2161
|
+
alternateRefs?: {
|
|
2162
|
+
href: string;
|
|
2163
|
+
hreflang: string;
|
|
2164
|
+
}[] | undefined;
|
|
2165
|
+
images?: {
|
|
2166
|
+
loc: string;
|
|
2167
|
+
caption?: string | undefined;
|
|
2168
|
+
title?: string | undefined;
|
|
2169
|
+
}[] | undefined;
|
|
2170
|
+
news?: {
|
|
2171
|
+
title: string;
|
|
2172
|
+
publication: {
|
|
2173
|
+
name: string;
|
|
2174
|
+
language: string;
|
|
2175
|
+
};
|
|
2176
|
+
publicationDate: string | Date;
|
|
2177
|
+
} | undefined;
|
|
2178
|
+
} | undefined;
|
|
2179
|
+
fromCrawl?: boolean | undefined;
|
|
2180
|
+
};
|
|
2181
|
+
html: string;
|
|
2182
|
+
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
2183
|
+
}, "strip", z.ZodTypeAny, {
|
|
2184
|
+
enabled?: boolean | undefined;
|
|
2185
|
+
outputPath?: string | undefined;
|
|
2186
|
+
autoSubfolderIndex?: boolean | undefined;
|
|
2187
|
+
crawlLinks?: boolean | undefined;
|
|
2188
|
+
retryCount?: number | undefined;
|
|
2189
|
+
retryDelay?: number | undefined;
|
|
2190
|
+
onSuccess?: ((args_0: {
|
|
2191
|
+
page: {
|
|
2192
|
+
path: string;
|
|
2193
|
+
sitemap?: {
|
|
2194
|
+
exclude?: boolean | undefined;
|
|
2195
|
+
priority?: number | undefined;
|
|
2196
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2197
|
+
lastmod?: string | Date | undefined;
|
|
2198
|
+
alternateRefs?: {
|
|
2199
|
+
href: string;
|
|
2200
|
+
hreflang: string;
|
|
2201
|
+
}[] | undefined;
|
|
2202
|
+
images?: {
|
|
2203
|
+
loc: string;
|
|
2204
|
+
caption?: string | undefined;
|
|
2205
|
+
title?: string | undefined;
|
|
2206
|
+
}[] | undefined;
|
|
2207
|
+
news?: {
|
|
2208
|
+
title: string;
|
|
2209
|
+
publication: {
|
|
2210
|
+
name: string;
|
|
2211
|
+
language: string;
|
|
2212
|
+
};
|
|
2213
|
+
publicationDate: string | Date;
|
|
2214
|
+
} | undefined;
|
|
2215
|
+
} | undefined;
|
|
2216
|
+
fromCrawl?: boolean | undefined;
|
|
2217
|
+
};
|
|
2218
|
+
html: string;
|
|
2219
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
2220
|
+
}, {
|
|
2221
|
+
enabled?: boolean | undefined;
|
|
2222
|
+
outputPath?: string | undefined;
|
|
2223
|
+
autoSubfolderIndex?: boolean | undefined;
|
|
2224
|
+
crawlLinks?: boolean | undefined;
|
|
2225
|
+
retryCount?: number | undefined;
|
|
2226
|
+
retryDelay?: number | undefined;
|
|
2227
|
+
onSuccess?: ((args_0: {
|
|
2228
|
+
page: {
|
|
2229
|
+
path: string;
|
|
2230
|
+
sitemap?: {
|
|
2231
|
+
exclude?: boolean | undefined;
|
|
2232
|
+
priority?: number | undefined;
|
|
2233
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2234
|
+
lastmod?: string | Date | undefined;
|
|
2235
|
+
alternateRefs?: {
|
|
2236
|
+
href: string;
|
|
2237
|
+
hreflang: string;
|
|
2238
|
+
}[] | undefined;
|
|
2239
|
+
images?: {
|
|
2240
|
+
loc: string;
|
|
2241
|
+
caption?: string | undefined;
|
|
2242
|
+
title?: string | undefined;
|
|
2243
|
+
}[] | undefined;
|
|
2244
|
+
news?: {
|
|
2245
|
+
title: string;
|
|
2246
|
+
publication: {
|
|
2247
|
+
name: string;
|
|
2248
|
+
language: string;
|
|
2249
|
+
};
|
|
2250
|
+
publicationDate: string | Date;
|
|
2251
|
+
} | undefined;
|
|
2252
|
+
} | undefined;
|
|
2253
|
+
fromCrawl?: boolean | undefined;
|
|
2254
|
+
};
|
|
2255
|
+
html: string;
|
|
2256
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
2257
|
+
}>>>, {
|
|
2258
|
+
enabled: boolean;
|
|
2259
|
+
outputPath: string;
|
|
2260
|
+
autoSubfolderIndex?: boolean | undefined;
|
|
2261
|
+
crawlLinks: boolean;
|
|
2262
|
+
retryCount: number;
|
|
2263
|
+
retryDelay?: number | undefined;
|
|
2264
|
+
onSuccess?: ((args_0: {
|
|
2265
|
+
page: {
|
|
2266
|
+
path: string;
|
|
2267
|
+
sitemap?: {
|
|
2268
|
+
exclude?: boolean | undefined;
|
|
2269
|
+
priority?: number | undefined;
|
|
2270
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2271
|
+
lastmod?: string | Date | undefined;
|
|
2272
|
+
alternateRefs?: {
|
|
2273
|
+
href: string;
|
|
2274
|
+
hreflang: string;
|
|
2275
|
+
}[] | undefined;
|
|
2276
|
+
images?: {
|
|
2277
|
+
loc: string;
|
|
2278
|
+
caption?: string | undefined;
|
|
2279
|
+
title?: string | undefined;
|
|
2280
|
+
}[] | undefined;
|
|
2281
|
+
news?: {
|
|
2282
|
+
title: string;
|
|
2283
|
+
publication: {
|
|
2284
|
+
name: string;
|
|
2285
|
+
language: string;
|
|
2286
|
+
};
|
|
2287
|
+
publicationDate: string | Date;
|
|
2288
|
+
} | undefined;
|
|
2289
|
+
} | undefined;
|
|
2290
|
+
fromCrawl?: boolean | undefined;
|
|
2291
|
+
};
|
|
2292
|
+
html: string;
|
|
2293
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
2294
|
+
}, {
|
|
2295
|
+
enabled?: boolean | undefined;
|
|
2296
|
+
outputPath?: string | undefined;
|
|
2297
|
+
autoSubfolderIndex?: boolean | undefined;
|
|
2298
|
+
crawlLinks?: boolean | undefined;
|
|
2299
|
+
retryCount?: number | undefined;
|
|
2300
|
+
retryDelay?: number | undefined;
|
|
2301
|
+
onSuccess?: ((args_0: {
|
|
2302
|
+
page: {
|
|
2303
|
+
path: string;
|
|
2304
|
+
sitemap?: {
|
|
2305
|
+
exclude?: boolean | undefined;
|
|
2306
|
+
priority?: number | undefined;
|
|
2307
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2308
|
+
lastmod?: string | Date | undefined;
|
|
2309
|
+
alternateRefs?: {
|
|
2310
|
+
href: string;
|
|
2311
|
+
hreflang: string;
|
|
2312
|
+
}[] | undefined;
|
|
2313
|
+
images?: {
|
|
2314
|
+
loc: string;
|
|
2315
|
+
caption?: string | undefined;
|
|
2316
|
+
title?: string | undefined;
|
|
2317
|
+
}[] | undefined;
|
|
2318
|
+
news?: {
|
|
2319
|
+
title: string;
|
|
2320
|
+
publication: {
|
|
2321
|
+
name: string;
|
|
2322
|
+
language: string;
|
|
2323
|
+
};
|
|
2324
|
+
publicationDate: string | Date;
|
|
2325
|
+
} | undefined;
|
|
2326
|
+
} | undefined;
|
|
2327
|
+
fromCrawl?: boolean | undefined;
|
|
2328
|
+
};
|
|
2329
|
+
html: string;
|
|
2330
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
2331
|
+
} | undefined>;
|
|
2332
|
+
}, "strip", z.ZodTypeAny, {
|
|
2333
|
+
prerender: {
|
|
2334
|
+
enabled: boolean;
|
|
2335
|
+
outputPath: string;
|
|
2336
|
+
autoSubfolderIndex?: boolean | undefined;
|
|
2337
|
+
crawlLinks: boolean;
|
|
2338
|
+
retryCount: number;
|
|
2339
|
+
retryDelay?: number | undefined;
|
|
2340
|
+
onSuccess?: ((args_0: {
|
|
2341
|
+
page: {
|
|
2342
|
+
path: string;
|
|
2343
|
+
sitemap?: {
|
|
2344
|
+
exclude?: boolean | undefined;
|
|
2345
|
+
priority?: number | undefined;
|
|
2346
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2347
|
+
lastmod?: string | Date | undefined;
|
|
2348
|
+
alternateRefs?: {
|
|
2349
|
+
href: string;
|
|
2350
|
+
hreflang: string;
|
|
2351
|
+
}[] | undefined;
|
|
2352
|
+
images?: {
|
|
2353
|
+
loc: string;
|
|
2354
|
+
caption?: string | undefined;
|
|
2355
|
+
title?: string | undefined;
|
|
2356
|
+
}[] | undefined;
|
|
2357
|
+
news?: {
|
|
2358
|
+
title: string;
|
|
2359
|
+
publication: {
|
|
2360
|
+
name: string;
|
|
2361
|
+
language: string;
|
|
2362
|
+
};
|
|
2363
|
+
publicationDate: string | Date;
|
|
2364
|
+
} | undefined;
|
|
2365
|
+
} | undefined;
|
|
2366
|
+
fromCrawl?: boolean | undefined;
|
|
2367
|
+
};
|
|
2368
|
+
html: string;
|
|
2369
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
2370
|
+
};
|
|
2371
|
+
enabled: boolean;
|
|
2372
|
+
maskPath: string;
|
|
2373
|
+
}, {
|
|
2374
|
+
prerender?: {
|
|
2375
|
+
enabled?: boolean | undefined;
|
|
2376
|
+
outputPath?: string | undefined;
|
|
2377
|
+
autoSubfolderIndex?: boolean | undefined;
|
|
2378
|
+
crawlLinks?: boolean | undefined;
|
|
2379
|
+
retryCount?: number | undefined;
|
|
2380
|
+
retryDelay?: number | undefined;
|
|
2381
|
+
onSuccess?: ((args_0: {
|
|
2382
|
+
page: {
|
|
2383
|
+
path: string;
|
|
2384
|
+
sitemap?: {
|
|
2385
|
+
exclude?: boolean | undefined;
|
|
2386
|
+
priority?: number | undefined;
|
|
2387
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2388
|
+
lastmod?: string | Date | undefined;
|
|
2389
|
+
alternateRefs?: {
|
|
2390
|
+
href: string;
|
|
2391
|
+
hreflang: string;
|
|
2392
|
+
}[] | undefined;
|
|
2393
|
+
images?: {
|
|
2394
|
+
loc: string;
|
|
2395
|
+
caption?: string | undefined;
|
|
2396
|
+
title?: string | undefined;
|
|
2397
|
+
}[] | undefined;
|
|
2398
|
+
news?: {
|
|
2399
|
+
title: string;
|
|
2400
|
+
publication: {
|
|
2401
|
+
name: string;
|
|
2402
|
+
language: string;
|
|
2403
|
+
};
|
|
2404
|
+
publicationDate: string | Date;
|
|
2405
|
+
} | undefined;
|
|
2406
|
+
} | undefined;
|
|
2407
|
+
fromCrawl?: boolean | undefined;
|
|
2408
|
+
};
|
|
2409
|
+
html: string;
|
|
2410
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
2411
|
+
} | undefined;
|
|
2412
|
+
enabled?: boolean | undefined;
|
|
2413
|
+
maskPath?: string | undefined;
|
|
2414
|
+
}>>;
|
|
2415
|
+
root: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2416
|
+
target: z.ZodOptional<z.ZodType<import('nitropack/presets').PresetNameInput | undefined, z.ZodTypeDef, import('nitropack/presets').PresetNameInput | undefined>>;
|
|
2417
|
+
}, "strip", z.ZodTypeAny, {
|
|
2418
|
+
root: string;
|
|
2419
|
+
tsr: {
|
|
2420
|
+
srcDirectory: string;
|
|
2421
|
+
target?: "react" | "solid" | undefined;
|
|
2422
|
+
virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
2423
|
+
routeFilePrefix?: string | undefined;
|
|
2424
|
+
routeFileIgnorePrefix?: string | undefined;
|
|
2425
|
+
routeFileIgnorePattern?: string | undefined;
|
|
2426
|
+
routesDirectory?: string | undefined;
|
|
2427
|
+
quoteStyle?: "single" | "double" | undefined;
|
|
2428
|
+
semicolons?: boolean | undefined;
|
|
2429
|
+
disableLogging?: boolean | undefined;
|
|
2430
|
+
routeTreeFileHeader?: string[] | undefined;
|
|
2431
|
+
indexToken?: string | undefined;
|
|
2432
|
+
routeToken?: string | undefined;
|
|
2433
|
+
pathParamsAllowedCharacters?: (";" | ":" | "@" | "&" | "=" | "+" | "$" | ",")[] | undefined;
|
|
2434
|
+
generatedRouteTree?: string | undefined;
|
|
2435
|
+
disableTypes?: boolean | undefined;
|
|
2436
|
+
verboseFileRoutes?: boolean | undefined;
|
|
2437
|
+
addExtensions?: boolean | undefined;
|
|
2438
|
+
disableManifestGeneration?: boolean | undefined;
|
|
2439
|
+
enableRouteTreeFormatting?: boolean | undefined;
|
|
2440
|
+
routeTreeFileFooter?: string[] | undefined;
|
|
2441
|
+
autoCodeSplitting?: boolean | undefined;
|
|
2442
|
+
customScaffolding?: {
|
|
2443
|
+
routeTemplate?: string | undefined;
|
|
2444
|
+
lazyRouteTemplate?: string | undefined;
|
|
2445
|
+
} | undefined;
|
|
2446
|
+
experimental?: {
|
|
2447
|
+
enableCodeSplitting?: boolean | undefined;
|
|
2448
|
+
} | undefined;
|
|
2449
|
+
};
|
|
2450
|
+
client: {
|
|
2451
|
+
base: string;
|
|
2452
|
+
entry?: string | undefined;
|
|
2453
|
+
};
|
|
2454
|
+
server: {
|
|
2455
|
+
entry?: string | undefined;
|
|
2456
|
+
};
|
|
2457
|
+
serverFns: {
|
|
2458
|
+
base: string;
|
|
2459
|
+
};
|
|
2460
|
+
public: {
|
|
2461
|
+
base: string;
|
|
2462
|
+
dir: string;
|
|
2463
|
+
};
|
|
2464
|
+
pages: (string | {
|
|
2465
|
+
path: string;
|
|
2466
|
+
prerender?: {
|
|
2467
|
+
enabled?: boolean | undefined;
|
|
2468
|
+
outputPath?: string | undefined;
|
|
2469
|
+
autoSubfolderIndex?: boolean | undefined;
|
|
2470
|
+
crawlLinks?: boolean | undefined;
|
|
2471
|
+
retryCount?: number | undefined;
|
|
2472
|
+
retryDelay?: number | undefined;
|
|
2473
|
+
onSuccess?: ((args_0: {
|
|
2474
|
+
page: {
|
|
2475
|
+
path: string;
|
|
2476
|
+
sitemap?: {
|
|
2477
|
+
exclude?: boolean | undefined;
|
|
2478
|
+
priority?: number | undefined;
|
|
2479
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2480
|
+
lastmod?: string | Date | undefined;
|
|
2481
|
+
alternateRefs?: {
|
|
2482
|
+
href: string;
|
|
2483
|
+
hreflang: string;
|
|
2484
|
+
}[] | undefined;
|
|
2485
|
+
images?: {
|
|
2486
|
+
loc: string;
|
|
2487
|
+
caption?: string | undefined;
|
|
2488
|
+
title?: string | undefined;
|
|
2489
|
+
}[] | undefined;
|
|
2490
|
+
news?: {
|
|
2491
|
+
title: string;
|
|
2492
|
+
publication: {
|
|
2493
|
+
name: string;
|
|
2494
|
+
language: string;
|
|
2495
|
+
};
|
|
2496
|
+
publicationDate: string | Date;
|
|
2497
|
+
} | undefined;
|
|
2498
|
+
} | undefined;
|
|
2499
|
+
fromCrawl?: boolean | undefined;
|
|
2500
|
+
};
|
|
2501
|
+
html: string;
|
|
2502
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
2503
|
+
} | undefined;
|
|
2504
|
+
sitemap?: {
|
|
2027
2505
|
exclude?: boolean | undefined;
|
|
2028
2506
|
priority?: number | undefined;
|
|
2029
2507
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2508
|
+
lastmod?: string | Date | undefined;
|
|
2030
2509
|
alternateRefs?: {
|
|
2031
2510
|
href: string;
|
|
2032
2511
|
hreflang: string;
|
|
@@ -2053,6 +2532,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2053
2532
|
path: string;
|
|
2054
2533
|
prerender?: {
|
|
2055
2534
|
enabled?: boolean | undefined;
|
|
2535
|
+
outputPath?: string | undefined;
|
|
2056
2536
|
autoSubfolderIndex?: boolean | undefined;
|
|
2057
2537
|
crawlLinks?: boolean | undefined;
|
|
2058
2538
|
retryCount?: number | undefined;
|
|
@@ -2061,10 +2541,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2061
2541
|
page: {
|
|
2062
2542
|
path: string;
|
|
2063
2543
|
sitemap?: {
|
|
2064
|
-
lastmod?: string | Date | undefined;
|
|
2065
2544
|
exclude?: boolean | undefined;
|
|
2066
2545
|
priority?: number | undefined;
|
|
2067
2546
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2547
|
+
lastmod?: string | Date | undefined;
|
|
2068
2548
|
alternateRefs?: {
|
|
2069
2549
|
href: string;
|
|
2070
2550
|
hreflang: string;
|
|
@@ -2089,10 +2569,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2089
2569
|
}, ...args: unknown[]) => any) | undefined;
|
|
2090
2570
|
} | undefined;
|
|
2091
2571
|
sitemap?: {
|
|
2092
|
-
lastmod?: string | Date | undefined;
|
|
2093
2572
|
exclude?: boolean | undefined;
|
|
2094
2573
|
priority?: number | undefined;
|
|
2095
2574
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2575
|
+
lastmod?: string | Date | undefined;
|
|
2096
2576
|
alternateRefs?: {
|
|
2097
2577
|
href: string;
|
|
2098
2578
|
hreflang: string;
|
|
@@ -2118,6 +2598,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2118
2598
|
failOnError?: boolean | undefined;
|
|
2119
2599
|
} & {
|
|
2120
2600
|
enabled?: boolean | undefined;
|
|
2601
|
+
outputPath?: string | undefined;
|
|
2121
2602
|
autoSubfolderIndex?: boolean | undefined;
|
|
2122
2603
|
crawlLinks?: boolean | undefined;
|
|
2123
2604
|
retryCount?: number | undefined;
|
|
@@ -2126,10 +2607,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2126
2607
|
page: {
|
|
2127
2608
|
path: string;
|
|
2128
2609
|
sitemap?: {
|
|
2129
|
-
lastmod?: string | Date | undefined;
|
|
2130
2610
|
exclude?: boolean | undefined;
|
|
2131
2611
|
priority?: number | undefined;
|
|
2132
2612
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2613
|
+
lastmod?: string | Date | undefined;
|
|
2133
2614
|
alternateRefs?: {
|
|
2134
2615
|
href: string;
|
|
2135
2616
|
hreflang: string;
|
|
@@ -2154,8 +2635,8 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2154
2635
|
}, ...args: unknown[]) => any) | undefined;
|
|
2155
2636
|
}) | undefined;
|
|
2156
2637
|
sitemap?: {
|
|
2157
|
-
host?: string | undefined;
|
|
2158
2638
|
enabled?: boolean | undefined;
|
|
2639
|
+
outputPath?: string | undefined;
|
|
2159
2640
|
autoSubfolderIndex?: boolean | undefined;
|
|
2160
2641
|
crawlLinks?: boolean | undefined;
|
|
2161
2642
|
retryCount?: number | undefined;
|
|
@@ -2164,10 +2645,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2164
2645
|
page: {
|
|
2165
2646
|
path: string;
|
|
2166
2647
|
sitemap?: {
|
|
2167
|
-
lastmod?: string | Date | undefined;
|
|
2168
2648
|
exclude?: boolean | undefined;
|
|
2169
2649
|
priority?: number | undefined;
|
|
2170
2650
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2651
|
+
lastmod?: string | Date | undefined;
|
|
2171
2652
|
alternateRefs?: {
|
|
2172
2653
|
href: string;
|
|
2173
2654
|
hreflang: string;
|
|
@@ -2190,15 +2671,51 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2190
2671
|
};
|
|
2191
2672
|
html: string;
|
|
2192
2673
|
}, ...args: unknown[]) => any) | undefined;
|
|
2674
|
+
host?: string | undefined;
|
|
2193
2675
|
} | undefined;
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2676
|
+
spa?: {
|
|
2677
|
+
prerender: {
|
|
2678
|
+
enabled: boolean;
|
|
2679
|
+
outputPath: string;
|
|
2680
|
+
autoSubfolderIndex?: boolean | undefined;
|
|
2681
|
+
crawlLinks: boolean;
|
|
2682
|
+
retryCount: number;
|
|
2683
|
+
retryDelay?: number | undefined;
|
|
2684
|
+
onSuccess?: ((args_0: {
|
|
2685
|
+
page: {
|
|
2686
|
+
path: string;
|
|
2687
|
+
sitemap?: {
|
|
2688
|
+
exclude?: boolean | undefined;
|
|
2689
|
+
priority?: number | undefined;
|
|
2690
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2691
|
+
lastmod?: string | Date | undefined;
|
|
2692
|
+
alternateRefs?: {
|
|
2693
|
+
href: string;
|
|
2694
|
+
hreflang: string;
|
|
2695
|
+
}[] | undefined;
|
|
2696
|
+
images?: {
|
|
2697
|
+
loc: string;
|
|
2698
|
+
caption?: string | undefined;
|
|
2699
|
+
title?: string | undefined;
|
|
2700
|
+
}[] | undefined;
|
|
2701
|
+
news?: {
|
|
2702
|
+
title: string;
|
|
2703
|
+
publication: {
|
|
2704
|
+
name: string;
|
|
2705
|
+
language: string;
|
|
2706
|
+
};
|
|
2707
|
+
publicationDate: string | Date;
|
|
2708
|
+
} | undefined;
|
|
2709
|
+
} | undefined;
|
|
2710
|
+
fromCrawl?: boolean | undefined;
|
|
2711
|
+
};
|
|
2712
|
+
html: string;
|
|
2713
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
2714
|
+
};
|
|
2715
|
+
enabled: boolean;
|
|
2716
|
+
maskPath: string;
|
|
2201
2717
|
} | undefined;
|
|
2718
|
+
}, {
|
|
2202
2719
|
target?: import('nitropack/presets').PresetNameInput | undefined;
|
|
2203
2720
|
root?: string | undefined;
|
|
2204
2721
|
prerender?: ({
|
|
@@ -2206,6 +2723,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2206
2723
|
path: string;
|
|
2207
2724
|
prerender?: {
|
|
2208
2725
|
enabled?: boolean | undefined;
|
|
2726
|
+
outputPath?: string | undefined;
|
|
2209
2727
|
autoSubfolderIndex?: boolean | undefined;
|
|
2210
2728
|
crawlLinks?: boolean | undefined;
|
|
2211
2729
|
retryCount?: number | undefined;
|
|
@@ -2214,10 +2732,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2214
2732
|
page: {
|
|
2215
2733
|
path: string;
|
|
2216
2734
|
sitemap?: {
|
|
2217
|
-
lastmod?: string | Date | undefined;
|
|
2218
2735
|
exclude?: boolean | undefined;
|
|
2219
2736
|
priority?: number | undefined;
|
|
2220
2737
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2738
|
+
lastmod?: string | Date | undefined;
|
|
2221
2739
|
alternateRefs?: {
|
|
2222
2740
|
href: string;
|
|
2223
2741
|
hreflang: string;
|
|
@@ -2242,10 +2760,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2242
2760
|
}, ...args: unknown[]) => any) | undefined;
|
|
2243
2761
|
} | undefined;
|
|
2244
2762
|
sitemap?: {
|
|
2245
|
-
lastmod?: string | Date | undefined;
|
|
2246
2763
|
exclude?: boolean | undefined;
|
|
2247
2764
|
priority?: number | undefined;
|
|
2248
2765
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2766
|
+
lastmod?: string | Date | undefined;
|
|
2249
2767
|
alternateRefs?: {
|
|
2250
2768
|
href: string;
|
|
2251
2769
|
hreflang: string;
|
|
@@ -2271,6 +2789,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2271
2789
|
failOnError?: boolean | undefined;
|
|
2272
2790
|
} & {
|
|
2273
2791
|
enabled?: boolean | undefined;
|
|
2792
|
+
outputPath?: string | undefined;
|
|
2274
2793
|
autoSubfolderIndex?: boolean | undefined;
|
|
2275
2794
|
crawlLinks?: boolean | undefined;
|
|
2276
2795
|
retryCount?: number | undefined;
|
|
@@ -2279,10 +2798,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2279
2798
|
page: {
|
|
2280
2799
|
path: string;
|
|
2281
2800
|
sitemap?: {
|
|
2282
|
-
lastmod?: string | Date | undefined;
|
|
2283
2801
|
exclude?: boolean | undefined;
|
|
2284
2802
|
priority?: number | undefined;
|
|
2285
2803
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2804
|
+
lastmod?: string | Date | undefined;
|
|
2286
2805
|
alternateRefs?: {
|
|
2287
2806
|
href: string;
|
|
2288
2807
|
hreflang: string;
|
|
@@ -2337,6 +2856,13 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2337
2856
|
} | undefined;
|
|
2338
2857
|
srcDirectory?: string | undefined;
|
|
2339
2858
|
} | undefined;
|
|
2859
|
+
client?: {
|
|
2860
|
+
entry?: string | undefined;
|
|
2861
|
+
base?: string | undefined;
|
|
2862
|
+
} | undefined;
|
|
2863
|
+
server?: {
|
|
2864
|
+
entry?: string | undefined;
|
|
2865
|
+
} | undefined;
|
|
2340
2866
|
serverFns?: {
|
|
2341
2867
|
base?: string | undefined;
|
|
2342
2868
|
} | undefined;
|
|
@@ -2345,8 +2871,8 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2345
2871
|
dir?: string | undefined;
|
|
2346
2872
|
} | undefined;
|
|
2347
2873
|
sitemap?: {
|
|
2348
|
-
host?: string | undefined;
|
|
2349
2874
|
enabled?: boolean | undefined;
|
|
2875
|
+
outputPath?: string | undefined;
|
|
2350
2876
|
autoSubfolderIndex?: boolean | undefined;
|
|
2351
2877
|
crawlLinks?: boolean | undefined;
|
|
2352
2878
|
retryCount?: number | undefined;
|
|
@@ -2355,10 +2881,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2355
2881
|
page: {
|
|
2356
2882
|
path: string;
|
|
2357
2883
|
sitemap?: {
|
|
2358
|
-
lastmod?: string | Date | undefined;
|
|
2359
2884
|
exclude?: boolean | undefined;
|
|
2360
2885
|
priority?: number | undefined;
|
|
2361
2886
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2887
|
+
lastmod?: string | Date | undefined;
|
|
2362
2888
|
alternateRefs?: {
|
|
2363
2889
|
href: string;
|
|
2364
2890
|
hreflang: string;
|
|
@@ -2381,11 +2907,13 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2381
2907
|
};
|
|
2382
2908
|
html: string;
|
|
2383
2909
|
}, ...args: unknown[]) => any) | undefined;
|
|
2910
|
+
host?: string | undefined;
|
|
2384
2911
|
} | undefined;
|
|
2385
2912
|
pages?: (string | {
|
|
2386
2913
|
path: string;
|
|
2387
2914
|
prerender?: {
|
|
2388
2915
|
enabled?: boolean | undefined;
|
|
2916
|
+
outputPath?: string | undefined;
|
|
2389
2917
|
autoSubfolderIndex?: boolean | undefined;
|
|
2390
2918
|
crawlLinks?: boolean | undefined;
|
|
2391
2919
|
retryCount?: number | undefined;
|
|
@@ -2394,10 +2922,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2394
2922
|
page: {
|
|
2395
2923
|
path: string;
|
|
2396
2924
|
sitemap?: {
|
|
2397
|
-
lastmod?: string | Date | undefined;
|
|
2398
2925
|
exclude?: boolean | undefined;
|
|
2399
2926
|
priority?: number | undefined;
|
|
2400
2927
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2928
|
+
lastmod?: string | Date | undefined;
|
|
2401
2929
|
alternateRefs?: {
|
|
2402
2930
|
href: string;
|
|
2403
2931
|
hreflang: string;
|
|
@@ -2422,10 +2950,10 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2422
2950
|
}, ...args: unknown[]) => any) | undefined;
|
|
2423
2951
|
} | undefined;
|
|
2424
2952
|
sitemap?: {
|
|
2425
|
-
lastmod?: string | Date | undefined;
|
|
2426
2953
|
exclude?: boolean | undefined;
|
|
2427
2954
|
priority?: number | undefined;
|
|
2428
2955
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2956
|
+
lastmod?: string | Date | undefined;
|
|
2429
2957
|
alternateRefs?: {
|
|
2430
2958
|
href: string;
|
|
2431
2959
|
hreflang: string;
|
|
@@ -2446,6 +2974,48 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2446
2974
|
} | undefined;
|
|
2447
2975
|
fromCrawl?: boolean | undefined;
|
|
2448
2976
|
})[] | undefined;
|
|
2977
|
+
spa?: {
|
|
2978
|
+
prerender?: {
|
|
2979
|
+
enabled?: boolean | undefined;
|
|
2980
|
+
outputPath?: string | undefined;
|
|
2981
|
+
autoSubfolderIndex?: boolean | undefined;
|
|
2982
|
+
crawlLinks?: boolean | undefined;
|
|
2983
|
+
retryCount?: number | undefined;
|
|
2984
|
+
retryDelay?: number | undefined;
|
|
2985
|
+
onSuccess?: ((args_0: {
|
|
2986
|
+
page: {
|
|
2987
|
+
path: string;
|
|
2988
|
+
sitemap?: {
|
|
2989
|
+
exclude?: boolean | undefined;
|
|
2990
|
+
priority?: number | undefined;
|
|
2991
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2992
|
+
lastmod?: string | Date | undefined;
|
|
2993
|
+
alternateRefs?: {
|
|
2994
|
+
href: string;
|
|
2995
|
+
hreflang: string;
|
|
2996
|
+
}[] | undefined;
|
|
2997
|
+
images?: {
|
|
2998
|
+
loc: string;
|
|
2999
|
+
caption?: string | undefined;
|
|
3000
|
+
title?: string | undefined;
|
|
3001
|
+
}[] | undefined;
|
|
3002
|
+
news?: {
|
|
3003
|
+
title: string;
|
|
3004
|
+
publication: {
|
|
3005
|
+
name: string;
|
|
3006
|
+
language: string;
|
|
3007
|
+
};
|
|
3008
|
+
publicationDate: string | Date;
|
|
3009
|
+
} | undefined;
|
|
3010
|
+
} | undefined;
|
|
3011
|
+
fromCrawl?: boolean | undefined;
|
|
3012
|
+
};
|
|
3013
|
+
html: string;
|
|
3014
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
3015
|
+
} | undefined;
|
|
3016
|
+
enabled?: boolean | undefined;
|
|
3017
|
+
maskPath?: string | undefined;
|
|
3018
|
+
} | undefined;
|
|
2449
3019
|
}>>>;
|
|
2450
3020
|
export type TanStackStartInputConfig = z.input<typeof TanStackStartOptionsSchema>;
|
|
2451
3021
|
export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig): {
|
|
@@ -2482,6 +3052,7 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
2482
3052
|
};
|
|
2483
3053
|
clientEntryPath: string;
|
|
2484
3054
|
serverEntryPath: string;
|
|
3055
|
+
root: string;
|
|
2485
3056
|
client: {
|
|
2486
3057
|
base: string;
|
|
2487
3058
|
entry?: string | undefined;
|
|
@@ -2489,7 +3060,6 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
2489
3060
|
server: {
|
|
2490
3061
|
entry?: string | undefined;
|
|
2491
3062
|
};
|
|
2492
|
-
root: string;
|
|
2493
3063
|
serverFns: {
|
|
2494
3064
|
base: string;
|
|
2495
3065
|
};
|
|
@@ -2501,6 +3071,7 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
2501
3071
|
path: string;
|
|
2502
3072
|
prerender?: {
|
|
2503
3073
|
enabled?: boolean | undefined;
|
|
3074
|
+
outputPath?: string | undefined;
|
|
2504
3075
|
autoSubfolderIndex?: boolean | undefined;
|
|
2505
3076
|
crawlLinks?: boolean | undefined;
|
|
2506
3077
|
retryCount?: number | undefined;
|
|
@@ -2509,10 +3080,10 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
2509
3080
|
page: {
|
|
2510
3081
|
path: string;
|
|
2511
3082
|
sitemap?: {
|
|
2512
|
-
lastmod?: string | Date | undefined;
|
|
2513
3083
|
exclude?: boolean | undefined;
|
|
2514
3084
|
priority?: number | undefined;
|
|
2515
3085
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
3086
|
+
lastmod?: string | Date | undefined;
|
|
2516
3087
|
alternateRefs?: {
|
|
2517
3088
|
href: string;
|
|
2518
3089
|
hreflang: string;
|
|
@@ -2537,10 +3108,10 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
2537
3108
|
}, ...args: unknown[]) => any) | undefined;
|
|
2538
3109
|
} | undefined;
|
|
2539
3110
|
sitemap?: {
|
|
2540
|
-
lastmod?: string | Date | undefined;
|
|
2541
3111
|
exclude?: boolean | undefined;
|
|
2542
3112
|
priority?: number | undefined;
|
|
2543
3113
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
3114
|
+
lastmod?: string | Date | undefined;
|
|
2544
3115
|
alternateRefs?: {
|
|
2545
3116
|
href: string;
|
|
2546
3117
|
hreflang: string;
|
|
@@ -2567,6 +3138,7 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
2567
3138
|
path: string;
|
|
2568
3139
|
prerender?: {
|
|
2569
3140
|
enabled?: boolean | undefined;
|
|
3141
|
+
outputPath?: string | undefined;
|
|
2570
3142
|
autoSubfolderIndex?: boolean | undefined;
|
|
2571
3143
|
crawlLinks?: boolean | undefined;
|
|
2572
3144
|
retryCount?: number | undefined;
|
|
@@ -2575,10 +3147,10 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
2575
3147
|
page: {
|
|
2576
3148
|
path: string;
|
|
2577
3149
|
sitemap?: {
|
|
2578
|
-
lastmod?: string | Date | undefined;
|
|
2579
3150
|
exclude?: boolean | undefined;
|
|
2580
3151
|
priority?: number | undefined;
|
|
2581
3152
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
3153
|
+
lastmod?: string | Date | undefined;
|
|
2582
3154
|
alternateRefs?: {
|
|
2583
3155
|
href: string;
|
|
2584
3156
|
hreflang: string;
|
|
@@ -2603,10 +3175,10 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
2603
3175
|
}, ...args: unknown[]) => any) | undefined;
|
|
2604
3176
|
} | undefined;
|
|
2605
3177
|
sitemap?: {
|
|
2606
|
-
lastmod?: string | Date | undefined;
|
|
2607
3178
|
exclude?: boolean | undefined;
|
|
2608
3179
|
priority?: number | undefined;
|
|
2609
3180
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
3181
|
+
lastmod?: string | Date | undefined;
|
|
2610
3182
|
alternateRefs?: {
|
|
2611
3183
|
href: string;
|
|
2612
3184
|
hreflang: string;
|
|
@@ -2632,6 +3204,7 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
2632
3204
|
failOnError?: boolean | undefined;
|
|
2633
3205
|
} & {
|
|
2634
3206
|
enabled?: boolean | undefined;
|
|
3207
|
+
outputPath?: string | undefined;
|
|
2635
3208
|
autoSubfolderIndex?: boolean | undefined;
|
|
2636
3209
|
crawlLinks?: boolean | undefined;
|
|
2637
3210
|
retryCount?: number | undefined;
|
|
@@ -2640,10 +3213,10 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
2640
3213
|
page: {
|
|
2641
3214
|
path: string;
|
|
2642
3215
|
sitemap?: {
|
|
2643
|
-
lastmod?: string | Date | undefined;
|
|
2644
3216
|
exclude?: boolean | undefined;
|
|
2645
3217
|
priority?: number | undefined;
|
|
2646
3218
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
3219
|
+
lastmod?: string | Date | undefined;
|
|
2647
3220
|
alternateRefs?: {
|
|
2648
3221
|
href: string;
|
|
2649
3222
|
hreflang: string;
|
|
@@ -2668,8 +3241,8 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
2668
3241
|
}, ...args: unknown[]) => any) | undefined;
|
|
2669
3242
|
}) | undefined;
|
|
2670
3243
|
sitemap?: {
|
|
2671
|
-
host?: string | undefined;
|
|
2672
3244
|
enabled?: boolean | undefined;
|
|
3245
|
+
outputPath?: string | undefined;
|
|
2673
3246
|
autoSubfolderIndex?: boolean | undefined;
|
|
2674
3247
|
crawlLinks?: boolean | undefined;
|
|
2675
3248
|
retryCount?: number | undefined;
|
|
@@ -2678,10 +3251,10 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
2678
3251
|
page: {
|
|
2679
3252
|
path: string;
|
|
2680
3253
|
sitemap?: {
|
|
2681
|
-
lastmod?: string | Date | undefined;
|
|
2682
3254
|
exclude?: boolean | undefined;
|
|
2683
3255
|
priority?: number | undefined;
|
|
2684
3256
|
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
3257
|
+
lastmod?: string | Date | undefined;
|
|
2685
3258
|
alternateRefs?: {
|
|
2686
3259
|
href: string;
|
|
2687
3260
|
hreflang: string;
|
|
@@ -2704,10 +3277,56 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
|
|
|
2704
3277
|
};
|
|
2705
3278
|
html: string;
|
|
2706
3279
|
}, ...args: unknown[]) => any) | undefined;
|
|
3280
|
+
host?: string | undefined;
|
|
3281
|
+
} | undefined;
|
|
3282
|
+
spa?: {
|
|
3283
|
+
prerender: {
|
|
3284
|
+
enabled: boolean;
|
|
3285
|
+
outputPath: string;
|
|
3286
|
+
autoSubfolderIndex?: boolean | undefined;
|
|
3287
|
+
crawlLinks: boolean;
|
|
3288
|
+
retryCount: number;
|
|
3289
|
+
retryDelay?: number | undefined;
|
|
3290
|
+
onSuccess?: ((args_0: {
|
|
3291
|
+
page: {
|
|
3292
|
+
path: string;
|
|
3293
|
+
sitemap?: {
|
|
3294
|
+
exclude?: boolean | undefined;
|
|
3295
|
+
priority?: number | undefined;
|
|
3296
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
3297
|
+
lastmod?: string | Date | undefined;
|
|
3298
|
+
alternateRefs?: {
|
|
3299
|
+
href: string;
|
|
3300
|
+
hreflang: string;
|
|
3301
|
+
}[] | undefined;
|
|
3302
|
+
images?: {
|
|
3303
|
+
loc: string;
|
|
3304
|
+
caption?: string | undefined;
|
|
3305
|
+
title?: string | undefined;
|
|
3306
|
+
}[] | undefined;
|
|
3307
|
+
news?: {
|
|
3308
|
+
title: string;
|
|
3309
|
+
publication: {
|
|
3310
|
+
name: string;
|
|
3311
|
+
language: string;
|
|
3312
|
+
};
|
|
3313
|
+
publicationDate: string | Date;
|
|
3314
|
+
} | undefined;
|
|
3315
|
+
} | undefined;
|
|
3316
|
+
fromCrawl?: boolean | undefined;
|
|
3317
|
+
};
|
|
3318
|
+
html: string;
|
|
3319
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
3320
|
+
};
|
|
3321
|
+
enabled: boolean;
|
|
3322
|
+
maskPath: string;
|
|
2707
3323
|
} | undefined;
|
|
2708
3324
|
};
|
|
2709
3325
|
export type TanStackStartOutputConfig = ReturnType<typeof getTanStackStartOptions>;
|
|
2710
3326
|
export declare const clientDistDir = ".tanstack-start/build/client-dist";
|
|
2711
3327
|
export declare const ssrEntryFile = "ssr.mjs";
|
|
2712
|
-
export
|
|
3328
|
+
export interface TanStackStartVitePluginCoreOptions {
|
|
3329
|
+
framework: CompileStartFrameworkOptions;
|
|
3330
|
+
}
|
|
3331
|
+
export declare function TanStackStartVitePluginCore(opts: TanStackStartVitePluginCoreOptions, startConfig: TanStackStartOutputConfig): Array<PluginOption>;
|
|
2713
3332
|
export {};
|