@tanstack/start-plugin-core 1.121.0-alpha.1 → 1.121.0-alpha.11

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.
Files changed (66) hide show
  1. package/dist/cjs/build-sitemap.cjs +138 -0
  2. package/dist/cjs/build-sitemap.cjs.map +1 -0
  3. package/dist/cjs/build-sitemap.d.cts +31 -0
  4. package/dist/cjs/index.cjs +2 -0
  5. package/dist/cjs/index.cjs.map +1 -1
  6. package/dist/cjs/index.d.cts +1 -0
  7. package/dist/cjs/nitro/nitro-plugin.cjs +74 -39
  8. package/dist/cjs/nitro/nitro-plugin.cjs.map +1 -1
  9. package/dist/cjs/plugin.cjs +8 -4
  10. package/dist/cjs/plugin.cjs.map +1 -1
  11. package/dist/cjs/plugin.d.cts +88 -486
  12. package/dist/cjs/prerender.cjs +11 -16
  13. package/dist/cjs/prerender.cjs.map +1 -1
  14. package/dist/cjs/routesManifestPlugin.cjs +6 -3
  15. package/dist/cjs/routesManifestPlugin.cjs.map +1 -1
  16. package/dist/cjs/schema.cjs +6 -4
  17. package/dist/cjs/schema.cjs.map +1 -1
  18. package/dist/cjs/schema.d.cts +530 -1656
  19. package/dist/cjs/start-server-routes-plugin/plugin.cjs +2 -1
  20. package/dist/cjs/start-server-routes-plugin/plugin.cjs.map +1 -1
  21. package/dist/cjs/utils.cjs +18 -0
  22. package/dist/cjs/utils.cjs.map +1 -0
  23. package/dist/cjs/utils.d.cts +8 -0
  24. package/dist/esm/build-sitemap.d.ts +31 -0
  25. package/dist/esm/build-sitemap.js +138 -0
  26. package/dist/esm/build-sitemap.js.map +1 -0
  27. package/dist/esm/index.d.ts +1 -0
  28. package/dist/esm/index.js +3 -1
  29. package/dist/esm/index.js.map +1 -1
  30. package/dist/esm/nitro/nitro-plugin.js +58 -40
  31. package/dist/esm/nitro/nitro-plugin.js.map +1 -1
  32. package/dist/esm/plugin.d.ts +88 -486
  33. package/dist/esm/plugin.js +8 -4
  34. package/dist/esm/plugin.js.map +1 -1
  35. package/dist/esm/prerender.js +11 -16
  36. package/dist/esm/prerender.js.map +1 -1
  37. package/dist/esm/routesManifestPlugin.js +6 -3
  38. package/dist/esm/routesManifestPlugin.js.map +1 -1
  39. package/dist/esm/schema.d.ts +530 -1656
  40. package/dist/esm/schema.js +6 -4
  41. package/dist/esm/schema.js.map +1 -1
  42. package/dist/esm/start-server-routes-plugin/plugin.js +6 -5
  43. package/dist/esm/start-server-routes-plugin/plugin.js.map +1 -1
  44. package/dist/esm/utils.d.ts +8 -0
  45. package/dist/esm/utils.js +18 -0
  46. package/dist/esm/utils.js.map +1 -0
  47. package/package.json +6 -6
  48. package/src/build-sitemap.ts +213 -0
  49. package/src/index.ts +1 -0
  50. package/src/nitro/nitro-plugin.ts +98 -62
  51. package/src/plugin.ts +9 -4
  52. package/src/prerender.ts +11 -18
  53. package/src/routesManifestPlugin.ts +7 -3
  54. package/src/schema.ts +11 -9
  55. package/src/start-server-routes-plugin/plugin.ts +2 -1
  56. package/src/utils.ts +14 -0
  57. package/dist/cjs/nitro/build-nitro.cjs +0 -18
  58. package/dist/cjs/nitro/build-nitro.cjs.map +0 -1
  59. package/dist/cjs/nitro/build-nitro.d.cts +0 -2
  60. package/dist/cjs/nitro/build-sitemap.d.cts +0 -9
  61. package/dist/esm/nitro/build-nitro.d.ts +0 -2
  62. package/dist/esm/nitro/build-nitro.js +0 -18
  63. package/dist/esm/nitro/build-nitro.js.map +0 -1
  64. package/dist/esm/nitro/build-sitemap.d.ts +0 -9
  65. package/src/nitro/build-nitro.ts +0 -27
  66. package/src/nitro/build-sitemap.ts +0 -79
@@ -23,7 +23,6 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
23
23
  disableManifestGeneration: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>;
24
24
  enableRouteTreeFormatting: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>;
25
25
  routeTreeFileFooter: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
26
- autoCodeSplitting: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
27
26
  customScaffolding: z.ZodOptional<z.ZodOptional<z.ZodObject<{
28
27
  routeTemplate: z.ZodOptional<z.ZodString>;
29
28
  lazyRouteTemplate: z.ZodOptional<z.ZodString>;
@@ -65,7 +64,6 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
65
64
  disableManifestGeneration?: boolean | undefined;
66
65
  enableRouteTreeFormatting?: boolean | undefined;
67
66
  routeTreeFileFooter?: string[] | undefined;
68
- autoCodeSplitting?: boolean | undefined;
69
67
  customScaffolding?: {
70
68
  routeTemplate?: string | undefined;
71
69
  lazyRouteTemplate?: string | undefined;
@@ -94,7 +92,6 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
94
92
  disableManifestGeneration?: boolean | undefined;
95
93
  enableRouteTreeFormatting?: boolean | undefined;
96
94
  routeTreeFileFooter?: string[] | undefined;
97
- autoCodeSplitting?: boolean | undefined;
98
95
  customScaffolding?: {
99
96
  routeTemplate?: string | undefined;
100
97
  lazyRouteTemplate?: string | undefined;
@@ -138,7 +135,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
138
135
  base?: string | undefined;
139
136
  dir?: string | undefined;
140
137
  }>>>;
141
- pages: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<z.objectUtil.extendShape<{
138
+ pages: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
142
139
  path: z.ZodString;
143
140
  sitemap: z.ZodOptional<z.ZodObject<{
144
141
  exclude: z.ZodOptional<z.ZodBoolean>;
@@ -199,7 +196,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
199
196
  }, "strip", z.ZodTypeAny, {
200
197
  exclude?: boolean | undefined;
201
198
  priority?: number | undefined;
202
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
199
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
203
200
  lastmod?: string | Date | undefined;
204
201
  alternateRefs?: {
205
202
  href: string;
@@ -221,7 +218,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
221
218
  }, {
222
219
  exclude?: boolean | undefined;
223
220
  priority?: number | undefined;
224
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
221
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
225
222
  lastmod?: string | Date | undefined;
226
223
  alternateRefs?: {
227
224
  href: string;
@@ -312,7 +309,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
312
309
  }, "strip", z.ZodTypeAny, {
313
310
  exclude?: boolean | undefined;
314
311
  priority?: number | undefined;
315
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
312
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
316
313
  lastmod?: string | Date | undefined;
317
314
  alternateRefs?: {
318
315
  href: string;
@@ -334,7 +331,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
334
331
  }, {
335
332
  exclude?: boolean | undefined;
336
333
  priority?: number | undefined;
337
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
334
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
338
335
  lastmod?: string | Date | undefined;
339
336
  alternateRefs?: {
340
337
  href: string;
@@ -360,7 +357,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
360
357
  sitemap?: {
361
358
  exclude?: boolean | undefined;
362
359
  priority?: number | undefined;
363
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
360
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
364
361
  lastmod?: string | Date | undefined;
365
362
  alternateRefs?: {
366
363
  href: string;
@@ -386,7 +383,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
386
383
  sitemap?: {
387
384
  exclude?: boolean | undefined;
388
385
  priority?: number | undefined;
389
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
386
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
390
387
  lastmod?: string | Date | undefined;
391
388
  alternateRefs?: {
392
389
  href: string;
@@ -415,7 +412,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
415
412
  sitemap?: {
416
413
  exclude?: boolean | undefined;
417
414
  priority?: number | undefined;
418
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
415
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
419
416
  lastmod?: string | Date | undefined;
420
417
  alternateRefs?: {
421
418
  href: string;
@@ -444,7 +441,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
444
441
  sitemap?: {
445
442
  exclude?: boolean | undefined;
446
443
  priority?: number | undefined;
447
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
444
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
448
445
  lastmod?: string | Date | undefined;
449
446
  alternateRefs?: {
450
447
  href: string;
@@ -481,7 +478,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
481
478
  sitemap?: {
482
479
  exclude?: boolean | undefined;
483
480
  priority?: number | undefined;
484
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
481
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
485
482
  lastmod?: string | Date | undefined;
486
483
  alternateRefs?: {
487
484
  href: string;
@@ -518,7 +515,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
518
515
  sitemap?: {
519
516
  exclude?: boolean | undefined;
520
517
  priority?: number | undefined;
521
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
518
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
522
519
  lastmod?: string | Date | undefined;
523
520
  alternateRefs?: {
524
521
  href: string;
@@ -558,7 +555,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
558
555
  sitemap?: {
559
556
  exclude?: boolean | undefined;
560
557
  priority?: number | undefined;
561
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
558
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
562
559
  lastmod?: string | Date | undefined;
563
560
  alternateRefs?: {
564
561
  href: string;
@@ -586,7 +583,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
586
583
  sitemap?: {
587
584
  exclude?: boolean | undefined;
588
585
  priority?: number | undefined;
589
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
586
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
590
587
  lastmod?: string | Date | undefined;
591
588
  alternateRefs?: {
592
589
  href: string;
@@ -622,7 +619,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
622
619
  sitemap?: {
623
620
  exclude?: boolean | undefined;
624
621
  priority?: number | undefined;
625
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
622
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
626
623
  lastmod?: string | Date | undefined;
627
624
  alternateRefs?: {
628
625
  href: string;
@@ -650,7 +647,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
650
647
  sitemap?: {
651
648
  exclude?: boolean | undefined;
652
649
  priority?: number | undefined;
653
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
650
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
654
651
  lastmod?: string | Date | undefined;
655
652
  alternateRefs?: {
656
653
  href: string;
@@ -671,309 +668,18 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
671
668
  } | undefined;
672
669
  } | undefined;
673
670
  fromCrawl?: boolean | undefined;
674
- }>]>, "many">>>;
675
- sitemap: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
676
- enabled: z.ZodOptional<z.ZodBoolean>;
677
- outputPath: z.ZodOptional<z.ZodString>;
678
- autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
679
- crawlLinks: z.ZodOptional<z.ZodBoolean>;
680
- retryCount: z.ZodOptional<z.ZodNumber>;
681
- retryDelay: z.ZodOptional<z.ZodNumber>;
682
- onSuccess: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
683
- page: z.ZodObject<{
684
- path: z.ZodString;
685
- sitemap: z.ZodOptional<z.ZodObject<{
686
- exclude: z.ZodOptional<z.ZodBoolean>;
687
- priority: z.ZodOptional<z.ZodNumber>;
688
- changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
689
- lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
690
- alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
691
- href: z.ZodString;
692
- hreflang: z.ZodString;
693
- }, "strip", z.ZodTypeAny, {
694
- href: string;
695
- hreflang: string;
696
- }, {
697
- href: string;
698
- hreflang: string;
699
- }>, "many">>;
700
- images: z.ZodOptional<z.ZodArray<z.ZodObject<{
701
- loc: z.ZodString;
702
- caption: z.ZodOptional<z.ZodString>;
703
- title: z.ZodOptional<z.ZodString>;
704
- }, "strip", z.ZodTypeAny, {
705
- loc: string;
706
- caption?: string | undefined;
707
- title?: string | undefined;
708
- }, {
709
- loc: string;
710
- caption?: string | undefined;
711
- title?: string | undefined;
712
- }>, "many">>;
713
- news: z.ZodOptional<z.ZodObject<{
714
- publication: z.ZodObject<{
715
- name: z.ZodString;
716
- language: z.ZodString;
717
- }, "strip", z.ZodTypeAny, {
718
- name: string;
719
- language: string;
720
- }, {
721
- name: string;
722
- language: string;
723
- }>;
724
- publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
725
- title: z.ZodString;
726
- }, "strip", z.ZodTypeAny, {
727
- title: string;
728
- publication: {
729
- name: string;
730
- language: string;
731
- };
732
- publicationDate: string | Date;
733
- }, {
734
- title: string;
735
- publication: {
736
- name: string;
737
- language: string;
738
- };
739
- publicationDate: string | Date;
740
- }>>;
741
- }, "strip", z.ZodTypeAny, {
742
- exclude?: boolean | undefined;
743
- priority?: number | undefined;
744
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
745
- lastmod?: string | Date | undefined;
746
- alternateRefs?: {
747
- href: string;
748
- hreflang: string;
749
- }[] | undefined;
750
- images?: {
751
- loc: string;
752
- caption?: string | undefined;
753
- title?: string | undefined;
754
- }[] | undefined;
755
- news?: {
756
- title: string;
757
- publication: {
758
- name: string;
759
- language: string;
760
- };
761
- publicationDate: string | Date;
762
- } | undefined;
763
- }, {
764
- exclude?: boolean | undefined;
765
- priority?: number | undefined;
766
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
767
- lastmod?: string | Date | undefined;
768
- alternateRefs?: {
769
- href: string;
770
- hreflang: string;
771
- }[] | undefined;
772
- images?: {
773
- loc: string;
774
- caption?: string | undefined;
775
- title?: string | undefined;
776
- }[] | undefined;
777
- news?: {
778
- title: string;
779
- publication: {
780
- name: string;
781
- language: string;
782
- };
783
- publicationDate: string | Date;
784
- } | undefined;
785
- }>>;
786
- fromCrawl: z.ZodOptional<z.ZodBoolean>;
787
- }, "strip", z.ZodTypeAny, {
788
- path: string;
789
- sitemap?: {
790
- exclude?: boolean | undefined;
791
- priority?: number | undefined;
792
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
793
- lastmod?: string | Date | undefined;
794
- alternateRefs?: {
795
- href: string;
796
- hreflang: string;
797
- }[] | undefined;
798
- images?: {
799
- loc: string;
800
- caption?: string | undefined;
801
- title?: string | undefined;
802
- }[] | undefined;
803
- news?: {
804
- title: string;
805
- publication: {
806
- name: string;
807
- language: string;
808
- };
809
- publicationDate: string | Date;
810
- } | undefined;
811
- } | undefined;
812
- fromCrawl?: boolean | undefined;
813
- }, {
814
- path: string;
815
- sitemap?: {
816
- exclude?: boolean | undefined;
817
- priority?: number | undefined;
818
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
819
- lastmod?: string | Date | undefined;
820
- alternateRefs?: {
821
- href: string;
822
- hreflang: string;
823
- }[] | undefined;
824
- images?: {
825
- loc: string;
826
- caption?: string | undefined;
827
- title?: string | undefined;
828
- }[] | undefined;
829
- news?: {
830
- title: string;
831
- publication: {
832
- name: string;
833
- language: string;
834
- };
835
- publicationDate: string | Date;
836
- } | undefined;
837
- } | undefined;
838
- fromCrawl?: boolean | undefined;
839
- }>;
840
- html: z.ZodString;
841
- }, "strip", z.ZodTypeAny, {
842
- page: {
843
- path: string;
844
- sitemap?: {
845
- exclude?: boolean | undefined;
846
- priority?: number | undefined;
847
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
848
- lastmod?: string | Date | undefined;
849
- alternateRefs?: {
850
- href: string;
851
- hreflang: string;
852
- }[] | undefined;
853
- images?: {
854
- loc: string;
855
- caption?: string | undefined;
856
- title?: string | undefined;
857
- }[] | undefined;
858
- news?: {
859
- title: string;
860
- publication: {
861
- name: string;
862
- language: string;
863
- };
864
- publicationDate: string | Date;
865
- } | undefined;
866
- } | undefined;
867
- fromCrawl?: boolean | undefined;
868
- };
869
- html: string;
870
- }, {
871
- page: {
872
- path: string;
873
- sitemap?: {
874
- exclude?: boolean | undefined;
875
- priority?: number | undefined;
876
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
877
- lastmod?: string | Date | undefined;
878
- alternateRefs?: {
879
- href: string;
880
- hreflang: string;
881
- }[] | undefined;
882
- images?: {
883
- loc: string;
884
- caption?: string | undefined;
885
- title?: string | undefined;
886
- }[] | undefined;
887
- news?: {
888
- title: string;
889
- publication: {
890
- name: string;
891
- language: string;
892
- };
893
- publicationDate: string | Date;
894
- } | undefined;
895
- } | undefined;
896
- fromCrawl?: boolean | undefined;
897
- };
898
- html: string;
899
- }>], z.ZodUnknown>, z.ZodAny>>;
900
- }, {
671
+ }>, "many">>>;
672
+ sitemap: z.ZodOptional<z.ZodObject<{
673
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
901
674
  host: z.ZodOptional<z.ZodString>;
902
- }>, "strip", z.ZodTypeAny, {
903
- enabled?: boolean | undefined;
904
- outputPath?: string | undefined;
905
- autoSubfolderIndex?: boolean | undefined;
906
- crawlLinks?: boolean | undefined;
907
- retryCount?: number | undefined;
908
- retryDelay?: number | undefined;
909
- onSuccess?: ((args_0: {
910
- page: {
911
- path: string;
912
- sitemap?: {
913
- exclude?: boolean | undefined;
914
- priority?: number | undefined;
915
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
916
- lastmod?: string | Date | undefined;
917
- alternateRefs?: {
918
- href: string;
919
- hreflang: string;
920
- }[] | undefined;
921
- images?: {
922
- loc: string;
923
- caption?: string | undefined;
924
- title?: string | undefined;
925
- }[] | undefined;
926
- news?: {
927
- title: string;
928
- publication: {
929
- name: string;
930
- language: string;
931
- };
932
- publicationDate: string | Date;
933
- } | undefined;
934
- } | undefined;
935
- fromCrawl?: boolean | undefined;
936
- };
937
- html: string;
938
- }, ...args: unknown[]) => any) | undefined;
675
+ outputPath: z.ZodDefault<z.ZodOptional<z.ZodString>>;
676
+ }, "strip", z.ZodTypeAny, {
677
+ enabled: boolean;
678
+ outputPath: string;
939
679
  host?: string | undefined;
940
680
  }, {
941
681
  enabled?: boolean | undefined;
942
682
  outputPath?: string | undefined;
943
- autoSubfolderIndex?: boolean | undefined;
944
- crawlLinks?: boolean | undefined;
945
- retryCount?: number | undefined;
946
- retryDelay?: number | undefined;
947
- onSuccess?: ((args_0: {
948
- page: {
949
- path: string;
950
- sitemap?: {
951
- exclude?: boolean | undefined;
952
- priority?: number | undefined;
953
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
954
- lastmod?: string | Date | undefined;
955
- alternateRefs?: {
956
- href: string;
957
- hreflang: string;
958
- }[] | undefined;
959
- images?: {
960
- loc: string;
961
- caption?: string | undefined;
962
- title?: string | undefined;
963
- }[] | undefined;
964
- news?: {
965
- title: string;
966
- publication: {
967
- name: string;
968
- language: string;
969
- };
970
- publicationDate: string | Date;
971
- } | undefined;
972
- } | undefined;
973
- fromCrawl?: boolean | undefined;
974
- };
975
- html: string;
976
- }, ...args: unknown[]) => any) | undefined;
977
683
  host?: string | undefined;
978
684
  }>>;
979
685
  prerender: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
@@ -1040,7 +746,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
1040
746
  }, "strip", z.ZodTypeAny, {
1041
747
  exclude?: boolean | undefined;
1042
748
  priority?: number | undefined;
1043
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
749
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
1044
750
  lastmod?: string | Date | undefined;
1045
751
  alternateRefs?: {
1046
752
  href: string;
@@ -1062,7 +768,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
1062
768
  }, {
1063
769
  exclude?: boolean | undefined;
1064
770
  priority?: number | undefined;
1065
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
771
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
1066
772
  lastmod?: string | Date | undefined;
1067
773
  alternateRefs?: {
1068
774
  href: string;
@@ -1153,7 +859,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
1153
859
  }, "strip", z.ZodTypeAny, {
1154
860
  exclude?: boolean | undefined;
1155
861
  priority?: number | undefined;
1156
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
862
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
1157
863
  lastmod?: string | Date | undefined;
1158
864
  alternateRefs?: {
1159
865
  href: string;
@@ -1175,7 +881,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
1175
881
  }, {
1176
882
  exclude?: boolean | undefined;
1177
883
  priority?: number | undefined;
1178
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
884
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
1179
885
  lastmod?: string | Date | undefined;
1180
886
  alternateRefs?: {
1181
887
  href: string;
@@ -1201,7 +907,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
1201
907
  sitemap?: {
1202
908
  exclude?: boolean | undefined;
1203
909
  priority?: number | undefined;
1204
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
910
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
1205
911
  lastmod?: string | Date | undefined;
1206
912
  alternateRefs?: {
1207
913
  href: string;
@@ -1227,7 +933,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
1227
933
  sitemap?: {
1228
934
  exclude?: boolean | undefined;
1229
935
  priority?: number | undefined;
1230
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
936
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
1231
937
  lastmod?: string | Date | undefined;
1232
938
  alternateRefs?: {
1233
939
  href: string;
@@ -1256,7 +962,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
1256
962
  sitemap?: {
1257
963
  exclude?: boolean | undefined;
1258
964
  priority?: number | undefined;
1259
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
965
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
1260
966
  lastmod?: string | Date | undefined;
1261
967
  alternateRefs?: {
1262
968
  href: string;
@@ -1285,7 +991,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
1285
991
  sitemap?: {
1286
992
  exclude?: boolean | undefined;
1287
993
  priority?: number | undefined;
1288
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
994
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
1289
995
  lastmod?: string | Date | undefined;
1290
996
  alternateRefs?: {
1291
997
  href: string;
@@ -1322,7 +1028,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
1322
1028
  sitemap?: {
1323
1029
  exclude?: boolean | undefined;
1324
1030
  priority?: number | undefined;
1325
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1031
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
1326
1032
  lastmod?: string | Date | undefined;
1327
1033
  alternateRefs?: {
1328
1034
  href: string;
@@ -1359,7 +1065,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
1359
1065
  sitemap?: {
1360
1066
  exclude?: boolean | undefined;
1361
1067
  priority?: number | undefined;
1362
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1068
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
1363
1069
  lastmod?: string | Date | undefined;
1364
1070
  alternateRefs?: {
1365
1071
  href: string;
@@ -1399,7 +1105,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
1399
1105
  sitemap?: {
1400
1106
  exclude?: boolean | undefined;
1401
1107
  priority?: number | undefined;
1402
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1108
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
1403
1109
  lastmod?: string | Date | undefined;
1404
1110
  alternateRefs?: {
1405
1111
  href: string;
@@ -1427,7 +1133,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
1427
1133
  sitemap?: {
1428
1134
  exclude?: boolean | undefined;
1429
1135
  priority?: number | undefined;
1430
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1136
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
1431
1137
  lastmod?: string | Date | undefined;
1432
1138
  alternateRefs?: {
1433
1139
  href: string;
@@ -1463,7 +1169,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
1463
1169
  sitemap?: {
1464
1170
  exclude?: boolean | undefined;
1465
1171
  priority?: number | undefined;
1466
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1172
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
1467
1173
  lastmod?: string | Date | undefined;
1468
1174
  alternateRefs?: {
1469
1175
  href: string;
@@ -1491,7 +1197,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
1491
1197
  sitemap?: {
1492
1198
  exclude?: boolean | undefined;
1493
1199
  priority?: number | undefined;
1494
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1200
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
1495
1201
  lastmod?: string | Date | undefined;
1496
1202
  alternateRefs?: {
1497
1203
  href: string;
@@ -1530,7 +1236,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
1530
1236
  sitemap?: {
1531
1237
  exclude?: boolean | undefined;
1532
1238
  priority?: number | undefined;
1533
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1239
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
1534
1240
  lastmod?: string | Date | undefined;
1535
1241
  alternateRefs?: {
1536
1242
  href: string;
@@ -1558,7 +1264,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
1558
1264
  sitemap?: {
1559
1265
  exclude?: boolean | undefined;
1560
1266
  priority?: number | undefined;
1561
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1267
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
1562
1268
  lastmod?: string | Date | undefined;
1563
1269
  alternateRefs?: {
1564
1270
  href: string;
@@ -1599,7 +1305,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
1599
1305
  sitemap?: {
1600
1306
  exclude?: boolean | undefined;
1601
1307
  priority?: number | undefined;
1602
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1308
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
1603
1309
  lastmod?: string | Date | undefined;
1604
1310
  alternateRefs?: {
1605
1311
  href: string;
@@ -1627,7 +1333,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
1627
1333
  sitemap?: {
1628
1334
  exclude?: boolean | undefined;
1629
1335
  priority?: number | undefined;
1630
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1336
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
1631
1337
  lastmod?: string | Date | undefined;
1632
1338
  alternateRefs?: {
1633
1339
  href: string;
@@ -1721,7 +1427,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
1721
1427
  }, "strip", z.ZodTypeAny, {
1722
1428
  exclude?: boolean | undefined;
1723
1429
  priority?: number | undefined;
1724
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1430
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
1725
1431
  lastmod?: string | Date | undefined;
1726
1432
  alternateRefs?: {
1727
1433
  href: string;
@@ -1743,7 +1449,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
1743
1449
  }, {
1744
1450
  exclude?: boolean | undefined;
1745
1451
  priority?: number | undefined;
1746
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1452
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
1747
1453
  lastmod?: string | Date | undefined;
1748
1454
  alternateRefs?: {
1749
1455
  href: string;
@@ -1769,7 +1475,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
1769
1475
  sitemap?: {
1770
1476
  exclude?: boolean | undefined;
1771
1477
  priority?: number | undefined;
1772
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1478
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
1773
1479
  lastmod?: string | Date | undefined;
1774
1480
  alternateRefs?: {
1775
1481
  href: string;
@@ -1795,7 +1501,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
1795
1501
  sitemap?: {
1796
1502
  exclude?: boolean | undefined;
1797
1503
  priority?: number | undefined;
1798
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1504
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
1799
1505
  lastmod?: string | Date | undefined;
1800
1506
  alternateRefs?: {
1801
1507
  href: string;
@@ -1824,7 +1530,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
1824
1530
  sitemap?: {
1825
1531
  exclude?: boolean | undefined;
1826
1532
  priority?: number | undefined;
1827
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1533
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
1828
1534
  lastmod?: string | Date | undefined;
1829
1535
  alternateRefs?: {
1830
1536
  href: string;
@@ -1853,7 +1559,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
1853
1559
  sitemap?: {
1854
1560
  exclude?: boolean | undefined;
1855
1561
  priority?: number | undefined;
1856
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1562
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
1857
1563
  lastmod?: string | Date | undefined;
1858
1564
  alternateRefs?: {
1859
1565
  href: string;
@@ -1890,7 +1596,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
1890
1596
  sitemap?: {
1891
1597
  exclude?: boolean | undefined;
1892
1598
  priority?: number | undefined;
1893
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1599
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
1894
1600
  lastmod?: string | Date | undefined;
1895
1601
  alternateRefs?: {
1896
1602
  href: string;
@@ -1927,7 +1633,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
1927
1633
  sitemap?: {
1928
1634
  exclude?: boolean | undefined;
1929
1635
  priority?: number | undefined;
1930
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1636
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
1931
1637
  lastmod?: string | Date | undefined;
1932
1638
  alternateRefs?: {
1933
1639
  href: string;
@@ -2024,7 +1730,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2024
1730
  }, "strip", z.ZodTypeAny, {
2025
1731
  exclude?: boolean | undefined;
2026
1732
  priority?: number | undefined;
2027
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1733
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
2028
1734
  lastmod?: string | Date | undefined;
2029
1735
  alternateRefs?: {
2030
1736
  href: string;
@@ -2046,7 +1752,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2046
1752
  }, {
2047
1753
  exclude?: boolean | undefined;
2048
1754
  priority?: number | undefined;
2049
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1755
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
2050
1756
  lastmod?: string | Date | undefined;
2051
1757
  alternateRefs?: {
2052
1758
  href: string;
@@ -2072,7 +1778,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2072
1778
  sitemap?: {
2073
1779
  exclude?: boolean | undefined;
2074
1780
  priority?: number | undefined;
2075
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1781
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
2076
1782
  lastmod?: string | Date | undefined;
2077
1783
  alternateRefs?: {
2078
1784
  href: string;
@@ -2098,7 +1804,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2098
1804
  sitemap?: {
2099
1805
  exclude?: boolean | undefined;
2100
1806
  priority?: number | undefined;
2101
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1807
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
2102
1808
  lastmod?: string | Date | undefined;
2103
1809
  alternateRefs?: {
2104
1810
  href: string;
@@ -2127,7 +1833,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2127
1833
  sitemap?: {
2128
1834
  exclude?: boolean | undefined;
2129
1835
  priority?: number | undefined;
2130
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1836
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
2131
1837
  lastmod?: string | Date | undefined;
2132
1838
  alternateRefs?: {
2133
1839
  href: string;
@@ -2156,7 +1862,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2156
1862
  sitemap?: {
2157
1863
  exclude?: boolean | undefined;
2158
1864
  priority?: number | undefined;
2159
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1865
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
2160
1866
  lastmod?: string | Date | undefined;
2161
1867
  alternateRefs?: {
2162
1868
  href: string;
@@ -2193,7 +1899,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2193
1899
  sitemap?: {
2194
1900
  exclude?: boolean | undefined;
2195
1901
  priority?: number | undefined;
2196
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1902
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
2197
1903
  lastmod?: string | Date | undefined;
2198
1904
  alternateRefs?: {
2199
1905
  href: string;
@@ -2230,7 +1936,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2230
1936
  sitemap?: {
2231
1937
  exclude?: boolean | undefined;
2232
1938
  priority?: number | undefined;
2233
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1939
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
2234
1940
  lastmod?: string | Date | undefined;
2235
1941
  alternateRefs?: {
2236
1942
  href: string;
@@ -2267,7 +1973,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2267
1973
  sitemap?: {
2268
1974
  exclude?: boolean | undefined;
2269
1975
  priority?: number | undefined;
2270
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1976
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
2271
1977
  lastmod?: string | Date | undefined;
2272
1978
  alternateRefs?: {
2273
1979
  href: string;
@@ -2304,7 +2010,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2304
2010
  sitemap?: {
2305
2011
  exclude?: boolean | undefined;
2306
2012
  priority?: number | undefined;
2307
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2013
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
2308
2014
  lastmod?: string | Date | undefined;
2309
2015
  alternateRefs?: {
2310
2016
  href: string;
@@ -2343,7 +2049,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2343
2049
  sitemap?: {
2344
2050
  exclude?: boolean | undefined;
2345
2051
  priority?: number | undefined;
2346
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2052
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
2347
2053
  lastmod?: string | Date | undefined;
2348
2054
  alternateRefs?: {
2349
2055
  href: string;
@@ -2384,7 +2090,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2384
2090
  sitemap?: {
2385
2091
  exclude?: boolean | undefined;
2386
2092
  priority?: number | undefined;
2387
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2093
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
2388
2094
  lastmod?: string | Date | undefined;
2389
2095
  alternateRefs?: {
2390
2096
  href: string;
@@ -2438,7 +2144,6 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2438
2144
  disableManifestGeneration?: boolean | undefined;
2439
2145
  enableRouteTreeFormatting?: boolean | undefined;
2440
2146
  routeTreeFileFooter?: string[] | undefined;
2441
- autoCodeSplitting?: boolean | undefined;
2442
2147
  customScaffolding?: {
2443
2148
  routeTemplate?: string | undefined;
2444
2149
  lazyRouteTemplate?: string | undefined;
@@ -2461,7 +2166,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2461
2166
  base: string;
2462
2167
  dir: string;
2463
2168
  };
2464
- pages: (string | {
2169
+ pages: {
2465
2170
  path: string;
2466
2171
  prerender?: {
2467
2172
  enabled?: boolean | undefined;
@@ -2476,7 +2181,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2476
2181
  sitemap?: {
2477
2182
  exclude?: boolean | undefined;
2478
2183
  priority?: number | undefined;
2479
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2184
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
2480
2185
  lastmod?: string | Date | undefined;
2481
2186
  alternateRefs?: {
2482
2187
  href: string;
@@ -2504,7 +2209,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2504
2209
  sitemap?: {
2505
2210
  exclude?: boolean | undefined;
2506
2211
  priority?: number | undefined;
2507
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2212
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
2508
2213
  lastmod?: string | Date | undefined;
2509
2214
  alternateRefs?: {
2510
2215
  href: string;
@@ -2525,7 +2230,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2525
2230
  } | undefined;
2526
2231
  } | undefined;
2527
2232
  fromCrawl?: boolean | undefined;
2528
- })[];
2233
+ }[];
2529
2234
  target?: import('nitropack/presets').PresetNameInput | undefined;
2530
2235
  prerender?: ({
2531
2236
  filter?: ((args_0: {
@@ -2543,7 +2248,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2543
2248
  sitemap?: {
2544
2249
  exclude?: boolean | undefined;
2545
2250
  priority?: number | undefined;
2546
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2251
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
2547
2252
  lastmod?: string | Date | undefined;
2548
2253
  alternateRefs?: {
2549
2254
  href: string;
@@ -2571,7 +2276,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2571
2276
  sitemap?: {
2572
2277
  exclude?: boolean | undefined;
2573
2278
  priority?: number | undefined;
2574
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2279
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
2575
2280
  lastmod?: string | Date | undefined;
2576
2281
  alternateRefs?: {
2577
2282
  href: string;
@@ -2609,7 +2314,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2609
2314
  sitemap?: {
2610
2315
  exclude?: boolean | undefined;
2611
2316
  priority?: number | undefined;
2612
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2317
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
2613
2318
  lastmod?: string | Date | undefined;
2614
2319
  alternateRefs?: {
2615
2320
  href: string;
@@ -2635,42 +2340,8 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2635
2340
  }, ...args: unknown[]) => any) | undefined;
2636
2341
  }) | undefined;
2637
2342
  sitemap?: {
2638
- enabled?: boolean | undefined;
2639
- outputPath?: string | undefined;
2640
- autoSubfolderIndex?: boolean | undefined;
2641
- crawlLinks?: boolean | undefined;
2642
- retryCount?: number | undefined;
2643
- retryDelay?: number | undefined;
2644
- onSuccess?: ((args_0: {
2645
- page: {
2646
- path: string;
2647
- sitemap?: {
2648
- exclude?: boolean | undefined;
2649
- priority?: number | undefined;
2650
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2651
- lastmod?: string | Date | undefined;
2652
- alternateRefs?: {
2653
- href: string;
2654
- hreflang: string;
2655
- }[] | undefined;
2656
- images?: {
2657
- loc: string;
2658
- caption?: string | undefined;
2659
- title?: string | undefined;
2660
- }[] | undefined;
2661
- news?: {
2662
- title: string;
2663
- publication: {
2664
- name: string;
2665
- language: string;
2666
- };
2667
- publicationDate: string | Date;
2668
- } | undefined;
2669
- } | undefined;
2670
- fromCrawl?: boolean | undefined;
2671
- };
2672
- html: string;
2673
- }, ...args: unknown[]) => any) | undefined;
2343
+ enabled: boolean;
2344
+ outputPath: string;
2674
2345
  host?: string | undefined;
2675
2346
  } | undefined;
2676
2347
  spa?: {
@@ -2687,7 +2358,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2687
2358
  sitemap?: {
2688
2359
  exclude?: boolean | undefined;
2689
2360
  priority?: number | undefined;
2690
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2361
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
2691
2362
  lastmod?: string | Date | undefined;
2692
2363
  alternateRefs?: {
2693
2364
  href: string;
@@ -2734,7 +2405,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2734
2405
  sitemap?: {
2735
2406
  exclude?: boolean | undefined;
2736
2407
  priority?: number | undefined;
2737
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2408
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
2738
2409
  lastmod?: string | Date | undefined;
2739
2410
  alternateRefs?: {
2740
2411
  href: string;
@@ -2762,7 +2433,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2762
2433
  sitemap?: {
2763
2434
  exclude?: boolean | undefined;
2764
2435
  priority?: number | undefined;
2765
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2436
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
2766
2437
  lastmod?: string | Date | undefined;
2767
2438
  alternateRefs?: {
2768
2439
  href: string;
@@ -2800,7 +2471,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2800
2471
  sitemap?: {
2801
2472
  exclude?: boolean | undefined;
2802
2473
  priority?: number | undefined;
2803
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2474
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
2804
2475
  lastmod?: string | Date | undefined;
2805
2476
  alternateRefs?: {
2806
2477
  href: string;
@@ -2846,7 +2517,6 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2846
2517
  disableManifestGeneration?: boolean | undefined;
2847
2518
  enableRouteTreeFormatting?: boolean | undefined;
2848
2519
  routeTreeFileFooter?: string[] | undefined;
2849
- autoCodeSplitting?: boolean | undefined;
2850
2520
  customScaffolding?: {
2851
2521
  routeTemplate?: string | undefined;
2852
2522
  lazyRouteTemplate?: string | undefined;
@@ -2873,43 +2543,9 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2873
2543
  sitemap?: {
2874
2544
  enabled?: boolean | undefined;
2875
2545
  outputPath?: string | undefined;
2876
- autoSubfolderIndex?: boolean | undefined;
2877
- crawlLinks?: boolean | undefined;
2878
- retryCount?: number | undefined;
2879
- retryDelay?: number | undefined;
2880
- onSuccess?: ((args_0: {
2881
- page: {
2882
- path: string;
2883
- sitemap?: {
2884
- exclude?: boolean | undefined;
2885
- priority?: number | undefined;
2886
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2887
- lastmod?: string | Date | undefined;
2888
- alternateRefs?: {
2889
- href: string;
2890
- hreflang: string;
2891
- }[] | undefined;
2892
- images?: {
2893
- loc: string;
2894
- caption?: string | undefined;
2895
- title?: string | undefined;
2896
- }[] | undefined;
2897
- news?: {
2898
- title: string;
2899
- publication: {
2900
- name: string;
2901
- language: string;
2902
- };
2903
- publicationDate: string | Date;
2904
- } | undefined;
2905
- } | undefined;
2906
- fromCrawl?: boolean | undefined;
2907
- };
2908
- html: string;
2909
- }, ...args: unknown[]) => any) | undefined;
2910
2546
  host?: string | undefined;
2911
2547
  } | undefined;
2912
- pages?: (string | {
2548
+ pages?: {
2913
2549
  path: string;
2914
2550
  prerender?: {
2915
2551
  enabled?: boolean | undefined;
@@ -2924,7 +2560,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2924
2560
  sitemap?: {
2925
2561
  exclude?: boolean | undefined;
2926
2562
  priority?: number | undefined;
2927
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2563
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
2928
2564
  lastmod?: string | Date | undefined;
2929
2565
  alternateRefs?: {
2930
2566
  href: string;
@@ -2952,7 +2588,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2952
2588
  sitemap?: {
2953
2589
  exclude?: boolean | undefined;
2954
2590
  priority?: number | undefined;
2955
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2591
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
2956
2592
  lastmod?: string | Date | undefined;
2957
2593
  alternateRefs?: {
2958
2594
  href: string;
@@ -2973,7 +2609,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2973
2609
  } | undefined;
2974
2610
  } | undefined;
2975
2611
  fromCrawl?: boolean | undefined;
2976
- })[] | undefined;
2612
+ }[] | undefined;
2977
2613
  spa?: {
2978
2614
  prerender?: {
2979
2615
  enabled?: boolean | undefined;
@@ -2988,7 +2624,7 @@ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
2988
2624
  sitemap?: {
2989
2625
  exclude?: boolean | undefined;
2990
2626
  priority?: number | undefined;
2991
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2627
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
2992
2628
  lastmod?: string | Date | undefined;
2993
2629
  alternateRefs?: {
2994
2630
  href: string;
@@ -3067,7 +2703,7 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
3067
2703
  base: string;
3068
2704
  dir: string;
3069
2705
  };
3070
- pages: (string | {
2706
+ pages: {
3071
2707
  path: string;
3072
2708
  prerender?: {
3073
2709
  enabled?: boolean | undefined;
@@ -3082,7 +2718,7 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
3082
2718
  sitemap?: {
3083
2719
  exclude?: boolean | undefined;
3084
2720
  priority?: number | undefined;
3085
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2721
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
3086
2722
  lastmod?: string | Date | undefined;
3087
2723
  alternateRefs?: {
3088
2724
  href: string;
@@ -3110,7 +2746,7 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
3110
2746
  sitemap?: {
3111
2747
  exclude?: boolean | undefined;
3112
2748
  priority?: number | undefined;
3113
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2749
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
3114
2750
  lastmod?: string | Date | undefined;
3115
2751
  alternateRefs?: {
3116
2752
  href: string;
@@ -3131,7 +2767,7 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
3131
2767
  } | undefined;
3132
2768
  } | undefined;
3133
2769
  fromCrawl?: boolean | undefined;
3134
- })[];
2770
+ }[];
3135
2771
  target?: import('nitropack/presets').PresetNameInput | undefined;
3136
2772
  prerender?: ({
3137
2773
  filter?: ((args_0: {
@@ -3149,7 +2785,7 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
3149
2785
  sitemap?: {
3150
2786
  exclude?: boolean | undefined;
3151
2787
  priority?: number | undefined;
3152
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2788
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
3153
2789
  lastmod?: string | Date | undefined;
3154
2790
  alternateRefs?: {
3155
2791
  href: string;
@@ -3177,7 +2813,7 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
3177
2813
  sitemap?: {
3178
2814
  exclude?: boolean | undefined;
3179
2815
  priority?: number | undefined;
3180
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2816
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
3181
2817
  lastmod?: string | Date | undefined;
3182
2818
  alternateRefs?: {
3183
2819
  href: string;
@@ -3215,7 +2851,7 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
3215
2851
  sitemap?: {
3216
2852
  exclude?: boolean | undefined;
3217
2853
  priority?: number | undefined;
3218
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2854
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
3219
2855
  lastmod?: string | Date | undefined;
3220
2856
  alternateRefs?: {
3221
2857
  href: string;
@@ -3241,42 +2877,8 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
3241
2877
  }, ...args: unknown[]) => any) | undefined;
3242
2878
  }) | undefined;
3243
2879
  sitemap?: {
3244
- enabled?: boolean | undefined;
3245
- outputPath?: string | undefined;
3246
- autoSubfolderIndex?: boolean | undefined;
3247
- crawlLinks?: boolean | undefined;
3248
- retryCount?: number | undefined;
3249
- retryDelay?: number | undefined;
3250
- onSuccess?: ((args_0: {
3251
- page: {
3252
- path: string;
3253
- sitemap?: {
3254
- exclude?: boolean | undefined;
3255
- priority?: number | undefined;
3256
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
3257
- lastmod?: string | Date | undefined;
3258
- alternateRefs?: {
3259
- href: string;
3260
- hreflang: string;
3261
- }[] | undefined;
3262
- images?: {
3263
- loc: string;
3264
- caption?: string | undefined;
3265
- title?: string | undefined;
3266
- }[] | undefined;
3267
- news?: {
3268
- title: string;
3269
- publication: {
3270
- name: string;
3271
- language: string;
3272
- };
3273
- publicationDate: string | Date;
3274
- } | undefined;
3275
- } | undefined;
3276
- fromCrawl?: boolean | undefined;
3277
- };
3278
- html: string;
3279
- }, ...args: unknown[]) => any) | undefined;
2880
+ enabled: boolean;
2881
+ outputPath: string;
3280
2882
  host?: string | undefined;
3281
2883
  } | undefined;
3282
2884
  spa?: {
@@ -3293,7 +2895,7 @@ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig)
3293
2895
  sitemap?: {
3294
2896
  exclude?: boolean | undefined;
3295
2897
  priority?: number | undefined;
3296
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2898
+ changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
3297
2899
  lastmod?: string | Date | undefined;
3298
2900
  alternateRefs?: {
3299
2901
  href: string;