@tanstack/start-plugin-core 1.121.0-alpha.4 → 1.121.0-alpha.6
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/build-sitemap.cjs +136 -0
- package/dist/cjs/build-sitemap.cjs.map +1 -0
- package/dist/cjs/build-sitemap.d.cts +31 -0
- package/dist/cjs/nitro/nitro-plugin.cjs +9 -0
- package/dist/cjs/nitro/nitro-plugin.cjs.map +1 -1
- package/dist/cjs/plugin.d.cts +88 -481
- package/dist/cjs/prerender.cjs +1 -7
- package/dist/cjs/prerender.cjs.map +1 -1
- package/dist/cjs/schema.cjs +5 -3
- package/dist/cjs/schema.cjs.map +1 -1
- package/dist/cjs/schema.d.cts +490 -1601
- package/dist/esm/build-sitemap.d.ts +31 -0
- package/dist/esm/build-sitemap.js +136 -0
- package/dist/esm/build-sitemap.js.map +1 -0
- package/dist/esm/nitro/nitro-plugin.js +9 -0
- package/dist/esm/nitro/nitro-plugin.js.map +1 -1
- package/dist/esm/plugin.d.ts +88 -481
- package/dist/esm/prerender.js +1 -7
- package/dist/esm/prerender.js.map +1 -1
- package/dist/esm/schema.d.ts +490 -1601
- package/dist/esm/schema.js +5 -3
- package/dist/esm/schema.js.map +1 -1
- package/package.json +4 -4
- package/src/build-sitemap.ts +210 -0
- package/src/nitro/nitro-plugin.ts +9 -13
- package/src/prerender.ts +1 -9
- package/src/schema.ts +5 -6
- package/dist/cjs/nitro/build-sitemap.d.cts +0 -9
- package/dist/esm/nitro/build-sitemap.d.ts +0 -9
- package/src/nitro/build-sitemap.ts +0 -79
package/dist/cjs/schema.d.cts
CHANGED
|
@@ -134,7 +134,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
134
134
|
base?: string | undefined;
|
|
135
135
|
dir?: string | undefined;
|
|
136
136
|
}>>>;
|
|
137
|
-
pages: z.ZodDefault<z.ZodOptional<z.ZodArray<z.
|
|
137
|
+
pages: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
138
138
|
path: z.ZodString;
|
|
139
139
|
sitemap: z.ZodOptional<z.ZodObject<{
|
|
140
140
|
exclude: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -195,7 +195,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
195
195
|
}, "strip", z.ZodTypeAny, {
|
|
196
196
|
exclude?: boolean | undefined;
|
|
197
197
|
priority?: number | undefined;
|
|
198
|
-
changefreq?: "
|
|
198
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
199
199
|
lastmod?: string | Date | undefined;
|
|
200
200
|
alternateRefs?: {
|
|
201
201
|
href: string;
|
|
@@ -217,7 +217,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
217
217
|
}, {
|
|
218
218
|
exclude?: boolean | undefined;
|
|
219
219
|
priority?: number | undefined;
|
|
220
|
-
changefreq?: "
|
|
220
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
221
221
|
lastmod?: string | Date | undefined;
|
|
222
222
|
alternateRefs?: {
|
|
223
223
|
href: string;
|
|
@@ -308,7 +308,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
308
308
|
}, "strip", z.ZodTypeAny, {
|
|
309
309
|
exclude?: boolean | undefined;
|
|
310
310
|
priority?: number | undefined;
|
|
311
|
-
changefreq?: "
|
|
311
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
312
312
|
lastmod?: string | Date | undefined;
|
|
313
313
|
alternateRefs?: {
|
|
314
314
|
href: string;
|
|
@@ -330,7 +330,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
330
330
|
}, {
|
|
331
331
|
exclude?: boolean | undefined;
|
|
332
332
|
priority?: number | undefined;
|
|
333
|
-
changefreq?: "
|
|
333
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
334
334
|
lastmod?: string | Date | undefined;
|
|
335
335
|
alternateRefs?: {
|
|
336
336
|
href: string;
|
|
@@ -356,7 +356,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
356
356
|
sitemap?: {
|
|
357
357
|
exclude?: boolean | undefined;
|
|
358
358
|
priority?: number | undefined;
|
|
359
|
-
changefreq?: "
|
|
359
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
360
360
|
lastmod?: string | Date | undefined;
|
|
361
361
|
alternateRefs?: {
|
|
362
362
|
href: string;
|
|
@@ -382,7 +382,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
382
382
|
sitemap?: {
|
|
383
383
|
exclude?: boolean | undefined;
|
|
384
384
|
priority?: number | undefined;
|
|
385
|
-
changefreq?: "
|
|
385
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
386
386
|
lastmod?: string | Date | undefined;
|
|
387
387
|
alternateRefs?: {
|
|
388
388
|
href: string;
|
|
@@ -411,7 +411,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
411
411
|
sitemap?: {
|
|
412
412
|
exclude?: boolean | undefined;
|
|
413
413
|
priority?: number | undefined;
|
|
414
|
-
changefreq?: "
|
|
414
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
415
415
|
lastmod?: string | Date | undefined;
|
|
416
416
|
alternateRefs?: {
|
|
417
417
|
href: string;
|
|
@@ -440,7 +440,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
440
440
|
sitemap?: {
|
|
441
441
|
exclude?: boolean | undefined;
|
|
442
442
|
priority?: number | undefined;
|
|
443
|
-
changefreq?: "
|
|
443
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
444
444
|
lastmod?: string | Date | undefined;
|
|
445
445
|
alternateRefs?: {
|
|
446
446
|
href: string;
|
|
@@ -477,7 +477,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
477
477
|
sitemap?: {
|
|
478
478
|
exclude?: boolean | undefined;
|
|
479
479
|
priority?: number | undefined;
|
|
480
|
-
changefreq?: "
|
|
480
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
481
481
|
lastmod?: string | Date | undefined;
|
|
482
482
|
alternateRefs?: {
|
|
483
483
|
href: string;
|
|
@@ -514,7 +514,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
514
514
|
sitemap?: {
|
|
515
515
|
exclude?: boolean | undefined;
|
|
516
516
|
priority?: number | undefined;
|
|
517
|
-
changefreq?: "
|
|
517
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
518
518
|
lastmod?: string | Date | undefined;
|
|
519
519
|
alternateRefs?: {
|
|
520
520
|
href: string;
|
|
@@ -554,7 +554,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
554
554
|
sitemap?: {
|
|
555
555
|
exclude?: boolean | undefined;
|
|
556
556
|
priority?: number | undefined;
|
|
557
|
-
changefreq?: "
|
|
557
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
558
558
|
lastmod?: string | Date | undefined;
|
|
559
559
|
alternateRefs?: {
|
|
560
560
|
href: string;
|
|
@@ -582,7 +582,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
582
582
|
sitemap?: {
|
|
583
583
|
exclude?: boolean | undefined;
|
|
584
584
|
priority?: number | undefined;
|
|
585
|
-
changefreq?: "
|
|
585
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
586
586
|
lastmod?: string | Date | undefined;
|
|
587
587
|
alternateRefs?: {
|
|
588
588
|
href: string;
|
|
@@ -618,7 +618,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
618
618
|
sitemap?: {
|
|
619
619
|
exclude?: boolean | undefined;
|
|
620
620
|
priority?: number | undefined;
|
|
621
|
-
changefreq?: "
|
|
621
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
622
622
|
lastmod?: string | Date | undefined;
|
|
623
623
|
alternateRefs?: {
|
|
624
624
|
href: string;
|
|
@@ -646,7 +646,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
646
646
|
sitemap?: {
|
|
647
647
|
exclude?: boolean | undefined;
|
|
648
648
|
priority?: number | undefined;
|
|
649
|
-
changefreq?: "
|
|
649
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
650
650
|
lastmod?: string | Date | undefined;
|
|
651
651
|
alternateRefs?: {
|
|
652
652
|
href: string;
|
|
@@ -667,415 +667,124 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
667
667
|
} | undefined;
|
|
668
668
|
} | undefined;
|
|
669
669
|
fromCrawl?: boolean | undefined;
|
|
670
|
-
}
|
|
671
|
-
sitemap: z.ZodOptional<z.ZodObject<
|
|
670
|
+
}>, "many">>>;
|
|
671
|
+
sitemap: z.ZodOptional<z.ZodObject<{
|
|
672
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
673
|
+
host: z.ZodOptional<z.ZodString>;
|
|
674
|
+
outputPath: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
675
|
+
}, "strip", z.ZodTypeAny, {
|
|
676
|
+
enabled: boolean;
|
|
677
|
+
outputPath: string;
|
|
678
|
+
host?: string | undefined;
|
|
679
|
+
}, {
|
|
680
|
+
enabled?: boolean | undefined;
|
|
681
|
+
outputPath?: string | undefined;
|
|
682
|
+
host?: string | undefined;
|
|
683
|
+
}>>;
|
|
684
|
+
prerender: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
672
685
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
}>, "many">>;
|
|
709
|
-
news: z.ZodOptional<z.ZodObject<{
|
|
710
|
-
publication: z.ZodObject<{
|
|
711
|
-
name: z.ZodString;
|
|
712
|
-
language: z.ZodString;
|
|
713
|
-
}, "strip", z.ZodTypeAny, {
|
|
714
|
-
name: string;
|
|
715
|
-
language: string;
|
|
716
|
-
}, {
|
|
717
|
-
name: string;
|
|
718
|
-
language: string;
|
|
719
|
-
}>;
|
|
720
|
-
publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
721
|
-
title: z.ZodString;
|
|
686
|
+
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
687
|
+
filter: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<z.objectUtil.extendShape<{
|
|
688
|
+
path: z.ZodString;
|
|
689
|
+
sitemap: z.ZodOptional<z.ZodObject<{
|
|
690
|
+
exclude: z.ZodOptional<z.ZodBoolean>;
|
|
691
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
692
|
+
changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
|
|
693
|
+
lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
|
|
694
|
+
alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
695
|
+
href: z.ZodString;
|
|
696
|
+
hreflang: z.ZodString;
|
|
697
|
+
}, "strip", z.ZodTypeAny, {
|
|
698
|
+
href: string;
|
|
699
|
+
hreflang: string;
|
|
700
|
+
}, {
|
|
701
|
+
href: string;
|
|
702
|
+
hreflang: string;
|
|
703
|
+
}>, "many">>;
|
|
704
|
+
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
705
|
+
loc: z.ZodString;
|
|
706
|
+
caption: z.ZodOptional<z.ZodString>;
|
|
707
|
+
title: z.ZodOptional<z.ZodString>;
|
|
708
|
+
}, "strip", z.ZodTypeAny, {
|
|
709
|
+
loc: string;
|
|
710
|
+
caption?: string | undefined;
|
|
711
|
+
title?: string | undefined;
|
|
712
|
+
}, {
|
|
713
|
+
loc: string;
|
|
714
|
+
caption?: string | undefined;
|
|
715
|
+
title?: string | undefined;
|
|
716
|
+
}>, "many">>;
|
|
717
|
+
news: z.ZodOptional<z.ZodObject<{
|
|
718
|
+
publication: z.ZodObject<{
|
|
719
|
+
name: z.ZodString;
|
|
720
|
+
language: z.ZodString;
|
|
722
721
|
}, "strip", z.ZodTypeAny, {
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
name: string;
|
|
726
|
-
language: string;
|
|
727
|
-
};
|
|
728
|
-
publicationDate: string | Date;
|
|
722
|
+
name: string;
|
|
723
|
+
language: string;
|
|
729
724
|
}, {
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
publicationDate: string | Date;
|
|
736
|
-
}>>;
|
|
725
|
+
name: string;
|
|
726
|
+
language: string;
|
|
727
|
+
}>;
|
|
728
|
+
publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
729
|
+
title: z.ZodString;
|
|
737
730
|
}, "strip", z.ZodTypeAny, {
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
hreflang: string;
|
|
745
|
-
}[] | undefined;
|
|
746
|
-
images?: {
|
|
747
|
-
loc: string;
|
|
748
|
-
caption?: string | undefined;
|
|
749
|
-
title?: string | undefined;
|
|
750
|
-
}[] | undefined;
|
|
751
|
-
news?: {
|
|
752
|
-
title: string;
|
|
753
|
-
publication: {
|
|
754
|
-
name: string;
|
|
755
|
-
language: string;
|
|
756
|
-
};
|
|
757
|
-
publicationDate: string | Date;
|
|
758
|
-
} | undefined;
|
|
731
|
+
title: string;
|
|
732
|
+
publication: {
|
|
733
|
+
name: string;
|
|
734
|
+
language: string;
|
|
735
|
+
};
|
|
736
|
+
publicationDate: string | Date;
|
|
759
737
|
}, {
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
hreflang: string;
|
|
767
|
-
}[] | undefined;
|
|
768
|
-
images?: {
|
|
769
|
-
loc: string;
|
|
770
|
-
caption?: string | undefined;
|
|
771
|
-
title?: string | undefined;
|
|
772
|
-
}[] | undefined;
|
|
773
|
-
news?: {
|
|
774
|
-
title: string;
|
|
775
|
-
publication: {
|
|
776
|
-
name: string;
|
|
777
|
-
language: string;
|
|
778
|
-
};
|
|
779
|
-
publicationDate: string | Date;
|
|
780
|
-
} | undefined;
|
|
738
|
+
title: string;
|
|
739
|
+
publication: {
|
|
740
|
+
name: string;
|
|
741
|
+
language: string;
|
|
742
|
+
};
|
|
743
|
+
publicationDate: string | Date;
|
|
781
744
|
}>>;
|
|
782
|
-
fromCrawl: z.ZodOptional<z.ZodBoolean>;
|
|
783
745
|
}, "strip", z.ZodTypeAny, {
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
};
|
|
805
|
-
publicationDate: string | Date;
|
|
806
|
-
} | undefined;
|
|
746
|
+
exclude?: boolean | undefined;
|
|
747
|
+
priority?: number | undefined;
|
|
748
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
749
|
+
lastmod?: string | Date | undefined;
|
|
750
|
+
alternateRefs?: {
|
|
751
|
+
href: string;
|
|
752
|
+
hreflang: string;
|
|
753
|
+
}[] | undefined;
|
|
754
|
+
images?: {
|
|
755
|
+
loc: string;
|
|
756
|
+
caption?: string | undefined;
|
|
757
|
+
title?: string | undefined;
|
|
758
|
+
}[] | undefined;
|
|
759
|
+
news?: {
|
|
760
|
+
title: string;
|
|
761
|
+
publication: {
|
|
762
|
+
name: string;
|
|
763
|
+
language: string;
|
|
764
|
+
};
|
|
765
|
+
publicationDate: string | Date;
|
|
807
766
|
} | undefined;
|
|
808
|
-
fromCrawl?: boolean | undefined;
|
|
809
767
|
}, {
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
};
|
|
831
|
-
publicationDate: string | Date;
|
|
832
|
-
} | undefined;
|
|
833
|
-
} | undefined;
|
|
834
|
-
fromCrawl?: boolean | undefined;
|
|
835
|
-
}>;
|
|
836
|
-
html: z.ZodString;
|
|
837
|
-
}, "strip", z.ZodTypeAny, {
|
|
838
|
-
page: {
|
|
839
|
-
path: string;
|
|
840
|
-
sitemap?: {
|
|
841
|
-
exclude?: boolean | undefined;
|
|
842
|
-
priority?: number | undefined;
|
|
843
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
844
|
-
lastmod?: string | Date | undefined;
|
|
845
|
-
alternateRefs?: {
|
|
846
|
-
href: string;
|
|
847
|
-
hreflang: string;
|
|
848
|
-
}[] | undefined;
|
|
849
|
-
images?: {
|
|
850
|
-
loc: string;
|
|
851
|
-
caption?: string | undefined;
|
|
852
|
-
title?: string | undefined;
|
|
853
|
-
}[] | undefined;
|
|
854
|
-
news?: {
|
|
855
|
-
title: string;
|
|
856
|
-
publication: {
|
|
857
|
-
name: string;
|
|
858
|
-
language: string;
|
|
859
|
-
};
|
|
860
|
-
publicationDate: string | Date;
|
|
861
|
-
} | undefined;
|
|
862
|
-
} | undefined;
|
|
863
|
-
fromCrawl?: boolean | undefined;
|
|
864
|
-
};
|
|
865
|
-
html: string;
|
|
866
|
-
}, {
|
|
867
|
-
page: {
|
|
868
|
-
path: string;
|
|
869
|
-
sitemap?: {
|
|
870
|
-
exclude?: boolean | undefined;
|
|
871
|
-
priority?: number | undefined;
|
|
872
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
873
|
-
lastmod?: string | Date | undefined;
|
|
874
|
-
alternateRefs?: {
|
|
875
|
-
href: string;
|
|
876
|
-
hreflang: string;
|
|
877
|
-
}[] | undefined;
|
|
878
|
-
images?: {
|
|
879
|
-
loc: string;
|
|
880
|
-
caption?: string | undefined;
|
|
881
|
-
title?: string | undefined;
|
|
882
|
-
}[] | undefined;
|
|
883
|
-
news?: {
|
|
884
|
-
title: string;
|
|
885
|
-
publication: {
|
|
886
|
-
name: string;
|
|
887
|
-
language: string;
|
|
888
|
-
};
|
|
889
|
-
publicationDate: string | Date;
|
|
890
|
-
} | undefined;
|
|
891
|
-
} | undefined;
|
|
892
|
-
fromCrawl?: boolean | undefined;
|
|
893
|
-
};
|
|
894
|
-
html: string;
|
|
895
|
-
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
896
|
-
}, {
|
|
897
|
-
host: z.ZodOptional<z.ZodString>;
|
|
898
|
-
}>, "strip", z.ZodTypeAny, {
|
|
899
|
-
enabled?: boolean | undefined;
|
|
900
|
-
outputPath?: string | undefined;
|
|
901
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
902
|
-
crawlLinks?: boolean | undefined;
|
|
903
|
-
retryCount?: number | undefined;
|
|
904
|
-
retryDelay?: number | undefined;
|
|
905
|
-
onSuccess?: ((args_0: {
|
|
906
|
-
page: {
|
|
907
|
-
path: string;
|
|
908
|
-
sitemap?: {
|
|
909
|
-
exclude?: boolean | undefined;
|
|
910
|
-
priority?: number | undefined;
|
|
911
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
912
|
-
lastmod?: string | Date | undefined;
|
|
913
|
-
alternateRefs?: {
|
|
914
|
-
href: string;
|
|
915
|
-
hreflang: string;
|
|
916
|
-
}[] | undefined;
|
|
917
|
-
images?: {
|
|
918
|
-
loc: string;
|
|
919
|
-
caption?: string | undefined;
|
|
920
|
-
title?: string | undefined;
|
|
921
|
-
}[] | undefined;
|
|
922
|
-
news?: {
|
|
923
|
-
title: string;
|
|
924
|
-
publication: {
|
|
925
|
-
name: string;
|
|
926
|
-
language: string;
|
|
927
|
-
};
|
|
928
|
-
publicationDate: string | Date;
|
|
929
|
-
} | undefined;
|
|
930
|
-
} | undefined;
|
|
931
|
-
fromCrawl?: boolean | undefined;
|
|
932
|
-
};
|
|
933
|
-
html: string;
|
|
934
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
935
|
-
host?: string | undefined;
|
|
936
|
-
}, {
|
|
937
|
-
enabled?: boolean | undefined;
|
|
938
|
-
outputPath?: string | undefined;
|
|
939
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
940
|
-
crawlLinks?: boolean | undefined;
|
|
941
|
-
retryCount?: number | undefined;
|
|
942
|
-
retryDelay?: number | undefined;
|
|
943
|
-
onSuccess?: ((args_0: {
|
|
944
|
-
page: {
|
|
945
|
-
path: string;
|
|
946
|
-
sitemap?: {
|
|
947
|
-
exclude?: boolean | undefined;
|
|
948
|
-
priority?: number | undefined;
|
|
949
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
950
|
-
lastmod?: string | Date | undefined;
|
|
951
|
-
alternateRefs?: {
|
|
952
|
-
href: string;
|
|
953
|
-
hreflang: string;
|
|
954
|
-
}[] | undefined;
|
|
955
|
-
images?: {
|
|
956
|
-
loc: string;
|
|
957
|
-
caption?: string | undefined;
|
|
958
|
-
title?: string | undefined;
|
|
959
|
-
}[] | undefined;
|
|
960
|
-
news?: {
|
|
961
|
-
title: string;
|
|
962
|
-
publication: {
|
|
963
|
-
name: string;
|
|
964
|
-
language: string;
|
|
965
|
-
};
|
|
966
|
-
publicationDate: string | Date;
|
|
967
|
-
} | undefined;
|
|
968
|
-
} | undefined;
|
|
969
|
-
fromCrawl?: boolean | undefined;
|
|
970
|
-
};
|
|
971
|
-
html: string;
|
|
972
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
973
|
-
host?: string | undefined;
|
|
974
|
-
}>>;
|
|
975
|
-
prerender: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
976
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
977
|
-
concurrency: z.ZodOptional<z.ZodNumber>;
|
|
978
|
-
filter: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<z.objectUtil.extendShape<{
|
|
979
|
-
path: z.ZodString;
|
|
980
|
-
sitemap: z.ZodOptional<z.ZodObject<{
|
|
981
|
-
exclude: z.ZodOptional<z.ZodBoolean>;
|
|
982
|
-
priority: z.ZodOptional<z.ZodNumber>;
|
|
983
|
-
changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
|
|
984
|
-
lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
|
|
985
|
-
alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
986
|
-
href: z.ZodString;
|
|
987
|
-
hreflang: z.ZodString;
|
|
988
|
-
}, "strip", z.ZodTypeAny, {
|
|
989
|
-
href: string;
|
|
990
|
-
hreflang: string;
|
|
991
|
-
}, {
|
|
992
|
-
href: string;
|
|
993
|
-
hreflang: string;
|
|
994
|
-
}>, "many">>;
|
|
995
|
-
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
996
|
-
loc: z.ZodString;
|
|
997
|
-
caption: z.ZodOptional<z.ZodString>;
|
|
998
|
-
title: z.ZodOptional<z.ZodString>;
|
|
999
|
-
}, "strip", z.ZodTypeAny, {
|
|
1000
|
-
loc: string;
|
|
1001
|
-
caption?: string | undefined;
|
|
1002
|
-
title?: string | undefined;
|
|
1003
|
-
}, {
|
|
1004
|
-
loc: string;
|
|
1005
|
-
caption?: string | undefined;
|
|
1006
|
-
title?: string | undefined;
|
|
1007
|
-
}>, "many">>;
|
|
1008
|
-
news: z.ZodOptional<z.ZodObject<{
|
|
1009
|
-
publication: z.ZodObject<{
|
|
1010
|
-
name: z.ZodString;
|
|
1011
|
-
language: z.ZodString;
|
|
1012
|
-
}, "strip", z.ZodTypeAny, {
|
|
1013
|
-
name: string;
|
|
1014
|
-
language: string;
|
|
1015
|
-
}, {
|
|
1016
|
-
name: string;
|
|
1017
|
-
language: string;
|
|
1018
|
-
}>;
|
|
1019
|
-
publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
1020
|
-
title: z.ZodString;
|
|
1021
|
-
}, "strip", z.ZodTypeAny, {
|
|
1022
|
-
title: string;
|
|
1023
|
-
publication: {
|
|
1024
|
-
name: string;
|
|
1025
|
-
language: string;
|
|
1026
|
-
};
|
|
1027
|
-
publicationDate: string | Date;
|
|
1028
|
-
}, {
|
|
1029
|
-
title: string;
|
|
1030
|
-
publication: {
|
|
1031
|
-
name: string;
|
|
1032
|
-
language: string;
|
|
1033
|
-
};
|
|
1034
|
-
publicationDate: string | Date;
|
|
1035
|
-
}>>;
|
|
1036
|
-
}, "strip", z.ZodTypeAny, {
|
|
1037
|
-
exclude?: boolean | undefined;
|
|
1038
|
-
priority?: number | undefined;
|
|
1039
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1040
|
-
lastmod?: string | Date | undefined;
|
|
1041
|
-
alternateRefs?: {
|
|
1042
|
-
href: string;
|
|
1043
|
-
hreflang: string;
|
|
1044
|
-
}[] | undefined;
|
|
1045
|
-
images?: {
|
|
1046
|
-
loc: string;
|
|
1047
|
-
caption?: string | undefined;
|
|
1048
|
-
title?: string | undefined;
|
|
1049
|
-
}[] | undefined;
|
|
1050
|
-
news?: {
|
|
1051
|
-
title: string;
|
|
1052
|
-
publication: {
|
|
1053
|
-
name: string;
|
|
1054
|
-
language: string;
|
|
1055
|
-
};
|
|
1056
|
-
publicationDate: string | Date;
|
|
1057
|
-
} | undefined;
|
|
1058
|
-
}, {
|
|
1059
|
-
exclude?: boolean | undefined;
|
|
1060
|
-
priority?: number | undefined;
|
|
1061
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
1062
|
-
lastmod?: string | Date | undefined;
|
|
1063
|
-
alternateRefs?: {
|
|
1064
|
-
href: string;
|
|
1065
|
-
hreflang: string;
|
|
1066
|
-
}[] | undefined;
|
|
1067
|
-
images?: {
|
|
1068
|
-
loc: string;
|
|
1069
|
-
caption?: string | undefined;
|
|
1070
|
-
title?: string | undefined;
|
|
1071
|
-
}[] | undefined;
|
|
1072
|
-
news?: {
|
|
1073
|
-
title: string;
|
|
1074
|
-
publication: {
|
|
1075
|
-
name: string;
|
|
1076
|
-
language: string;
|
|
1077
|
-
};
|
|
1078
|
-
publicationDate: string | Date;
|
|
768
|
+
exclude?: boolean | undefined;
|
|
769
|
+
priority?: number | undefined;
|
|
770
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
771
|
+
lastmod?: string | Date | undefined;
|
|
772
|
+
alternateRefs?: {
|
|
773
|
+
href: string;
|
|
774
|
+
hreflang: string;
|
|
775
|
+
}[] | undefined;
|
|
776
|
+
images?: {
|
|
777
|
+
loc: string;
|
|
778
|
+
caption?: string | undefined;
|
|
779
|
+
title?: string | undefined;
|
|
780
|
+
}[] | undefined;
|
|
781
|
+
news?: {
|
|
782
|
+
title: string;
|
|
783
|
+
publication: {
|
|
784
|
+
name: string;
|
|
785
|
+
language: string;
|
|
786
|
+
};
|
|
787
|
+
publicationDate: string | Date;
|
|
1079
788
|
} | undefined;
|
|
1080
789
|
}>>;
|
|
1081
790
|
fromCrawl: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1149,7 +858,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1149
858
|
}, "strip", z.ZodTypeAny, {
|
|
1150
859
|
exclude?: boolean | undefined;
|
|
1151
860
|
priority?: number | undefined;
|
|
1152
|
-
changefreq?: "
|
|
861
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1153
862
|
lastmod?: string | Date | undefined;
|
|
1154
863
|
alternateRefs?: {
|
|
1155
864
|
href: string;
|
|
@@ -1171,7 +880,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1171
880
|
}, {
|
|
1172
881
|
exclude?: boolean | undefined;
|
|
1173
882
|
priority?: number | undefined;
|
|
1174
|
-
changefreq?: "
|
|
883
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1175
884
|
lastmod?: string | Date | undefined;
|
|
1176
885
|
alternateRefs?: {
|
|
1177
886
|
href: string;
|
|
@@ -1197,7 +906,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1197
906
|
sitemap?: {
|
|
1198
907
|
exclude?: boolean | undefined;
|
|
1199
908
|
priority?: number | undefined;
|
|
1200
|
-
changefreq?: "
|
|
909
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1201
910
|
lastmod?: string | Date | undefined;
|
|
1202
911
|
alternateRefs?: {
|
|
1203
912
|
href: string;
|
|
@@ -1223,7 +932,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1223
932
|
sitemap?: {
|
|
1224
933
|
exclude?: boolean | undefined;
|
|
1225
934
|
priority?: number | undefined;
|
|
1226
|
-
changefreq?: "
|
|
935
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1227
936
|
lastmod?: string | Date | undefined;
|
|
1228
937
|
alternateRefs?: {
|
|
1229
938
|
href: string;
|
|
@@ -1252,7 +961,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1252
961
|
sitemap?: {
|
|
1253
962
|
exclude?: boolean | undefined;
|
|
1254
963
|
priority?: number | undefined;
|
|
1255
|
-
changefreq?: "
|
|
964
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1256
965
|
lastmod?: string | Date | undefined;
|
|
1257
966
|
alternateRefs?: {
|
|
1258
967
|
href: string;
|
|
@@ -1281,7 +990,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1281
990
|
sitemap?: {
|
|
1282
991
|
exclude?: boolean | undefined;
|
|
1283
992
|
priority?: number | undefined;
|
|
1284
|
-
changefreq?: "
|
|
993
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1285
994
|
lastmod?: string | Date | undefined;
|
|
1286
995
|
alternateRefs?: {
|
|
1287
996
|
href: string;
|
|
@@ -1318,7 +1027,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1318
1027
|
sitemap?: {
|
|
1319
1028
|
exclude?: boolean | undefined;
|
|
1320
1029
|
priority?: number | undefined;
|
|
1321
|
-
changefreq?: "
|
|
1030
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1322
1031
|
lastmod?: string | Date | undefined;
|
|
1323
1032
|
alternateRefs?: {
|
|
1324
1033
|
href: string;
|
|
@@ -1355,7 +1064,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1355
1064
|
sitemap?: {
|
|
1356
1065
|
exclude?: boolean | undefined;
|
|
1357
1066
|
priority?: number | undefined;
|
|
1358
|
-
changefreq?: "
|
|
1067
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1359
1068
|
lastmod?: string | Date | undefined;
|
|
1360
1069
|
alternateRefs?: {
|
|
1361
1070
|
href: string;
|
|
@@ -1395,7 +1104,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1395
1104
|
sitemap?: {
|
|
1396
1105
|
exclude?: boolean | undefined;
|
|
1397
1106
|
priority?: number | undefined;
|
|
1398
|
-
changefreq?: "
|
|
1107
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1399
1108
|
lastmod?: string | Date | undefined;
|
|
1400
1109
|
alternateRefs?: {
|
|
1401
1110
|
href: string;
|
|
@@ -1423,7 +1132,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1423
1132
|
sitemap?: {
|
|
1424
1133
|
exclude?: boolean | undefined;
|
|
1425
1134
|
priority?: number | undefined;
|
|
1426
|
-
changefreq?: "
|
|
1135
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1427
1136
|
lastmod?: string | Date | undefined;
|
|
1428
1137
|
alternateRefs?: {
|
|
1429
1138
|
href: string;
|
|
@@ -1459,7 +1168,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1459
1168
|
sitemap?: {
|
|
1460
1169
|
exclude?: boolean | undefined;
|
|
1461
1170
|
priority?: number | undefined;
|
|
1462
|
-
changefreq?: "
|
|
1171
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1463
1172
|
lastmod?: string | Date | undefined;
|
|
1464
1173
|
alternateRefs?: {
|
|
1465
1174
|
href: string;
|
|
@@ -1487,7 +1196,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1487
1196
|
sitemap?: {
|
|
1488
1197
|
exclude?: boolean | undefined;
|
|
1489
1198
|
priority?: number | undefined;
|
|
1490
|
-
changefreq?: "
|
|
1199
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1491
1200
|
lastmod?: string | Date | undefined;
|
|
1492
1201
|
alternateRefs?: {
|
|
1493
1202
|
href: string;
|
|
@@ -1526,7 +1235,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1526
1235
|
sitemap?: {
|
|
1527
1236
|
exclude?: boolean | undefined;
|
|
1528
1237
|
priority?: number | undefined;
|
|
1529
|
-
changefreq?: "
|
|
1238
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1530
1239
|
lastmod?: string | Date | undefined;
|
|
1531
1240
|
alternateRefs?: {
|
|
1532
1241
|
href: string;
|
|
@@ -1554,7 +1263,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1554
1263
|
sitemap?: {
|
|
1555
1264
|
exclude?: boolean | undefined;
|
|
1556
1265
|
priority?: number | undefined;
|
|
1557
|
-
changefreq?: "
|
|
1266
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1558
1267
|
lastmod?: string | Date | undefined;
|
|
1559
1268
|
alternateRefs?: {
|
|
1560
1269
|
href: string;
|
|
@@ -1595,7 +1304,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1595
1304
|
sitemap?: {
|
|
1596
1305
|
exclude?: boolean | undefined;
|
|
1597
1306
|
priority?: number | undefined;
|
|
1598
|
-
changefreq?: "
|
|
1307
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1599
1308
|
lastmod?: string | Date | undefined;
|
|
1600
1309
|
alternateRefs?: {
|
|
1601
1310
|
href: string;
|
|
@@ -1623,7 +1332,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1623
1332
|
sitemap?: {
|
|
1624
1333
|
exclude?: boolean | undefined;
|
|
1625
1334
|
priority?: number | undefined;
|
|
1626
|
-
changefreq?: "
|
|
1335
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1627
1336
|
lastmod?: string | Date | undefined;
|
|
1628
1337
|
alternateRefs?: {
|
|
1629
1338
|
href: string;
|
|
@@ -1717,7 +1426,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1717
1426
|
}, "strip", z.ZodTypeAny, {
|
|
1718
1427
|
exclude?: boolean | undefined;
|
|
1719
1428
|
priority?: number | undefined;
|
|
1720
|
-
changefreq?: "
|
|
1429
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1721
1430
|
lastmod?: string | Date | undefined;
|
|
1722
1431
|
alternateRefs?: {
|
|
1723
1432
|
href: string;
|
|
@@ -1739,7 +1448,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1739
1448
|
}, {
|
|
1740
1449
|
exclude?: boolean | undefined;
|
|
1741
1450
|
priority?: number | undefined;
|
|
1742
|
-
changefreq?: "
|
|
1451
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1743
1452
|
lastmod?: string | Date | undefined;
|
|
1744
1453
|
alternateRefs?: {
|
|
1745
1454
|
href: string;
|
|
@@ -1765,7 +1474,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1765
1474
|
sitemap?: {
|
|
1766
1475
|
exclude?: boolean | undefined;
|
|
1767
1476
|
priority?: number | undefined;
|
|
1768
|
-
changefreq?: "
|
|
1477
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1769
1478
|
lastmod?: string | Date | undefined;
|
|
1770
1479
|
alternateRefs?: {
|
|
1771
1480
|
href: string;
|
|
@@ -1791,7 +1500,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1791
1500
|
sitemap?: {
|
|
1792
1501
|
exclude?: boolean | undefined;
|
|
1793
1502
|
priority?: number | undefined;
|
|
1794
|
-
changefreq?: "
|
|
1503
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1795
1504
|
lastmod?: string | Date | undefined;
|
|
1796
1505
|
alternateRefs?: {
|
|
1797
1506
|
href: string;
|
|
@@ -1820,7 +1529,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1820
1529
|
sitemap?: {
|
|
1821
1530
|
exclude?: boolean | undefined;
|
|
1822
1531
|
priority?: number | undefined;
|
|
1823
|
-
changefreq?: "
|
|
1532
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1824
1533
|
lastmod?: string | Date | undefined;
|
|
1825
1534
|
alternateRefs?: {
|
|
1826
1535
|
href: string;
|
|
@@ -1849,7 +1558,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1849
1558
|
sitemap?: {
|
|
1850
1559
|
exclude?: boolean | undefined;
|
|
1851
1560
|
priority?: number | undefined;
|
|
1852
|
-
changefreq?: "
|
|
1561
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1853
1562
|
lastmod?: string | Date | undefined;
|
|
1854
1563
|
alternateRefs?: {
|
|
1855
1564
|
href: string;
|
|
@@ -1886,7 +1595,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1886
1595
|
sitemap?: {
|
|
1887
1596
|
exclude?: boolean | undefined;
|
|
1888
1597
|
priority?: number | undefined;
|
|
1889
|
-
changefreq?: "
|
|
1598
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1890
1599
|
lastmod?: string | Date | undefined;
|
|
1891
1600
|
alternateRefs?: {
|
|
1892
1601
|
href: string;
|
|
@@ -1923,7 +1632,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1923
1632
|
sitemap?: {
|
|
1924
1633
|
exclude?: boolean | undefined;
|
|
1925
1634
|
priority?: number | undefined;
|
|
1926
|
-
changefreq?: "
|
|
1635
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
1927
1636
|
lastmod?: string | Date | undefined;
|
|
1928
1637
|
alternateRefs?: {
|
|
1929
1638
|
href: string;
|
|
@@ -2020,7 +1729,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2020
1729
|
}, "strip", z.ZodTypeAny, {
|
|
2021
1730
|
exclude?: boolean | undefined;
|
|
2022
1731
|
priority?: number | undefined;
|
|
2023
|
-
changefreq?: "
|
|
1732
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2024
1733
|
lastmod?: string | Date | undefined;
|
|
2025
1734
|
alternateRefs?: {
|
|
2026
1735
|
href: string;
|
|
@@ -2042,7 +1751,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2042
1751
|
}, {
|
|
2043
1752
|
exclude?: boolean | undefined;
|
|
2044
1753
|
priority?: number | undefined;
|
|
2045
|
-
changefreq?: "
|
|
1754
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2046
1755
|
lastmod?: string | Date | undefined;
|
|
2047
1756
|
alternateRefs?: {
|
|
2048
1757
|
href: string;
|
|
@@ -2068,7 +1777,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2068
1777
|
sitemap?: {
|
|
2069
1778
|
exclude?: boolean | undefined;
|
|
2070
1779
|
priority?: number | undefined;
|
|
2071
|
-
changefreq?: "
|
|
1780
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2072
1781
|
lastmod?: string | Date | undefined;
|
|
2073
1782
|
alternateRefs?: {
|
|
2074
1783
|
href: string;
|
|
@@ -2094,7 +1803,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2094
1803
|
sitemap?: {
|
|
2095
1804
|
exclude?: boolean | undefined;
|
|
2096
1805
|
priority?: number | undefined;
|
|
2097
|
-
changefreq?: "
|
|
1806
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2098
1807
|
lastmod?: string | Date | undefined;
|
|
2099
1808
|
alternateRefs?: {
|
|
2100
1809
|
href: string;
|
|
@@ -2123,7 +1832,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2123
1832
|
sitemap?: {
|
|
2124
1833
|
exclude?: boolean | undefined;
|
|
2125
1834
|
priority?: number | undefined;
|
|
2126
|
-
changefreq?: "
|
|
1835
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2127
1836
|
lastmod?: string | Date | undefined;
|
|
2128
1837
|
alternateRefs?: {
|
|
2129
1838
|
href: string;
|
|
@@ -2152,7 +1861,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2152
1861
|
sitemap?: {
|
|
2153
1862
|
exclude?: boolean | undefined;
|
|
2154
1863
|
priority?: number | undefined;
|
|
2155
|
-
changefreq?: "
|
|
1864
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2156
1865
|
lastmod?: string | Date | undefined;
|
|
2157
1866
|
alternateRefs?: {
|
|
2158
1867
|
href: string;
|
|
@@ -2189,7 +1898,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2189
1898
|
sitemap?: {
|
|
2190
1899
|
exclude?: boolean | undefined;
|
|
2191
1900
|
priority?: number | undefined;
|
|
2192
|
-
changefreq?: "
|
|
1901
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2193
1902
|
lastmod?: string | Date | undefined;
|
|
2194
1903
|
alternateRefs?: {
|
|
2195
1904
|
href: string;
|
|
@@ -2226,7 +1935,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2226
1935
|
sitemap?: {
|
|
2227
1936
|
exclude?: boolean | undefined;
|
|
2228
1937
|
priority?: number | undefined;
|
|
2229
|
-
changefreq?: "
|
|
1938
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2230
1939
|
lastmod?: string | Date | undefined;
|
|
2231
1940
|
alternateRefs?: {
|
|
2232
1941
|
href: string;
|
|
@@ -2263,7 +1972,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2263
1972
|
sitemap?: {
|
|
2264
1973
|
exclude?: boolean | undefined;
|
|
2265
1974
|
priority?: number | undefined;
|
|
2266
|
-
changefreq?: "
|
|
1975
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2267
1976
|
lastmod?: string | Date | undefined;
|
|
2268
1977
|
alternateRefs?: {
|
|
2269
1978
|
href: string;
|
|
@@ -2300,7 +2009,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2300
2009
|
sitemap?: {
|
|
2301
2010
|
exclude?: boolean | undefined;
|
|
2302
2011
|
priority?: number | undefined;
|
|
2303
|
-
changefreq?: "
|
|
2012
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2304
2013
|
lastmod?: string | Date | undefined;
|
|
2305
2014
|
alternateRefs?: {
|
|
2306
2015
|
href: string;
|
|
@@ -2339,7 +2048,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2339
2048
|
sitemap?: {
|
|
2340
2049
|
exclude?: boolean | undefined;
|
|
2341
2050
|
priority?: number | undefined;
|
|
2342
|
-
changefreq?: "
|
|
2051
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2343
2052
|
lastmod?: string | Date | undefined;
|
|
2344
2053
|
alternateRefs?: {
|
|
2345
2054
|
href: string;
|
|
@@ -2380,7 +2089,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2380
2089
|
sitemap?: {
|
|
2381
2090
|
exclude?: boolean | undefined;
|
|
2382
2091
|
priority?: number | undefined;
|
|
2383
|
-
changefreq?: "
|
|
2092
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2384
2093
|
lastmod?: string | Date | undefined;
|
|
2385
2094
|
alternateRefs?: {
|
|
2386
2095
|
href: string;
|
|
@@ -2456,7 +2165,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2456
2165
|
base: string;
|
|
2457
2166
|
dir: string;
|
|
2458
2167
|
};
|
|
2459
|
-
pages:
|
|
2168
|
+
pages: {
|
|
2460
2169
|
path: string;
|
|
2461
2170
|
prerender?: {
|
|
2462
2171
|
enabled?: boolean | undefined;
|
|
@@ -2471,7 +2180,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2471
2180
|
sitemap?: {
|
|
2472
2181
|
exclude?: boolean | undefined;
|
|
2473
2182
|
priority?: number | undefined;
|
|
2474
|
-
changefreq?: "
|
|
2183
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2475
2184
|
lastmod?: string | Date | undefined;
|
|
2476
2185
|
alternateRefs?: {
|
|
2477
2186
|
href: string;
|
|
@@ -2499,7 +2208,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2499
2208
|
sitemap?: {
|
|
2500
2209
|
exclude?: boolean | undefined;
|
|
2501
2210
|
priority?: number | undefined;
|
|
2502
|
-
changefreq?: "
|
|
2211
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2503
2212
|
lastmod?: string | Date | undefined;
|
|
2504
2213
|
alternateRefs?: {
|
|
2505
2214
|
href: string;
|
|
@@ -2520,7 +2229,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2520
2229
|
} | undefined;
|
|
2521
2230
|
} | undefined;
|
|
2522
2231
|
fromCrawl?: boolean | undefined;
|
|
2523
|
-
}
|
|
2232
|
+
}[];
|
|
2524
2233
|
target?: import('nitropack/presets').PresetNameInput | undefined;
|
|
2525
2234
|
prerender?: ({
|
|
2526
2235
|
filter?: ((args_0: {
|
|
@@ -2538,7 +2247,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2538
2247
|
sitemap?: {
|
|
2539
2248
|
exclude?: boolean | undefined;
|
|
2540
2249
|
priority?: number | undefined;
|
|
2541
|
-
changefreq?: "
|
|
2250
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2542
2251
|
lastmod?: string | Date | undefined;
|
|
2543
2252
|
alternateRefs?: {
|
|
2544
2253
|
href: string;
|
|
@@ -2566,7 +2275,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2566
2275
|
sitemap?: {
|
|
2567
2276
|
exclude?: boolean | undefined;
|
|
2568
2277
|
priority?: number | undefined;
|
|
2569
|
-
changefreq?: "
|
|
2278
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2570
2279
|
lastmod?: string | Date | undefined;
|
|
2571
2280
|
alternateRefs?: {
|
|
2572
2281
|
href: string;
|
|
@@ -2604,7 +2313,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2604
2313
|
sitemap?: {
|
|
2605
2314
|
exclude?: boolean | undefined;
|
|
2606
2315
|
priority?: number | undefined;
|
|
2607
|
-
changefreq?: "
|
|
2316
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2608
2317
|
lastmod?: string | Date | undefined;
|
|
2609
2318
|
alternateRefs?: {
|
|
2610
2319
|
href: string;
|
|
@@ -2630,42 +2339,8 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2630
2339
|
}, ...args: unknown[]) => any) | undefined;
|
|
2631
2340
|
}) | undefined;
|
|
2632
2341
|
sitemap?: {
|
|
2633
|
-
enabled
|
|
2634
|
-
outputPath
|
|
2635
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
2636
|
-
crawlLinks?: boolean | undefined;
|
|
2637
|
-
retryCount?: number | undefined;
|
|
2638
|
-
retryDelay?: number | undefined;
|
|
2639
|
-
onSuccess?: ((args_0: {
|
|
2640
|
-
page: {
|
|
2641
|
-
path: string;
|
|
2642
|
-
sitemap?: {
|
|
2643
|
-
exclude?: boolean | undefined;
|
|
2644
|
-
priority?: number | undefined;
|
|
2645
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2646
|
-
lastmod?: string | Date | undefined;
|
|
2647
|
-
alternateRefs?: {
|
|
2648
|
-
href: string;
|
|
2649
|
-
hreflang: string;
|
|
2650
|
-
}[] | undefined;
|
|
2651
|
-
images?: {
|
|
2652
|
-
loc: string;
|
|
2653
|
-
caption?: string | undefined;
|
|
2654
|
-
title?: string | undefined;
|
|
2655
|
-
}[] | undefined;
|
|
2656
|
-
news?: {
|
|
2657
|
-
title: string;
|
|
2658
|
-
publication: {
|
|
2659
|
-
name: string;
|
|
2660
|
-
language: string;
|
|
2661
|
-
};
|
|
2662
|
-
publicationDate: string | Date;
|
|
2663
|
-
} | undefined;
|
|
2664
|
-
} | undefined;
|
|
2665
|
-
fromCrawl?: boolean | undefined;
|
|
2666
|
-
};
|
|
2667
|
-
html: string;
|
|
2668
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
2342
|
+
enabled: boolean;
|
|
2343
|
+
outputPath: string;
|
|
2669
2344
|
host?: string | undefined;
|
|
2670
2345
|
} | undefined;
|
|
2671
2346
|
spa?: {
|
|
@@ -2682,7 +2357,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2682
2357
|
sitemap?: {
|
|
2683
2358
|
exclude?: boolean | undefined;
|
|
2684
2359
|
priority?: number | undefined;
|
|
2685
|
-
changefreq?: "
|
|
2360
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2686
2361
|
lastmod?: string | Date | undefined;
|
|
2687
2362
|
alternateRefs?: {
|
|
2688
2363
|
href: string;
|
|
@@ -2729,7 +2404,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2729
2404
|
sitemap?: {
|
|
2730
2405
|
exclude?: boolean | undefined;
|
|
2731
2406
|
priority?: number | undefined;
|
|
2732
|
-
changefreq?: "
|
|
2407
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2733
2408
|
lastmod?: string | Date | undefined;
|
|
2734
2409
|
alternateRefs?: {
|
|
2735
2410
|
href: string;
|
|
@@ -2757,7 +2432,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2757
2432
|
sitemap?: {
|
|
2758
2433
|
exclude?: boolean | undefined;
|
|
2759
2434
|
priority?: number | undefined;
|
|
2760
|
-
changefreq?: "
|
|
2435
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2761
2436
|
lastmod?: string | Date | undefined;
|
|
2762
2437
|
alternateRefs?: {
|
|
2763
2438
|
href: string;
|
|
@@ -2795,7 +2470,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2795
2470
|
sitemap?: {
|
|
2796
2471
|
exclude?: boolean | undefined;
|
|
2797
2472
|
priority?: number | undefined;
|
|
2798
|
-
changefreq?: "
|
|
2473
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2799
2474
|
lastmod?: string | Date | undefined;
|
|
2800
2475
|
alternateRefs?: {
|
|
2801
2476
|
href: string;
|
|
@@ -2867,43 +2542,9 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2867
2542
|
sitemap?: {
|
|
2868
2543
|
enabled?: boolean | undefined;
|
|
2869
2544
|
outputPath?: string | undefined;
|
|
2870
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
2871
|
-
crawlLinks?: boolean | undefined;
|
|
2872
|
-
retryCount?: number | undefined;
|
|
2873
|
-
retryDelay?: number | undefined;
|
|
2874
|
-
onSuccess?: ((args_0: {
|
|
2875
|
-
page: {
|
|
2876
|
-
path: string;
|
|
2877
|
-
sitemap?: {
|
|
2878
|
-
exclude?: boolean | undefined;
|
|
2879
|
-
priority?: number | undefined;
|
|
2880
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2881
|
-
lastmod?: string | Date | undefined;
|
|
2882
|
-
alternateRefs?: {
|
|
2883
|
-
href: string;
|
|
2884
|
-
hreflang: string;
|
|
2885
|
-
}[] | undefined;
|
|
2886
|
-
images?: {
|
|
2887
|
-
loc: string;
|
|
2888
|
-
caption?: string | undefined;
|
|
2889
|
-
title?: string | undefined;
|
|
2890
|
-
}[] | undefined;
|
|
2891
|
-
news?: {
|
|
2892
|
-
title: string;
|
|
2893
|
-
publication: {
|
|
2894
|
-
name: string;
|
|
2895
|
-
language: string;
|
|
2896
|
-
};
|
|
2897
|
-
publicationDate: string | Date;
|
|
2898
|
-
} | undefined;
|
|
2899
|
-
} | undefined;
|
|
2900
|
-
fromCrawl?: boolean | undefined;
|
|
2901
|
-
};
|
|
2902
|
-
html: string;
|
|
2903
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
2904
2545
|
host?: string | undefined;
|
|
2905
2546
|
} | undefined;
|
|
2906
|
-
pages?:
|
|
2547
|
+
pages?: {
|
|
2907
2548
|
path: string;
|
|
2908
2549
|
prerender?: {
|
|
2909
2550
|
enabled?: boolean | undefined;
|
|
@@ -2918,7 +2559,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2918
2559
|
sitemap?: {
|
|
2919
2560
|
exclude?: boolean | undefined;
|
|
2920
2561
|
priority?: number | undefined;
|
|
2921
|
-
changefreq?: "
|
|
2562
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2922
2563
|
lastmod?: string | Date | undefined;
|
|
2923
2564
|
alternateRefs?: {
|
|
2924
2565
|
href: string;
|
|
@@ -2946,7 +2587,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2946
2587
|
sitemap?: {
|
|
2947
2588
|
exclude?: boolean | undefined;
|
|
2948
2589
|
priority?: number | undefined;
|
|
2949
|
-
changefreq?: "
|
|
2590
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2950
2591
|
lastmod?: string | Date | undefined;
|
|
2951
2592
|
alternateRefs?: {
|
|
2952
2593
|
href: string;
|
|
@@ -2967,7 +2608,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2967
2608
|
} | undefined;
|
|
2968
2609
|
} | undefined;
|
|
2969
2610
|
fromCrawl?: boolean | undefined;
|
|
2970
|
-
}
|
|
2611
|
+
}[] | undefined;
|
|
2971
2612
|
spa?: {
|
|
2972
2613
|
prerender?: {
|
|
2973
2614
|
enabled?: boolean | undefined;
|
|
@@ -2982,7 +2623,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2982
2623
|
sitemap?: {
|
|
2983
2624
|
exclude?: boolean | undefined;
|
|
2984
2625
|
priority?: number | undefined;
|
|
2985
|
-
changefreq?: "
|
|
2626
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
2986
2627
|
lastmod?: string | Date | undefined;
|
|
2987
2628
|
alternateRefs?: {
|
|
2988
2629
|
href: string;
|
|
@@ -3145,7 +2786,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
3145
2786
|
base?: string | undefined;
|
|
3146
2787
|
dir?: string | undefined;
|
|
3147
2788
|
}>>>;
|
|
3148
|
-
pages: z.ZodDefault<z.ZodOptional<z.ZodArray<z.
|
|
2789
|
+
pages: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
3149
2790
|
path: z.ZodString;
|
|
3150
2791
|
sitemap: z.ZodOptional<z.ZodObject<{
|
|
3151
2792
|
exclude: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3206,7 +2847,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
3206
2847
|
}, "strip", z.ZodTypeAny, {
|
|
3207
2848
|
exclude?: boolean | undefined;
|
|
3208
2849
|
priority?: number | undefined;
|
|
3209
|
-
changefreq?: "
|
|
2850
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
3210
2851
|
lastmod?: string | Date | undefined;
|
|
3211
2852
|
alternateRefs?: {
|
|
3212
2853
|
href: string;
|
|
@@ -3228,7 +2869,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
3228
2869
|
}, {
|
|
3229
2870
|
exclude?: boolean | undefined;
|
|
3230
2871
|
priority?: number | undefined;
|
|
3231
|
-
changefreq?: "
|
|
2872
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
3232
2873
|
lastmod?: string | Date | undefined;
|
|
3233
2874
|
alternateRefs?: {
|
|
3234
2875
|
href: string;
|
|
@@ -3319,7 +2960,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
3319
2960
|
}, "strip", z.ZodTypeAny, {
|
|
3320
2961
|
exclude?: boolean | undefined;
|
|
3321
2962
|
priority?: number | undefined;
|
|
3322
|
-
changefreq?: "
|
|
2963
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
3323
2964
|
lastmod?: string | Date | undefined;
|
|
3324
2965
|
alternateRefs?: {
|
|
3325
2966
|
href: string;
|
|
@@ -3341,7 +2982,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
3341
2982
|
}, {
|
|
3342
2983
|
exclude?: boolean | undefined;
|
|
3343
2984
|
priority?: number | undefined;
|
|
3344
|
-
changefreq?: "
|
|
2985
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
3345
2986
|
lastmod?: string | Date | undefined;
|
|
3346
2987
|
alternateRefs?: {
|
|
3347
2988
|
href: string;
|
|
@@ -3367,7 +3008,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
3367
3008
|
sitemap?: {
|
|
3368
3009
|
exclude?: boolean | undefined;
|
|
3369
3010
|
priority?: number | undefined;
|
|
3370
|
-
changefreq?: "
|
|
3011
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
3371
3012
|
lastmod?: string | Date | undefined;
|
|
3372
3013
|
alternateRefs?: {
|
|
3373
3014
|
href: string;
|
|
@@ -3393,7 +3034,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
3393
3034
|
sitemap?: {
|
|
3394
3035
|
exclude?: boolean | undefined;
|
|
3395
3036
|
priority?: number | undefined;
|
|
3396
|
-
changefreq?: "
|
|
3037
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
3397
3038
|
lastmod?: string | Date | undefined;
|
|
3398
3039
|
alternateRefs?: {
|
|
3399
3040
|
href: string;
|
|
@@ -3422,7 +3063,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
3422
3063
|
sitemap?: {
|
|
3423
3064
|
exclude?: boolean | undefined;
|
|
3424
3065
|
priority?: number | undefined;
|
|
3425
|
-
changefreq?: "
|
|
3066
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
3426
3067
|
lastmod?: string | Date | undefined;
|
|
3427
3068
|
alternateRefs?: {
|
|
3428
3069
|
href: string;
|
|
@@ -3451,7 +3092,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
3451
3092
|
sitemap?: {
|
|
3452
3093
|
exclude?: boolean | undefined;
|
|
3453
3094
|
priority?: number | undefined;
|
|
3454
|
-
changefreq?: "
|
|
3095
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
3455
3096
|
lastmod?: string | Date | undefined;
|
|
3456
3097
|
alternateRefs?: {
|
|
3457
3098
|
href: string;
|
|
@@ -3488,7 +3129,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
3488
3129
|
sitemap?: {
|
|
3489
3130
|
exclude?: boolean | undefined;
|
|
3490
3131
|
priority?: number | undefined;
|
|
3491
|
-
changefreq?: "
|
|
3132
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
3492
3133
|
lastmod?: string | Date | undefined;
|
|
3493
3134
|
alternateRefs?: {
|
|
3494
3135
|
href: string;
|
|
@@ -3525,7 +3166,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
3525
3166
|
sitemap?: {
|
|
3526
3167
|
exclude?: boolean | undefined;
|
|
3527
3168
|
priority?: number | undefined;
|
|
3528
|
-
changefreq?: "
|
|
3169
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
3529
3170
|
lastmod?: string | Date | undefined;
|
|
3530
3171
|
alternateRefs?: {
|
|
3531
3172
|
href: string;
|
|
@@ -3565,7 +3206,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
3565
3206
|
sitemap?: {
|
|
3566
3207
|
exclude?: boolean | undefined;
|
|
3567
3208
|
priority?: number | undefined;
|
|
3568
|
-
changefreq?: "
|
|
3209
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
3569
3210
|
lastmod?: string | Date | undefined;
|
|
3570
3211
|
alternateRefs?: {
|
|
3571
3212
|
href: string;
|
|
@@ -3593,7 +3234,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
3593
3234
|
sitemap?: {
|
|
3594
3235
|
exclude?: boolean | undefined;
|
|
3595
3236
|
priority?: number | undefined;
|
|
3596
|
-
changefreq?: "
|
|
3237
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
3597
3238
|
lastmod?: string | Date | undefined;
|
|
3598
3239
|
alternateRefs?: {
|
|
3599
3240
|
href: string;
|
|
@@ -3629,7 +3270,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
3629
3270
|
sitemap?: {
|
|
3630
3271
|
exclude?: boolean | undefined;
|
|
3631
3272
|
priority?: number | undefined;
|
|
3632
|
-
changefreq?: "
|
|
3273
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
3633
3274
|
lastmod?: string | Date | undefined;
|
|
3634
3275
|
alternateRefs?: {
|
|
3635
3276
|
href: string;
|
|
@@ -3657,7 +3298,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
3657
3298
|
sitemap?: {
|
|
3658
3299
|
exclude?: boolean | undefined;
|
|
3659
3300
|
priority?: number | undefined;
|
|
3660
|
-
changefreq?: "
|
|
3301
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
3661
3302
|
lastmod?: string | Date | undefined;
|
|
3662
3303
|
alternateRefs?: {
|
|
3663
3304
|
href: string;
|
|
@@ -3676,311 +3317,20 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
3676
3317
|
};
|
|
3677
3318
|
publicationDate: string | Date;
|
|
3678
3319
|
} | undefined;
|
|
3679
|
-
} | undefined;
|
|
3680
|
-
fromCrawl?: boolean | undefined;
|
|
3681
|
-
}
|
|
3682
|
-
sitemap: z.ZodOptional<z.ZodObject<
|
|
3683
|
-
enabled: z.ZodOptional<z.ZodBoolean
|
|
3684
|
-
|
|
3685
|
-
|
|
3686
|
-
|
|
3687
|
-
|
|
3688
|
-
|
|
3689
|
-
onSuccess: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
3690
|
-
page: z.ZodObject<{
|
|
3691
|
-
path: z.ZodString;
|
|
3692
|
-
sitemap: z.ZodOptional<z.ZodObject<{
|
|
3693
|
-
exclude: z.ZodOptional<z.ZodBoolean>;
|
|
3694
|
-
priority: z.ZodOptional<z.ZodNumber>;
|
|
3695
|
-
changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
|
|
3696
|
-
lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
|
|
3697
|
-
alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3698
|
-
href: z.ZodString;
|
|
3699
|
-
hreflang: z.ZodString;
|
|
3700
|
-
}, "strip", z.ZodTypeAny, {
|
|
3701
|
-
href: string;
|
|
3702
|
-
hreflang: string;
|
|
3703
|
-
}, {
|
|
3704
|
-
href: string;
|
|
3705
|
-
hreflang: string;
|
|
3706
|
-
}>, "many">>;
|
|
3707
|
-
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3708
|
-
loc: z.ZodString;
|
|
3709
|
-
caption: z.ZodOptional<z.ZodString>;
|
|
3710
|
-
title: z.ZodOptional<z.ZodString>;
|
|
3711
|
-
}, "strip", z.ZodTypeAny, {
|
|
3712
|
-
loc: string;
|
|
3713
|
-
caption?: string | undefined;
|
|
3714
|
-
title?: string | undefined;
|
|
3715
|
-
}, {
|
|
3716
|
-
loc: string;
|
|
3717
|
-
caption?: string | undefined;
|
|
3718
|
-
title?: string | undefined;
|
|
3719
|
-
}>, "many">>;
|
|
3720
|
-
news: z.ZodOptional<z.ZodObject<{
|
|
3721
|
-
publication: z.ZodObject<{
|
|
3722
|
-
name: z.ZodString;
|
|
3723
|
-
language: z.ZodString;
|
|
3724
|
-
}, "strip", z.ZodTypeAny, {
|
|
3725
|
-
name: string;
|
|
3726
|
-
language: string;
|
|
3727
|
-
}, {
|
|
3728
|
-
name: string;
|
|
3729
|
-
language: string;
|
|
3730
|
-
}>;
|
|
3731
|
-
publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
3732
|
-
title: z.ZodString;
|
|
3733
|
-
}, "strip", z.ZodTypeAny, {
|
|
3734
|
-
title: string;
|
|
3735
|
-
publication: {
|
|
3736
|
-
name: string;
|
|
3737
|
-
language: string;
|
|
3738
|
-
};
|
|
3739
|
-
publicationDate: string | Date;
|
|
3740
|
-
}, {
|
|
3741
|
-
title: string;
|
|
3742
|
-
publication: {
|
|
3743
|
-
name: string;
|
|
3744
|
-
language: string;
|
|
3745
|
-
};
|
|
3746
|
-
publicationDate: string | Date;
|
|
3747
|
-
}>>;
|
|
3748
|
-
}, "strip", z.ZodTypeAny, {
|
|
3749
|
-
exclude?: boolean | undefined;
|
|
3750
|
-
priority?: number | undefined;
|
|
3751
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
3752
|
-
lastmod?: string | Date | undefined;
|
|
3753
|
-
alternateRefs?: {
|
|
3754
|
-
href: string;
|
|
3755
|
-
hreflang: string;
|
|
3756
|
-
}[] | undefined;
|
|
3757
|
-
images?: {
|
|
3758
|
-
loc: string;
|
|
3759
|
-
caption?: string | undefined;
|
|
3760
|
-
title?: string | undefined;
|
|
3761
|
-
}[] | undefined;
|
|
3762
|
-
news?: {
|
|
3763
|
-
title: string;
|
|
3764
|
-
publication: {
|
|
3765
|
-
name: string;
|
|
3766
|
-
language: string;
|
|
3767
|
-
};
|
|
3768
|
-
publicationDate: string | Date;
|
|
3769
|
-
} | undefined;
|
|
3770
|
-
}, {
|
|
3771
|
-
exclude?: boolean | undefined;
|
|
3772
|
-
priority?: number | undefined;
|
|
3773
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
3774
|
-
lastmod?: string | Date | undefined;
|
|
3775
|
-
alternateRefs?: {
|
|
3776
|
-
href: string;
|
|
3777
|
-
hreflang: string;
|
|
3778
|
-
}[] | undefined;
|
|
3779
|
-
images?: {
|
|
3780
|
-
loc: string;
|
|
3781
|
-
caption?: string | undefined;
|
|
3782
|
-
title?: string | undefined;
|
|
3783
|
-
}[] | undefined;
|
|
3784
|
-
news?: {
|
|
3785
|
-
title: string;
|
|
3786
|
-
publication: {
|
|
3787
|
-
name: string;
|
|
3788
|
-
language: string;
|
|
3789
|
-
};
|
|
3790
|
-
publicationDate: string | Date;
|
|
3791
|
-
} | undefined;
|
|
3792
|
-
}>>;
|
|
3793
|
-
fromCrawl: z.ZodOptional<z.ZodBoolean>;
|
|
3794
|
-
}, "strip", z.ZodTypeAny, {
|
|
3795
|
-
path: string;
|
|
3796
|
-
sitemap?: {
|
|
3797
|
-
exclude?: boolean | undefined;
|
|
3798
|
-
priority?: number | undefined;
|
|
3799
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
3800
|
-
lastmod?: string | Date | undefined;
|
|
3801
|
-
alternateRefs?: {
|
|
3802
|
-
href: string;
|
|
3803
|
-
hreflang: string;
|
|
3804
|
-
}[] | undefined;
|
|
3805
|
-
images?: {
|
|
3806
|
-
loc: string;
|
|
3807
|
-
caption?: string | undefined;
|
|
3808
|
-
title?: string | undefined;
|
|
3809
|
-
}[] | undefined;
|
|
3810
|
-
news?: {
|
|
3811
|
-
title: string;
|
|
3812
|
-
publication: {
|
|
3813
|
-
name: string;
|
|
3814
|
-
language: string;
|
|
3815
|
-
};
|
|
3816
|
-
publicationDate: string | Date;
|
|
3817
|
-
} | undefined;
|
|
3818
|
-
} | undefined;
|
|
3819
|
-
fromCrawl?: boolean | undefined;
|
|
3820
|
-
}, {
|
|
3821
|
-
path: string;
|
|
3822
|
-
sitemap?: {
|
|
3823
|
-
exclude?: boolean | undefined;
|
|
3824
|
-
priority?: number | undefined;
|
|
3825
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
3826
|
-
lastmod?: string | Date | undefined;
|
|
3827
|
-
alternateRefs?: {
|
|
3828
|
-
href: string;
|
|
3829
|
-
hreflang: string;
|
|
3830
|
-
}[] | undefined;
|
|
3831
|
-
images?: {
|
|
3832
|
-
loc: string;
|
|
3833
|
-
caption?: string | undefined;
|
|
3834
|
-
title?: string | undefined;
|
|
3835
|
-
}[] | undefined;
|
|
3836
|
-
news?: {
|
|
3837
|
-
title: string;
|
|
3838
|
-
publication: {
|
|
3839
|
-
name: string;
|
|
3840
|
-
language: string;
|
|
3841
|
-
};
|
|
3842
|
-
publicationDate: string | Date;
|
|
3843
|
-
} | undefined;
|
|
3844
|
-
} | undefined;
|
|
3845
|
-
fromCrawl?: boolean | undefined;
|
|
3846
|
-
}>;
|
|
3847
|
-
html: z.ZodString;
|
|
3848
|
-
}, "strip", z.ZodTypeAny, {
|
|
3849
|
-
page: {
|
|
3850
|
-
path: string;
|
|
3851
|
-
sitemap?: {
|
|
3852
|
-
exclude?: boolean | undefined;
|
|
3853
|
-
priority?: number | undefined;
|
|
3854
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
3855
|
-
lastmod?: string | Date | undefined;
|
|
3856
|
-
alternateRefs?: {
|
|
3857
|
-
href: string;
|
|
3858
|
-
hreflang: string;
|
|
3859
|
-
}[] | undefined;
|
|
3860
|
-
images?: {
|
|
3861
|
-
loc: string;
|
|
3862
|
-
caption?: string | undefined;
|
|
3863
|
-
title?: string | undefined;
|
|
3864
|
-
}[] | undefined;
|
|
3865
|
-
news?: {
|
|
3866
|
-
title: string;
|
|
3867
|
-
publication: {
|
|
3868
|
-
name: string;
|
|
3869
|
-
language: string;
|
|
3870
|
-
};
|
|
3871
|
-
publicationDate: string | Date;
|
|
3872
|
-
} | undefined;
|
|
3873
|
-
} | undefined;
|
|
3874
|
-
fromCrawl?: boolean | undefined;
|
|
3875
|
-
};
|
|
3876
|
-
html: string;
|
|
3877
|
-
}, {
|
|
3878
|
-
page: {
|
|
3879
|
-
path: string;
|
|
3880
|
-
sitemap?: {
|
|
3881
|
-
exclude?: boolean | undefined;
|
|
3882
|
-
priority?: number | undefined;
|
|
3883
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
3884
|
-
lastmod?: string | Date | undefined;
|
|
3885
|
-
alternateRefs?: {
|
|
3886
|
-
href: string;
|
|
3887
|
-
hreflang: string;
|
|
3888
|
-
}[] | undefined;
|
|
3889
|
-
images?: {
|
|
3890
|
-
loc: string;
|
|
3891
|
-
caption?: string | undefined;
|
|
3892
|
-
title?: string | undefined;
|
|
3893
|
-
}[] | undefined;
|
|
3894
|
-
news?: {
|
|
3895
|
-
title: string;
|
|
3896
|
-
publication: {
|
|
3897
|
-
name: string;
|
|
3898
|
-
language: string;
|
|
3899
|
-
};
|
|
3900
|
-
publicationDate: string | Date;
|
|
3901
|
-
} | undefined;
|
|
3902
|
-
} | undefined;
|
|
3903
|
-
fromCrawl?: boolean | undefined;
|
|
3904
|
-
};
|
|
3905
|
-
html: string;
|
|
3906
|
-
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
3907
|
-
}, {
|
|
3908
|
-
host: z.ZodOptional<z.ZodString>;
|
|
3909
|
-
}>, "strip", z.ZodTypeAny, {
|
|
3910
|
-
enabled?: boolean | undefined;
|
|
3911
|
-
outputPath?: string | undefined;
|
|
3912
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
3913
|
-
crawlLinks?: boolean | undefined;
|
|
3914
|
-
retryCount?: number | undefined;
|
|
3915
|
-
retryDelay?: number | undefined;
|
|
3916
|
-
onSuccess?: ((args_0: {
|
|
3917
|
-
page: {
|
|
3918
|
-
path: string;
|
|
3919
|
-
sitemap?: {
|
|
3920
|
-
exclude?: boolean | undefined;
|
|
3921
|
-
priority?: number | undefined;
|
|
3922
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
3923
|
-
lastmod?: string | Date | undefined;
|
|
3924
|
-
alternateRefs?: {
|
|
3925
|
-
href: string;
|
|
3926
|
-
hreflang: string;
|
|
3927
|
-
}[] | undefined;
|
|
3928
|
-
images?: {
|
|
3929
|
-
loc: string;
|
|
3930
|
-
caption?: string | undefined;
|
|
3931
|
-
title?: string | undefined;
|
|
3932
|
-
}[] | undefined;
|
|
3933
|
-
news?: {
|
|
3934
|
-
title: string;
|
|
3935
|
-
publication: {
|
|
3936
|
-
name: string;
|
|
3937
|
-
language: string;
|
|
3938
|
-
};
|
|
3939
|
-
publicationDate: string | Date;
|
|
3940
|
-
} | undefined;
|
|
3941
|
-
} | undefined;
|
|
3942
|
-
fromCrawl?: boolean | undefined;
|
|
3943
|
-
};
|
|
3944
|
-
html: string;
|
|
3945
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
3320
|
+
} | undefined;
|
|
3321
|
+
fromCrawl?: boolean | undefined;
|
|
3322
|
+
}>, "many">>>;
|
|
3323
|
+
sitemap: z.ZodOptional<z.ZodObject<{
|
|
3324
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
3325
|
+
host: z.ZodOptional<z.ZodString>;
|
|
3326
|
+
outputPath: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3327
|
+
}, "strip", z.ZodTypeAny, {
|
|
3328
|
+
enabled: boolean;
|
|
3329
|
+
outputPath: string;
|
|
3946
3330
|
host?: string | undefined;
|
|
3947
3331
|
}, {
|
|
3948
3332
|
enabled?: boolean | undefined;
|
|
3949
3333
|
outputPath?: string | undefined;
|
|
3950
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
3951
|
-
crawlLinks?: boolean | undefined;
|
|
3952
|
-
retryCount?: number | undefined;
|
|
3953
|
-
retryDelay?: number | undefined;
|
|
3954
|
-
onSuccess?: ((args_0: {
|
|
3955
|
-
page: {
|
|
3956
|
-
path: string;
|
|
3957
|
-
sitemap?: {
|
|
3958
|
-
exclude?: boolean | undefined;
|
|
3959
|
-
priority?: number | undefined;
|
|
3960
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
3961
|
-
lastmod?: string | Date | undefined;
|
|
3962
|
-
alternateRefs?: {
|
|
3963
|
-
href: string;
|
|
3964
|
-
hreflang: string;
|
|
3965
|
-
}[] | undefined;
|
|
3966
|
-
images?: {
|
|
3967
|
-
loc: string;
|
|
3968
|
-
caption?: string | undefined;
|
|
3969
|
-
title?: string | undefined;
|
|
3970
|
-
}[] | undefined;
|
|
3971
|
-
news?: {
|
|
3972
|
-
title: string;
|
|
3973
|
-
publication: {
|
|
3974
|
-
name: string;
|
|
3975
|
-
language: string;
|
|
3976
|
-
};
|
|
3977
|
-
publicationDate: string | Date;
|
|
3978
|
-
} | undefined;
|
|
3979
|
-
} | undefined;
|
|
3980
|
-
fromCrawl?: boolean | undefined;
|
|
3981
|
-
};
|
|
3982
|
-
html: string;
|
|
3983
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
3984
3334
|
host?: string | undefined;
|
|
3985
3335
|
}>>;
|
|
3986
3336
|
prerender: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
@@ -4047,7 +3397,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4047
3397
|
}, "strip", z.ZodTypeAny, {
|
|
4048
3398
|
exclude?: boolean | undefined;
|
|
4049
3399
|
priority?: number | undefined;
|
|
4050
|
-
changefreq?: "
|
|
3400
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
4051
3401
|
lastmod?: string | Date | undefined;
|
|
4052
3402
|
alternateRefs?: {
|
|
4053
3403
|
href: string;
|
|
@@ -4069,7 +3419,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4069
3419
|
}, {
|
|
4070
3420
|
exclude?: boolean | undefined;
|
|
4071
3421
|
priority?: number | undefined;
|
|
4072
|
-
changefreq?: "
|
|
3422
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
4073
3423
|
lastmod?: string | Date | undefined;
|
|
4074
3424
|
alternateRefs?: {
|
|
4075
3425
|
href: string;
|
|
@@ -4160,7 +3510,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4160
3510
|
}, "strip", z.ZodTypeAny, {
|
|
4161
3511
|
exclude?: boolean | undefined;
|
|
4162
3512
|
priority?: number | undefined;
|
|
4163
|
-
changefreq?: "
|
|
3513
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
4164
3514
|
lastmod?: string | Date | undefined;
|
|
4165
3515
|
alternateRefs?: {
|
|
4166
3516
|
href: string;
|
|
@@ -4182,7 +3532,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4182
3532
|
}, {
|
|
4183
3533
|
exclude?: boolean | undefined;
|
|
4184
3534
|
priority?: number | undefined;
|
|
4185
|
-
changefreq?: "
|
|
3535
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
4186
3536
|
lastmod?: string | Date | undefined;
|
|
4187
3537
|
alternateRefs?: {
|
|
4188
3538
|
href: string;
|
|
@@ -4208,7 +3558,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4208
3558
|
sitemap?: {
|
|
4209
3559
|
exclude?: boolean | undefined;
|
|
4210
3560
|
priority?: number | undefined;
|
|
4211
|
-
changefreq?: "
|
|
3561
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
4212
3562
|
lastmod?: string | Date | undefined;
|
|
4213
3563
|
alternateRefs?: {
|
|
4214
3564
|
href: string;
|
|
@@ -4234,7 +3584,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4234
3584
|
sitemap?: {
|
|
4235
3585
|
exclude?: boolean | undefined;
|
|
4236
3586
|
priority?: number | undefined;
|
|
4237
|
-
changefreq?: "
|
|
3587
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
4238
3588
|
lastmod?: string | Date | undefined;
|
|
4239
3589
|
alternateRefs?: {
|
|
4240
3590
|
href: string;
|
|
@@ -4263,7 +3613,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4263
3613
|
sitemap?: {
|
|
4264
3614
|
exclude?: boolean | undefined;
|
|
4265
3615
|
priority?: number | undefined;
|
|
4266
|
-
changefreq?: "
|
|
3616
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
4267
3617
|
lastmod?: string | Date | undefined;
|
|
4268
3618
|
alternateRefs?: {
|
|
4269
3619
|
href: string;
|
|
@@ -4292,7 +3642,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4292
3642
|
sitemap?: {
|
|
4293
3643
|
exclude?: boolean | undefined;
|
|
4294
3644
|
priority?: number | undefined;
|
|
4295
|
-
changefreq?: "
|
|
3645
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
4296
3646
|
lastmod?: string | Date | undefined;
|
|
4297
3647
|
alternateRefs?: {
|
|
4298
3648
|
href: string;
|
|
@@ -4329,7 +3679,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4329
3679
|
sitemap?: {
|
|
4330
3680
|
exclude?: boolean | undefined;
|
|
4331
3681
|
priority?: number | undefined;
|
|
4332
|
-
changefreq?: "
|
|
3682
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
4333
3683
|
lastmod?: string | Date | undefined;
|
|
4334
3684
|
alternateRefs?: {
|
|
4335
3685
|
href: string;
|
|
@@ -4366,7 +3716,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4366
3716
|
sitemap?: {
|
|
4367
3717
|
exclude?: boolean | undefined;
|
|
4368
3718
|
priority?: number | undefined;
|
|
4369
|
-
changefreq?: "
|
|
3719
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
4370
3720
|
lastmod?: string | Date | undefined;
|
|
4371
3721
|
alternateRefs?: {
|
|
4372
3722
|
href: string;
|
|
@@ -4406,7 +3756,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4406
3756
|
sitemap?: {
|
|
4407
3757
|
exclude?: boolean | undefined;
|
|
4408
3758
|
priority?: number | undefined;
|
|
4409
|
-
changefreq?: "
|
|
3759
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
4410
3760
|
lastmod?: string | Date | undefined;
|
|
4411
3761
|
alternateRefs?: {
|
|
4412
3762
|
href: string;
|
|
@@ -4434,7 +3784,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4434
3784
|
sitemap?: {
|
|
4435
3785
|
exclude?: boolean | undefined;
|
|
4436
3786
|
priority?: number | undefined;
|
|
4437
|
-
changefreq?: "
|
|
3787
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
4438
3788
|
lastmod?: string | Date | undefined;
|
|
4439
3789
|
alternateRefs?: {
|
|
4440
3790
|
href: string;
|
|
@@ -4470,7 +3820,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4470
3820
|
sitemap?: {
|
|
4471
3821
|
exclude?: boolean | undefined;
|
|
4472
3822
|
priority?: number | undefined;
|
|
4473
|
-
changefreq?: "
|
|
3823
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
4474
3824
|
lastmod?: string | Date | undefined;
|
|
4475
3825
|
alternateRefs?: {
|
|
4476
3826
|
href: string;
|
|
@@ -4498,7 +3848,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4498
3848
|
sitemap?: {
|
|
4499
3849
|
exclude?: boolean | undefined;
|
|
4500
3850
|
priority?: number | undefined;
|
|
4501
|
-
changefreq?: "
|
|
3851
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
4502
3852
|
lastmod?: string | Date | undefined;
|
|
4503
3853
|
alternateRefs?: {
|
|
4504
3854
|
href: string;
|
|
@@ -4537,7 +3887,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4537
3887
|
sitemap?: {
|
|
4538
3888
|
exclude?: boolean | undefined;
|
|
4539
3889
|
priority?: number | undefined;
|
|
4540
|
-
changefreq?: "
|
|
3890
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
4541
3891
|
lastmod?: string | Date | undefined;
|
|
4542
3892
|
alternateRefs?: {
|
|
4543
3893
|
href: string;
|
|
@@ -4565,7 +3915,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4565
3915
|
sitemap?: {
|
|
4566
3916
|
exclude?: boolean | undefined;
|
|
4567
3917
|
priority?: number | undefined;
|
|
4568
|
-
changefreq?: "
|
|
3918
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
4569
3919
|
lastmod?: string | Date | undefined;
|
|
4570
3920
|
alternateRefs?: {
|
|
4571
3921
|
href: string;
|
|
@@ -4606,7 +3956,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4606
3956
|
sitemap?: {
|
|
4607
3957
|
exclude?: boolean | undefined;
|
|
4608
3958
|
priority?: number | undefined;
|
|
4609
|
-
changefreq?: "
|
|
3959
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
4610
3960
|
lastmod?: string | Date | undefined;
|
|
4611
3961
|
alternateRefs?: {
|
|
4612
3962
|
href: string;
|
|
@@ -4634,7 +3984,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4634
3984
|
sitemap?: {
|
|
4635
3985
|
exclude?: boolean | undefined;
|
|
4636
3986
|
priority?: number | undefined;
|
|
4637
|
-
changefreq?: "
|
|
3987
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
4638
3988
|
lastmod?: string | Date | undefined;
|
|
4639
3989
|
alternateRefs?: {
|
|
4640
3990
|
href: string;
|
|
@@ -4728,7 +4078,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4728
4078
|
}, "strip", z.ZodTypeAny, {
|
|
4729
4079
|
exclude?: boolean | undefined;
|
|
4730
4080
|
priority?: number | undefined;
|
|
4731
|
-
changefreq?: "
|
|
4081
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
4732
4082
|
lastmod?: string | Date | undefined;
|
|
4733
4083
|
alternateRefs?: {
|
|
4734
4084
|
href: string;
|
|
@@ -4750,7 +4100,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4750
4100
|
}, {
|
|
4751
4101
|
exclude?: boolean | undefined;
|
|
4752
4102
|
priority?: number | undefined;
|
|
4753
|
-
changefreq?: "
|
|
4103
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
4754
4104
|
lastmod?: string | Date | undefined;
|
|
4755
4105
|
alternateRefs?: {
|
|
4756
4106
|
href: string;
|
|
@@ -4776,7 +4126,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4776
4126
|
sitemap?: {
|
|
4777
4127
|
exclude?: boolean | undefined;
|
|
4778
4128
|
priority?: number | undefined;
|
|
4779
|
-
changefreq?: "
|
|
4129
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
4780
4130
|
lastmod?: string | Date | undefined;
|
|
4781
4131
|
alternateRefs?: {
|
|
4782
4132
|
href: string;
|
|
@@ -4802,7 +4152,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4802
4152
|
sitemap?: {
|
|
4803
4153
|
exclude?: boolean | undefined;
|
|
4804
4154
|
priority?: number | undefined;
|
|
4805
|
-
changefreq?: "
|
|
4155
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
4806
4156
|
lastmod?: string | Date | undefined;
|
|
4807
4157
|
alternateRefs?: {
|
|
4808
4158
|
href: string;
|
|
@@ -4831,7 +4181,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4831
4181
|
sitemap?: {
|
|
4832
4182
|
exclude?: boolean | undefined;
|
|
4833
4183
|
priority?: number | undefined;
|
|
4834
|
-
changefreq?: "
|
|
4184
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
4835
4185
|
lastmod?: string | Date | undefined;
|
|
4836
4186
|
alternateRefs?: {
|
|
4837
4187
|
href: string;
|
|
@@ -4860,7 +4210,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4860
4210
|
sitemap?: {
|
|
4861
4211
|
exclude?: boolean | undefined;
|
|
4862
4212
|
priority?: number | undefined;
|
|
4863
|
-
changefreq?: "
|
|
4213
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
4864
4214
|
lastmod?: string | Date | undefined;
|
|
4865
4215
|
alternateRefs?: {
|
|
4866
4216
|
href: string;
|
|
@@ -4897,7 +4247,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4897
4247
|
sitemap?: {
|
|
4898
4248
|
exclude?: boolean | undefined;
|
|
4899
4249
|
priority?: number | undefined;
|
|
4900
|
-
changefreq?: "
|
|
4250
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
4901
4251
|
lastmod?: string | Date | undefined;
|
|
4902
4252
|
alternateRefs?: {
|
|
4903
4253
|
href: string;
|
|
@@ -4934,7 +4284,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4934
4284
|
sitemap?: {
|
|
4935
4285
|
exclude?: boolean | undefined;
|
|
4936
4286
|
priority?: number | undefined;
|
|
4937
|
-
changefreq?: "
|
|
4287
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
4938
4288
|
lastmod?: string | Date | undefined;
|
|
4939
4289
|
alternateRefs?: {
|
|
4940
4290
|
href: string;
|
|
@@ -5031,7 +4381,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5031
4381
|
}, "strip", z.ZodTypeAny, {
|
|
5032
4382
|
exclude?: boolean | undefined;
|
|
5033
4383
|
priority?: number | undefined;
|
|
5034
|
-
changefreq?: "
|
|
4384
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
5035
4385
|
lastmod?: string | Date | undefined;
|
|
5036
4386
|
alternateRefs?: {
|
|
5037
4387
|
href: string;
|
|
@@ -5053,7 +4403,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5053
4403
|
}, {
|
|
5054
4404
|
exclude?: boolean | undefined;
|
|
5055
4405
|
priority?: number | undefined;
|
|
5056
|
-
changefreq?: "
|
|
4406
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
5057
4407
|
lastmod?: string | Date | undefined;
|
|
5058
4408
|
alternateRefs?: {
|
|
5059
4409
|
href: string;
|
|
@@ -5079,7 +4429,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5079
4429
|
sitemap?: {
|
|
5080
4430
|
exclude?: boolean | undefined;
|
|
5081
4431
|
priority?: number | undefined;
|
|
5082
|
-
changefreq?: "
|
|
4432
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
5083
4433
|
lastmod?: string | Date | undefined;
|
|
5084
4434
|
alternateRefs?: {
|
|
5085
4435
|
href: string;
|
|
@@ -5105,7 +4455,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5105
4455
|
sitemap?: {
|
|
5106
4456
|
exclude?: boolean | undefined;
|
|
5107
4457
|
priority?: number | undefined;
|
|
5108
|
-
changefreq?: "
|
|
4458
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
5109
4459
|
lastmod?: string | Date | undefined;
|
|
5110
4460
|
alternateRefs?: {
|
|
5111
4461
|
href: string;
|
|
@@ -5134,7 +4484,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5134
4484
|
sitemap?: {
|
|
5135
4485
|
exclude?: boolean | undefined;
|
|
5136
4486
|
priority?: number | undefined;
|
|
5137
|
-
changefreq?: "
|
|
4487
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
5138
4488
|
lastmod?: string | Date | undefined;
|
|
5139
4489
|
alternateRefs?: {
|
|
5140
4490
|
href: string;
|
|
@@ -5163,7 +4513,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5163
4513
|
sitemap?: {
|
|
5164
4514
|
exclude?: boolean | undefined;
|
|
5165
4515
|
priority?: number | undefined;
|
|
5166
|
-
changefreq?: "
|
|
4516
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
5167
4517
|
lastmod?: string | Date | undefined;
|
|
5168
4518
|
alternateRefs?: {
|
|
5169
4519
|
href: string;
|
|
@@ -5200,7 +4550,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5200
4550
|
sitemap?: {
|
|
5201
4551
|
exclude?: boolean | undefined;
|
|
5202
4552
|
priority?: number | undefined;
|
|
5203
|
-
changefreq?: "
|
|
4553
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
5204
4554
|
lastmod?: string | Date | undefined;
|
|
5205
4555
|
alternateRefs?: {
|
|
5206
4556
|
href: string;
|
|
@@ -5237,7 +4587,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5237
4587
|
sitemap?: {
|
|
5238
4588
|
exclude?: boolean | undefined;
|
|
5239
4589
|
priority?: number | undefined;
|
|
5240
|
-
changefreq?: "
|
|
4590
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
5241
4591
|
lastmod?: string | Date | undefined;
|
|
5242
4592
|
alternateRefs?: {
|
|
5243
4593
|
href: string;
|
|
@@ -5274,7 +4624,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5274
4624
|
sitemap?: {
|
|
5275
4625
|
exclude?: boolean | undefined;
|
|
5276
4626
|
priority?: number | undefined;
|
|
5277
|
-
changefreq?: "
|
|
4627
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
5278
4628
|
lastmod?: string | Date | undefined;
|
|
5279
4629
|
alternateRefs?: {
|
|
5280
4630
|
href: string;
|
|
@@ -5311,7 +4661,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5311
4661
|
sitemap?: {
|
|
5312
4662
|
exclude?: boolean | undefined;
|
|
5313
4663
|
priority?: number | undefined;
|
|
5314
|
-
changefreq?: "
|
|
4664
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
5315
4665
|
lastmod?: string | Date | undefined;
|
|
5316
4666
|
alternateRefs?: {
|
|
5317
4667
|
href: string;
|
|
@@ -5350,7 +4700,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5350
4700
|
sitemap?: {
|
|
5351
4701
|
exclude?: boolean | undefined;
|
|
5352
4702
|
priority?: number | undefined;
|
|
5353
|
-
changefreq?: "
|
|
4703
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
5354
4704
|
lastmod?: string | Date | undefined;
|
|
5355
4705
|
alternateRefs?: {
|
|
5356
4706
|
href: string;
|
|
@@ -5391,7 +4741,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5391
4741
|
sitemap?: {
|
|
5392
4742
|
exclude?: boolean | undefined;
|
|
5393
4743
|
priority?: number | undefined;
|
|
5394
|
-
changefreq?: "
|
|
4744
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
5395
4745
|
lastmod?: string | Date | undefined;
|
|
5396
4746
|
alternateRefs?: {
|
|
5397
4747
|
href: string;
|
|
@@ -5467,7 +4817,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5467
4817
|
base: string;
|
|
5468
4818
|
dir: string;
|
|
5469
4819
|
};
|
|
5470
|
-
pages:
|
|
4820
|
+
pages: {
|
|
5471
4821
|
path: string;
|
|
5472
4822
|
prerender?: {
|
|
5473
4823
|
enabled?: boolean | undefined;
|
|
@@ -5482,7 +4832,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5482
4832
|
sitemap?: {
|
|
5483
4833
|
exclude?: boolean | undefined;
|
|
5484
4834
|
priority?: number | undefined;
|
|
5485
|
-
changefreq?: "
|
|
4835
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
5486
4836
|
lastmod?: string | Date | undefined;
|
|
5487
4837
|
alternateRefs?: {
|
|
5488
4838
|
href: string;
|
|
@@ -5510,7 +4860,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5510
4860
|
sitemap?: {
|
|
5511
4861
|
exclude?: boolean | undefined;
|
|
5512
4862
|
priority?: number | undefined;
|
|
5513
|
-
changefreq?: "
|
|
4863
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
5514
4864
|
lastmod?: string | Date | undefined;
|
|
5515
4865
|
alternateRefs?: {
|
|
5516
4866
|
href: string;
|
|
@@ -5531,7 +4881,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5531
4881
|
} | undefined;
|
|
5532
4882
|
} | undefined;
|
|
5533
4883
|
fromCrawl?: boolean | undefined;
|
|
5534
|
-
}
|
|
4884
|
+
}[];
|
|
5535
4885
|
target?: import('nitropack/presets').PresetNameInput | undefined;
|
|
5536
4886
|
prerender?: ({
|
|
5537
4887
|
filter?: ((args_0: {
|
|
@@ -5549,7 +4899,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5549
4899
|
sitemap?: {
|
|
5550
4900
|
exclude?: boolean | undefined;
|
|
5551
4901
|
priority?: number | undefined;
|
|
5552
|
-
changefreq?: "
|
|
4902
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
5553
4903
|
lastmod?: string | Date | undefined;
|
|
5554
4904
|
alternateRefs?: {
|
|
5555
4905
|
href: string;
|
|
@@ -5577,7 +4927,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5577
4927
|
sitemap?: {
|
|
5578
4928
|
exclude?: boolean | undefined;
|
|
5579
4929
|
priority?: number | undefined;
|
|
5580
|
-
changefreq?: "
|
|
4930
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
5581
4931
|
lastmod?: string | Date | undefined;
|
|
5582
4932
|
alternateRefs?: {
|
|
5583
4933
|
href: string;
|
|
@@ -5615,7 +4965,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5615
4965
|
sitemap?: {
|
|
5616
4966
|
exclude?: boolean | undefined;
|
|
5617
4967
|
priority?: number | undefined;
|
|
5618
|
-
changefreq?: "
|
|
4968
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
5619
4969
|
lastmod?: string | Date | undefined;
|
|
5620
4970
|
alternateRefs?: {
|
|
5621
4971
|
href: string;
|
|
@@ -5641,42 +4991,8 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5641
4991
|
}, ...args: unknown[]) => any) | undefined;
|
|
5642
4992
|
}) | undefined;
|
|
5643
4993
|
sitemap?: {
|
|
5644
|
-
enabled
|
|
5645
|
-
outputPath
|
|
5646
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
5647
|
-
crawlLinks?: boolean | undefined;
|
|
5648
|
-
retryCount?: number | undefined;
|
|
5649
|
-
retryDelay?: number | undefined;
|
|
5650
|
-
onSuccess?: ((args_0: {
|
|
5651
|
-
page: {
|
|
5652
|
-
path: string;
|
|
5653
|
-
sitemap?: {
|
|
5654
|
-
exclude?: boolean | undefined;
|
|
5655
|
-
priority?: number | undefined;
|
|
5656
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
5657
|
-
lastmod?: string | Date | undefined;
|
|
5658
|
-
alternateRefs?: {
|
|
5659
|
-
href: string;
|
|
5660
|
-
hreflang: string;
|
|
5661
|
-
}[] | undefined;
|
|
5662
|
-
images?: {
|
|
5663
|
-
loc: string;
|
|
5664
|
-
caption?: string | undefined;
|
|
5665
|
-
title?: string | undefined;
|
|
5666
|
-
}[] | undefined;
|
|
5667
|
-
news?: {
|
|
5668
|
-
title: string;
|
|
5669
|
-
publication: {
|
|
5670
|
-
name: string;
|
|
5671
|
-
language: string;
|
|
5672
|
-
};
|
|
5673
|
-
publicationDate: string | Date;
|
|
5674
|
-
} | undefined;
|
|
5675
|
-
} | undefined;
|
|
5676
|
-
fromCrawl?: boolean | undefined;
|
|
5677
|
-
};
|
|
5678
|
-
html: string;
|
|
5679
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
4994
|
+
enabled: boolean;
|
|
4995
|
+
outputPath: string;
|
|
5680
4996
|
host?: string | undefined;
|
|
5681
4997
|
} | undefined;
|
|
5682
4998
|
spa?: {
|
|
@@ -5693,7 +5009,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5693
5009
|
sitemap?: {
|
|
5694
5010
|
exclude?: boolean | undefined;
|
|
5695
5011
|
priority?: number | undefined;
|
|
5696
|
-
changefreq?: "
|
|
5012
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
5697
5013
|
lastmod?: string | Date | undefined;
|
|
5698
5014
|
alternateRefs?: {
|
|
5699
5015
|
href: string;
|
|
@@ -5740,7 +5056,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5740
5056
|
sitemap?: {
|
|
5741
5057
|
exclude?: boolean | undefined;
|
|
5742
5058
|
priority?: number | undefined;
|
|
5743
|
-
changefreq?: "
|
|
5059
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
5744
5060
|
lastmod?: string | Date | undefined;
|
|
5745
5061
|
alternateRefs?: {
|
|
5746
5062
|
href: string;
|
|
@@ -5768,7 +5084,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5768
5084
|
sitemap?: {
|
|
5769
5085
|
exclude?: boolean | undefined;
|
|
5770
5086
|
priority?: number | undefined;
|
|
5771
|
-
changefreq?: "
|
|
5087
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
5772
5088
|
lastmod?: string | Date | undefined;
|
|
5773
5089
|
alternateRefs?: {
|
|
5774
5090
|
href: string;
|
|
@@ -5806,7 +5122,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5806
5122
|
sitemap?: {
|
|
5807
5123
|
exclude?: boolean | undefined;
|
|
5808
5124
|
priority?: number | undefined;
|
|
5809
|
-
changefreq?: "
|
|
5125
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
5810
5126
|
lastmod?: string | Date | undefined;
|
|
5811
5127
|
alternateRefs?: {
|
|
5812
5128
|
href: string;
|
|
@@ -5878,43 +5194,9 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5878
5194
|
sitemap?: {
|
|
5879
5195
|
enabled?: boolean | undefined;
|
|
5880
5196
|
outputPath?: string | undefined;
|
|
5881
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
5882
|
-
crawlLinks?: boolean | undefined;
|
|
5883
|
-
retryCount?: number | undefined;
|
|
5884
|
-
retryDelay?: number | undefined;
|
|
5885
|
-
onSuccess?: ((args_0: {
|
|
5886
|
-
page: {
|
|
5887
|
-
path: string;
|
|
5888
|
-
sitemap?: {
|
|
5889
|
-
exclude?: boolean | undefined;
|
|
5890
|
-
priority?: number | undefined;
|
|
5891
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
5892
|
-
lastmod?: string | Date | undefined;
|
|
5893
|
-
alternateRefs?: {
|
|
5894
|
-
href: string;
|
|
5895
|
-
hreflang: string;
|
|
5896
|
-
}[] | undefined;
|
|
5897
|
-
images?: {
|
|
5898
|
-
loc: string;
|
|
5899
|
-
caption?: string | undefined;
|
|
5900
|
-
title?: string | undefined;
|
|
5901
|
-
}[] | undefined;
|
|
5902
|
-
news?: {
|
|
5903
|
-
title: string;
|
|
5904
|
-
publication: {
|
|
5905
|
-
name: string;
|
|
5906
|
-
language: string;
|
|
5907
|
-
};
|
|
5908
|
-
publicationDate: string | Date;
|
|
5909
|
-
} | undefined;
|
|
5910
|
-
} | undefined;
|
|
5911
|
-
fromCrawl?: boolean | undefined;
|
|
5912
|
-
};
|
|
5913
|
-
html: string;
|
|
5914
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
5915
5197
|
host?: string | undefined;
|
|
5916
5198
|
} | undefined;
|
|
5917
|
-
pages?:
|
|
5199
|
+
pages?: {
|
|
5918
5200
|
path: string;
|
|
5919
5201
|
prerender?: {
|
|
5920
5202
|
enabled?: boolean | undefined;
|
|
@@ -5929,7 +5211,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5929
5211
|
sitemap?: {
|
|
5930
5212
|
exclude?: boolean | undefined;
|
|
5931
5213
|
priority?: number | undefined;
|
|
5932
|
-
changefreq?: "
|
|
5214
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
5933
5215
|
lastmod?: string | Date | undefined;
|
|
5934
5216
|
alternateRefs?: {
|
|
5935
5217
|
href: string;
|
|
@@ -5957,7 +5239,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5957
5239
|
sitemap?: {
|
|
5958
5240
|
exclude?: boolean | undefined;
|
|
5959
5241
|
priority?: number | undefined;
|
|
5960
|
-
changefreq?: "
|
|
5242
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
5961
5243
|
lastmod?: string | Date | undefined;
|
|
5962
5244
|
alternateRefs?: {
|
|
5963
5245
|
href: string;
|
|
@@ -5978,7 +5260,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5978
5260
|
} | undefined;
|
|
5979
5261
|
} | undefined;
|
|
5980
5262
|
fromCrawl?: boolean | undefined;
|
|
5981
|
-
}
|
|
5263
|
+
}[] | undefined;
|
|
5982
5264
|
spa?: {
|
|
5983
5265
|
prerender?: {
|
|
5984
5266
|
enabled?: boolean | undefined;
|
|
@@ -5993,7 +5275,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5993
5275
|
sitemap?: {
|
|
5994
5276
|
exclude?: boolean | undefined;
|
|
5995
5277
|
priority?: number | undefined;
|
|
5996
|
-
changefreq?: "
|
|
5278
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
5997
5279
|
lastmod?: string | Date | undefined;
|
|
5998
5280
|
alternateRefs?: {
|
|
5999
5281
|
href: string;
|
|
@@ -6070,7 +5352,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
6070
5352
|
base: string;
|
|
6071
5353
|
dir: string;
|
|
6072
5354
|
};
|
|
6073
|
-
pages:
|
|
5355
|
+
pages: {
|
|
6074
5356
|
path: string;
|
|
6075
5357
|
prerender?: {
|
|
6076
5358
|
enabled?: boolean | undefined;
|
|
@@ -6085,7 +5367,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
6085
5367
|
sitemap?: {
|
|
6086
5368
|
exclude?: boolean | undefined;
|
|
6087
5369
|
priority?: number | undefined;
|
|
6088
|
-
changefreq?: "
|
|
5370
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
6089
5371
|
lastmod?: string | Date | undefined;
|
|
6090
5372
|
alternateRefs?: {
|
|
6091
5373
|
href: string;
|
|
@@ -6113,7 +5395,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
6113
5395
|
sitemap?: {
|
|
6114
5396
|
exclude?: boolean | undefined;
|
|
6115
5397
|
priority?: number | undefined;
|
|
6116
|
-
changefreq?: "
|
|
5398
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
6117
5399
|
lastmod?: string | Date | undefined;
|
|
6118
5400
|
alternateRefs?: {
|
|
6119
5401
|
href: string;
|
|
@@ -6134,7 +5416,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
6134
5416
|
} | undefined;
|
|
6135
5417
|
} | undefined;
|
|
6136
5418
|
fromCrawl?: boolean | undefined;
|
|
6137
|
-
}
|
|
5419
|
+
}[];
|
|
6138
5420
|
target?: import('nitropack/presets').PresetNameInput | undefined;
|
|
6139
5421
|
prerender?: ({
|
|
6140
5422
|
filter?: ((args_0: {
|
|
@@ -6152,7 +5434,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
6152
5434
|
sitemap?: {
|
|
6153
5435
|
exclude?: boolean | undefined;
|
|
6154
5436
|
priority?: number | undefined;
|
|
6155
|
-
changefreq?: "
|
|
5437
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
6156
5438
|
lastmod?: string | Date | undefined;
|
|
6157
5439
|
alternateRefs?: {
|
|
6158
5440
|
href: string;
|
|
@@ -6180,7 +5462,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
6180
5462
|
sitemap?: {
|
|
6181
5463
|
exclude?: boolean | undefined;
|
|
6182
5464
|
priority?: number | undefined;
|
|
6183
|
-
changefreq?: "
|
|
5465
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
6184
5466
|
lastmod?: string | Date | undefined;
|
|
6185
5467
|
alternateRefs?: {
|
|
6186
5468
|
href: string;
|
|
@@ -6218,7 +5500,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
6218
5500
|
sitemap?: {
|
|
6219
5501
|
exclude?: boolean | undefined;
|
|
6220
5502
|
priority?: number | undefined;
|
|
6221
|
-
changefreq?: "
|
|
5503
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
6222
5504
|
lastmod?: string | Date | undefined;
|
|
6223
5505
|
alternateRefs?: {
|
|
6224
5506
|
href: string;
|
|
@@ -6244,42 +5526,8 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
6244
5526
|
}, ...args: unknown[]) => any) | undefined;
|
|
6245
5527
|
}) | undefined;
|
|
6246
5528
|
sitemap?: {
|
|
6247
|
-
enabled
|
|
6248
|
-
outputPath
|
|
6249
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
6250
|
-
crawlLinks?: boolean | undefined;
|
|
6251
|
-
retryCount?: number | undefined;
|
|
6252
|
-
retryDelay?: number | undefined;
|
|
6253
|
-
onSuccess?: ((args_0: {
|
|
6254
|
-
page: {
|
|
6255
|
-
path: string;
|
|
6256
|
-
sitemap?: {
|
|
6257
|
-
exclude?: boolean | undefined;
|
|
6258
|
-
priority?: number | undefined;
|
|
6259
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
6260
|
-
lastmod?: string | Date | undefined;
|
|
6261
|
-
alternateRefs?: {
|
|
6262
|
-
href: string;
|
|
6263
|
-
hreflang: string;
|
|
6264
|
-
}[] | undefined;
|
|
6265
|
-
images?: {
|
|
6266
|
-
loc: string;
|
|
6267
|
-
caption?: string | undefined;
|
|
6268
|
-
title?: string | undefined;
|
|
6269
|
-
}[] | undefined;
|
|
6270
|
-
news?: {
|
|
6271
|
-
title: string;
|
|
6272
|
-
publication: {
|
|
6273
|
-
name: string;
|
|
6274
|
-
language: string;
|
|
6275
|
-
};
|
|
6276
|
-
publicationDate: string | Date;
|
|
6277
|
-
} | undefined;
|
|
6278
|
-
} | undefined;
|
|
6279
|
-
fromCrawl?: boolean | undefined;
|
|
6280
|
-
};
|
|
6281
|
-
html: string;
|
|
6282
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
5529
|
+
enabled: boolean;
|
|
5530
|
+
outputPath: string;
|
|
6283
5531
|
host?: string | undefined;
|
|
6284
5532
|
} | undefined;
|
|
6285
5533
|
spa?: {
|
|
@@ -6296,7 +5544,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
6296
5544
|
sitemap?: {
|
|
6297
5545
|
exclude?: boolean | undefined;
|
|
6298
5546
|
priority?: number | undefined;
|
|
6299
|
-
changefreq?: "
|
|
5547
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
6300
5548
|
lastmod?: string | Date | undefined;
|
|
6301
5549
|
alternateRefs?: {
|
|
6302
5550
|
href: string;
|
|
@@ -6460,7 +5708,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
6460
5708
|
base?: string | undefined;
|
|
6461
5709
|
dir?: string | undefined;
|
|
6462
5710
|
}>>>;
|
|
6463
|
-
pages: z.ZodDefault<z.ZodOptional<z.ZodArray<z.
|
|
5711
|
+
pages: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
6464
5712
|
path: z.ZodString;
|
|
6465
5713
|
sitemap: z.ZodOptional<z.ZodObject<{
|
|
6466
5714
|
exclude: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6521,7 +5769,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
6521
5769
|
}, "strip", z.ZodTypeAny, {
|
|
6522
5770
|
exclude?: boolean | undefined;
|
|
6523
5771
|
priority?: number | undefined;
|
|
6524
|
-
changefreq?: "
|
|
5772
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
6525
5773
|
lastmod?: string | Date | undefined;
|
|
6526
5774
|
alternateRefs?: {
|
|
6527
5775
|
href: string;
|
|
@@ -6543,7 +5791,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
6543
5791
|
}, {
|
|
6544
5792
|
exclude?: boolean | undefined;
|
|
6545
5793
|
priority?: number | undefined;
|
|
6546
|
-
changefreq?: "
|
|
5794
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
6547
5795
|
lastmod?: string | Date | undefined;
|
|
6548
5796
|
alternateRefs?: {
|
|
6549
5797
|
href: string;
|
|
@@ -6634,7 +5882,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
6634
5882
|
}, "strip", z.ZodTypeAny, {
|
|
6635
5883
|
exclude?: boolean | undefined;
|
|
6636
5884
|
priority?: number | undefined;
|
|
6637
|
-
changefreq?: "
|
|
5885
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
6638
5886
|
lastmod?: string | Date | undefined;
|
|
6639
5887
|
alternateRefs?: {
|
|
6640
5888
|
href: string;
|
|
@@ -6656,7 +5904,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
6656
5904
|
}, {
|
|
6657
5905
|
exclude?: boolean | undefined;
|
|
6658
5906
|
priority?: number | undefined;
|
|
6659
|
-
changefreq?: "
|
|
5907
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
6660
5908
|
lastmod?: string | Date | undefined;
|
|
6661
5909
|
alternateRefs?: {
|
|
6662
5910
|
href: string;
|
|
@@ -6682,7 +5930,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
6682
5930
|
sitemap?: {
|
|
6683
5931
|
exclude?: boolean | undefined;
|
|
6684
5932
|
priority?: number | undefined;
|
|
6685
|
-
changefreq?: "
|
|
5933
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
6686
5934
|
lastmod?: string | Date | undefined;
|
|
6687
5935
|
alternateRefs?: {
|
|
6688
5936
|
href: string;
|
|
@@ -6708,7 +5956,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
6708
5956
|
sitemap?: {
|
|
6709
5957
|
exclude?: boolean | undefined;
|
|
6710
5958
|
priority?: number | undefined;
|
|
6711
|
-
changefreq?: "
|
|
5959
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
6712
5960
|
lastmod?: string | Date | undefined;
|
|
6713
5961
|
alternateRefs?: {
|
|
6714
5962
|
href: string;
|
|
@@ -6737,7 +5985,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
6737
5985
|
sitemap?: {
|
|
6738
5986
|
exclude?: boolean | undefined;
|
|
6739
5987
|
priority?: number | undefined;
|
|
6740
|
-
changefreq?: "
|
|
5988
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
6741
5989
|
lastmod?: string | Date | undefined;
|
|
6742
5990
|
alternateRefs?: {
|
|
6743
5991
|
href: string;
|
|
@@ -6766,7 +6014,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
6766
6014
|
sitemap?: {
|
|
6767
6015
|
exclude?: boolean | undefined;
|
|
6768
6016
|
priority?: number | undefined;
|
|
6769
|
-
changefreq?: "
|
|
6017
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
6770
6018
|
lastmod?: string | Date | undefined;
|
|
6771
6019
|
alternateRefs?: {
|
|
6772
6020
|
href: string;
|
|
@@ -6803,84 +6051,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
6803
6051
|
sitemap?: {
|
|
6804
6052
|
exclude?: boolean | undefined;
|
|
6805
6053
|
priority?: number | undefined;
|
|
6806
|
-
changefreq?: "
|
|
6807
|
-
lastmod?: string | Date | undefined;
|
|
6808
|
-
alternateRefs?: {
|
|
6809
|
-
href: string;
|
|
6810
|
-
hreflang: string;
|
|
6811
|
-
}[] | undefined;
|
|
6812
|
-
images?: {
|
|
6813
|
-
loc: string;
|
|
6814
|
-
caption?: string | undefined;
|
|
6815
|
-
title?: string | undefined;
|
|
6816
|
-
}[] | undefined;
|
|
6817
|
-
news?: {
|
|
6818
|
-
title: string;
|
|
6819
|
-
publication: {
|
|
6820
|
-
name: string;
|
|
6821
|
-
language: string;
|
|
6822
|
-
};
|
|
6823
|
-
publicationDate: string | Date;
|
|
6824
|
-
} | undefined;
|
|
6825
|
-
} | undefined;
|
|
6826
|
-
fromCrawl?: boolean | undefined;
|
|
6827
|
-
};
|
|
6828
|
-
html: string;
|
|
6829
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
6830
|
-
}, {
|
|
6831
|
-
enabled?: boolean | undefined;
|
|
6832
|
-
outputPath?: string | undefined;
|
|
6833
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
6834
|
-
crawlLinks?: boolean | undefined;
|
|
6835
|
-
retryCount?: number | undefined;
|
|
6836
|
-
retryDelay?: number | undefined;
|
|
6837
|
-
onSuccess?: ((args_0: {
|
|
6838
|
-
page: {
|
|
6839
|
-
path: string;
|
|
6840
|
-
sitemap?: {
|
|
6841
|
-
exclude?: boolean | undefined;
|
|
6842
|
-
priority?: number | undefined;
|
|
6843
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
6844
|
-
lastmod?: string | Date | undefined;
|
|
6845
|
-
alternateRefs?: {
|
|
6846
|
-
href: string;
|
|
6847
|
-
hreflang: string;
|
|
6848
|
-
}[] | undefined;
|
|
6849
|
-
images?: {
|
|
6850
|
-
loc: string;
|
|
6851
|
-
caption?: string | undefined;
|
|
6852
|
-
title?: string | undefined;
|
|
6853
|
-
}[] | undefined;
|
|
6854
|
-
news?: {
|
|
6855
|
-
title: string;
|
|
6856
|
-
publication: {
|
|
6857
|
-
name: string;
|
|
6858
|
-
language: string;
|
|
6859
|
-
};
|
|
6860
|
-
publicationDate: string | Date;
|
|
6861
|
-
} | undefined;
|
|
6862
|
-
} | undefined;
|
|
6863
|
-
fromCrawl?: boolean | undefined;
|
|
6864
|
-
};
|
|
6865
|
-
html: string;
|
|
6866
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
6867
|
-
}>>;
|
|
6868
|
-
}>, "strip", z.ZodTypeAny, {
|
|
6869
|
-
path: string;
|
|
6870
|
-
prerender?: {
|
|
6871
|
-
enabled?: boolean | undefined;
|
|
6872
|
-
outputPath?: string | undefined;
|
|
6873
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
6874
|
-
crawlLinks?: boolean | undefined;
|
|
6875
|
-
retryCount?: number | undefined;
|
|
6876
|
-
retryDelay?: number | undefined;
|
|
6877
|
-
onSuccess?: ((args_0: {
|
|
6878
|
-
page: {
|
|
6879
|
-
path: string;
|
|
6880
|
-
sitemap?: {
|
|
6881
|
-
exclude?: boolean | undefined;
|
|
6882
|
-
priority?: number | undefined;
|
|
6883
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
6054
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
6884
6055
|
lastmod?: string | Date | undefined;
|
|
6885
6056
|
alternateRefs?: {
|
|
6886
6057
|
href: string;
|
|
@@ -6899,39 +6070,12 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
6899
6070
|
};
|
|
6900
6071
|
publicationDate: string | Date;
|
|
6901
6072
|
} | undefined;
|
|
6902
|
-
} | undefined;
|
|
6903
|
-
fromCrawl?: boolean | undefined;
|
|
6904
|
-
};
|
|
6905
|
-
html: string;
|
|
6906
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
6907
|
-
}
|
|
6908
|
-
sitemap?: {
|
|
6909
|
-
exclude?: boolean | undefined;
|
|
6910
|
-
priority?: number | undefined;
|
|
6911
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
6912
|
-
lastmod?: string | Date | undefined;
|
|
6913
|
-
alternateRefs?: {
|
|
6914
|
-
href: string;
|
|
6915
|
-
hreflang: string;
|
|
6916
|
-
}[] | undefined;
|
|
6917
|
-
images?: {
|
|
6918
|
-
loc: string;
|
|
6919
|
-
caption?: string | undefined;
|
|
6920
|
-
title?: string | undefined;
|
|
6921
|
-
}[] | undefined;
|
|
6922
|
-
news?: {
|
|
6923
|
-
title: string;
|
|
6924
|
-
publication: {
|
|
6925
|
-
name: string;
|
|
6926
|
-
language: string;
|
|
6927
|
-
};
|
|
6928
|
-
publicationDate: string | Date;
|
|
6929
|
-
} | undefined;
|
|
6930
|
-
} | undefined;
|
|
6931
|
-
fromCrawl?: boolean | undefined;
|
|
6932
|
-
}, {
|
|
6933
|
-
path: string;
|
|
6934
|
-
prerender?: {
|
|
6073
|
+
} | undefined;
|
|
6074
|
+
fromCrawl?: boolean | undefined;
|
|
6075
|
+
};
|
|
6076
|
+
html: string;
|
|
6077
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
6078
|
+
}, {
|
|
6935
6079
|
enabled?: boolean | undefined;
|
|
6936
6080
|
outputPath?: string | undefined;
|
|
6937
6081
|
autoSubfolderIndex?: boolean | undefined;
|
|
@@ -6944,7 +6088,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
6944
6088
|
sitemap?: {
|
|
6945
6089
|
exclude?: boolean | undefined;
|
|
6946
6090
|
priority?: number | undefined;
|
|
6947
|
-
changefreq?: "
|
|
6091
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
6948
6092
|
lastmod?: string | Date | undefined;
|
|
6949
6093
|
alternateRefs?: {
|
|
6950
6094
|
href: string;
|
|
@@ -6968,334 +6112,147 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
6968
6112
|
};
|
|
6969
6113
|
html: string;
|
|
6970
6114
|
}, ...args: unknown[]) => any) | undefined;
|
|
6971
|
-
}
|
|
6972
|
-
|
|
6973
|
-
|
|
6974
|
-
|
|
6975
|
-
|
|
6976
|
-
|
|
6977
|
-
|
|
6978
|
-
|
|
6979
|
-
|
|
6980
|
-
|
|
6981
|
-
|
|
6982
|
-
|
|
6983
|
-
|
|
6984
|
-
|
|
6985
|
-
|
|
6986
|
-
|
|
6987
|
-
|
|
6988
|
-
|
|
6989
|
-
|
|
6990
|
-
|
|
6991
|
-
|
|
6992
|
-
|
|
6993
|
-
|
|
6994
|
-
|
|
6995
|
-
|
|
6996
|
-
|
|
6997
|
-
|
|
6998
|
-
|
|
6999
|
-
|
|
7000
|
-
|
|
7001
|
-
|
|
7002
|
-
|
|
7003
|
-
|
|
7004
|
-
|
|
7005
|
-
|
|
7006
|
-
path: z.ZodString;
|
|
7007
|
-
sitemap: z.ZodOptional<z.ZodObject<{
|
|
7008
|
-
exclude: z.ZodOptional<z.ZodBoolean>;
|
|
7009
|
-
priority: z.ZodOptional<z.ZodNumber>;
|
|
7010
|
-
changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
|
|
7011
|
-
lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
|
|
7012
|
-
alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7013
|
-
href: z.ZodString;
|
|
7014
|
-
hreflang: z.ZodString;
|
|
7015
|
-
}, "strip", z.ZodTypeAny, {
|
|
7016
|
-
href: string;
|
|
7017
|
-
hreflang: string;
|
|
7018
|
-
}, {
|
|
7019
|
-
href: string;
|
|
7020
|
-
hreflang: string;
|
|
7021
|
-
}>, "many">>;
|
|
7022
|
-
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7023
|
-
loc: z.ZodString;
|
|
7024
|
-
caption: z.ZodOptional<z.ZodString>;
|
|
7025
|
-
title: z.ZodOptional<z.ZodString>;
|
|
7026
|
-
}, "strip", z.ZodTypeAny, {
|
|
7027
|
-
loc: string;
|
|
7028
|
-
caption?: string | undefined;
|
|
7029
|
-
title?: string | undefined;
|
|
7030
|
-
}, {
|
|
7031
|
-
loc: string;
|
|
7032
|
-
caption?: string | undefined;
|
|
7033
|
-
title?: string | undefined;
|
|
7034
|
-
}>, "many">>;
|
|
7035
|
-
news: z.ZodOptional<z.ZodObject<{
|
|
7036
|
-
publication: z.ZodObject<{
|
|
7037
|
-
name: z.ZodString;
|
|
7038
|
-
language: z.ZodString;
|
|
7039
|
-
}, "strip", z.ZodTypeAny, {
|
|
7040
|
-
name: string;
|
|
7041
|
-
language: string;
|
|
7042
|
-
}, {
|
|
7043
|
-
name: string;
|
|
7044
|
-
language: string;
|
|
7045
|
-
}>;
|
|
7046
|
-
publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
7047
|
-
title: z.ZodString;
|
|
7048
|
-
}, "strip", z.ZodTypeAny, {
|
|
7049
|
-
title: string;
|
|
7050
|
-
publication: {
|
|
7051
|
-
name: string;
|
|
7052
|
-
language: string;
|
|
7053
|
-
};
|
|
7054
|
-
publicationDate: string | Date;
|
|
7055
|
-
}, {
|
|
7056
|
-
title: string;
|
|
7057
|
-
publication: {
|
|
7058
|
-
name: string;
|
|
7059
|
-
language: string;
|
|
7060
|
-
};
|
|
7061
|
-
publicationDate: string | Date;
|
|
7062
|
-
}>>;
|
|
7063
|
-
}, "strip", z.ZodTypeAny, {
|
|
7064
|
-
exclude?: boolean | undefined;
|
|
7065
|
-
priority?: number | undefined;
|
|
7066
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
7067
|
-
lastmod?: string | Date | undefined;
|
|
7068
|
-
alternateRefs?: {
|
|
7069
|
-
href: string;
|
|
7070
|
-
hreflang: string;
|
|
7071
|
-
}[] | undefined;
|
|
7072
|
-
images?: {
|
|
7073
|
-
loc: string;
|
|
7074
|
-
caption?: string | undefined;
|
|
7075
|
-
title?: string | undefined;
|
|
7076
|
-
}[] | undefined;
|
|
7077
|
-
news?: {
|
|
7078
|
-
title: string;
|
|
7079
|
-
publication: {
|
|
7080
|
-
name: string;
|
|
7081
|
-
language: string;
|
|
7082
|
-
};
|
|
7083
|
-
publicationDate: string | Date;
|
|
7084
|
-
} | undefined;
|
|
7085
|
-
}, {
|
|
7086
|
-
exclude?: boolean | undefined;
|
|
7087
|
-
priority?: number | undefined;
|
|
7088
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
7089
|
-
lastmod?: string | Date | undefined;
|
|
7090
|
-
alternateRefs?: {
|
|
7091
|
-
href: string;
|
|
7092
|
-
hreflang: string;
|
|
7093
|
-
}[] | undefined;
|
|
7094
|
-
images?: {
|
|
7095
|
-
loc: string;
|
|
7096
|
-
caption?: string | undefined;
|
|
7097
|
-
title?: string | undefined;
|
|
7098
|
-
}[] | undefined;
|
|
7099
|
-
news?: {
|
|
7100
|
-
title: string;
|
|
7101
|
-
publication: {
|
|
7102
|
-
name: string;
|
|
7103
|
-
language: string;
|
|
7104
|
-
};
|
|
7105
|
-
publicationDate: string | Date;
|
|
7106
|
-
} | undefined;
|
|
7107
|
-
}>>;
|
|
7108
|
-
fromCrawl: z.ZodOptional<z.ZodBoolean>;
|
|
7109
|
-
}, "strip", z.ZodTypeAny, {
|
|
7110
|
-
path: string;
|
|
7111
|
-
sitemap?: {
|
|
7112
|
-
exclude?: boolean | undefined;
|
|
7113
|
-
priority?: number | undefined;
|
|
7114
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
7115
|
-
lastmod?: string | Date | undefined;
|
|
7116
|
-
alternateRefs?: {
|
|
7117
|
-
href: string;
|
|
7118
|
-
hreflang: string;
|
|
7119
|
-
}[] | undefined;
|
|
7120
|
-
images?: {
|
|
7121
|
-
loc: string;
|
|
7122
|
-
caption?: string | undefined;
|
|
7123
|
-
title?: string | undefined;
|
|
7124
|
-
}[] | undefined;
|
|
7125
|
-
news?: {
|
|
7126
|
-
title: string;
|
|
7127
|
-
publication: {
|
|
7128
|
-
name: string;
|
|
7129
|
-
language: string;
|
|
7130
|
-
};
|
|
7131
|
-
publicationDate: string | Date;
|
|
7132
|
-
} | undefined;
|
|
7133
|
-
} | undefined;
|
|
7134
|
-
fromCrawl?: boolean | undefined;
|
|
7135
|
-
}, {
|
|
7136
|
-
path: string;
|
|
7137
|
-
sitemap?: {
|
|
7138
|
-
exclude?: boolean | undefined;
|
|
7139
|
-
priority?: number | undefined;
|
|
7140
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
7141
|
-
lastmod?: string | Date | undefined;
|
|
7142
|
-
alternateRefs?: {
|
|
7143
|
-
href: string;
|
|
7144
|
-
hreflang: string;
|
|
7145
|
-
}[] | undefined;
|
|
7146
|
-
images?: {
|
|
7147
|
-
loc: string;
|
|
7148
|
-
caption?: string | undefined;
|
|
7149
|
-
title?: string | undefined;
|
|
7150
|
-
}[] | undefined;
|
|
7151
|
-
news?: {
|
|
7152
|
-
title: string;
|
|
7153
|
-
publication: {
|
|
7154
|
-
name: string;
|
|
7155
|
-
language: string;
|
|
7156
|
-
};
|
|
7157
|
-
publicationDate: string | Date;
|
|
7158
|
-
} | undefined;
|
|
7159
|
-
} | undefined;
|
|
7160
|
-
fromCrawl?: boolean | undefined;
|
|
7161
|
-
}>;
|
|
7162
|
-
html: z.ZodString;
|
|
7163
|
-
}, "strip", z.ZodTypeAny, {
|
|
7164
|
-
page: {
|
|
7165
|
-
path: string;
|
|
7166
|
-
sitemap?: {
|
|
7167
|
-
exclude?: boolean | undefined;
|
|
7168
|
-
priority?: number | undefined;
|
|
7169
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
7170
|
-
lastmod?: string | Date | undefined;
|
|
7171
|
-
alternateRefs?: {
|
|
7172
|
-
href: string;
|
|
7173
|
-
hreflang: string;
|
|
7174
|
-
}[] | undefined;
|
|
7175
|
-
images?: {
|
|
7176
|
-
loc: string;
|
|
7177
|
-
caption?: string | undefined;
|
|
7178
|
-
title?: string | undefined;
|
|
7179
|
-
}[] | undefined;
|
|
7180
|
-
news?: {
|
|
7181
|
-
title: string;
|
|
7182
|
-
publication: {
|
|
7183
|
-
name: string;
|
|
7184
|
-
language: string;
|
|
7185
|
-
};
|
|
7186
|
-
publicationDate: string | Date;
|
|
7187
|
-
} | undefined;
|
|
7188
|
-
} | undefined;
|
|
7189
|
-
fromCrawl?: boolean | undefined;
|
|
7190
|
-
};
|
|
7191
|
-
html: string;
|
|
7192
|
-
}, {
|
|
7193
|
-
page: {
|
|
7194
|
-
path: string;
|
|
7195
|
-
sitemap?: {
|
|
7196
|
-
exclude?: boolean | undefined;
|
|
7197
|
-
priority?: number | undefined;
|
|
7198
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
7199
|
-
lastmod?: string | Date | undefined;
|
|
7200
|
-
alternateRefs?: {
|
|
7201
|
-
href: string;
|
|
7202
|
-
hreflang: string;
|
|
7203
|
-
}[] | undefined;
|
|
7204
|
-
images?: {
|
|
7205
|
-
loc: string;
|
|
7206
|
-
caption?: string | undefined;
|
|
7207
|
-
title?: string | undefined;
|
|
7208
|
-
}[] | undefined;
|
|
7209
|
-
news?: {
|
|
7210
|
-
title: string;
|
|
7211
|
-
publication: {
|
|
7212
|
-
name: string;
|
|
7213
|
-
language: string;
|
|
7214
|
-
};
|
|
7215
|
-
publicationDate: string | Date;
|
|
6115
|
+
}>>;
|
|
6116
|
+
}>, "strip", z.ZodTypeAny, {
|
|
6117
|
+
path: string;
|
|
6118
|
+
prerender?: {
|
|
6119
|
+
enabled?: boolean | undefined;
|
|
6120
|
+
outputPath?: string | undefined;
|
|
6121
|
+
autoSubfolderIndex?: boolean | undefined;
|
|
6122
|
+
crawlLinks?: boolean | undefined;
|
|
6123
|
+
retryCount?: number | undefined;
|
|
6124
|
+
retryDelay?: number | undefined;
|
|
6125
|
+
onSuccess?: ((args_0: {
|
|
6126
|
+
page: {
|
|
6127
|
+
path: string;
|
|
6128
|
+
sitemap?: {
|
|
6129
|
+
exclude?: boolean | undefined;
|
|
6130
|
+
priority?: number | undefined;
|
|
6131
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
6132
|
+
lastmod?: string | Date | undefined;
|
|
6133
|
+
alternateRefs?: {
|
|
6134
|
+
href: string;
|
|
6135
|
+
hreflang: string;
|
|
6136
|
+
}[] | undefined;
|
|
6137
|
+
images?: {
|
|
6138
|
+
loc: string;
|
|
6139
|
+
caption?: string | undefined;
|
|
6140
|
+
title?: string | undefined;
|
|
6141
|
+
}[] | undefined;
|
|
6142
|
+
news?: {
|
|
6143
|
+
title: string;
|
|
6144
|
+
publication: {
|
|
6145
|
+
name: string;
|
|
6146
|
+
language: string;
|
|
6147
|
+
};
|
|
6148
|
+
publicationDate: string | Date;
|
|
6149
|
+
} | undefined;
|
|
7216
6150
|
} | undefined;
|
|
7217
|
-
|
|
7218
|
-
|
|
7219
|
-
|
|
7220
|
-
|
|
7221
|
-
}
|
|
6151
|
+
fromCrawl?: boolean | undefined;
|
|
6152
|
+
};
|
|
6153
|
+
html: string;
|
|
6154
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
6155
|
+
} | undefined;
|
|
6156
|
+
sitemap?: {
|
|
6157
|
+
exclude?: boolean | undefined;
|
|
6158
|
+
priority?: number | undefined;
|
|
6159
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
6160
|
+
lastmod?: string | Date | undefined;
|
|
6161
|
+
alternateRefs?: {
|
|
6162
|
+
href: string;
|
|
6163
|
+
hreflang: string;
|
|
6164
|
+
}[] | undefined;
|
|
6165
|
+
images?: {
|
|
6166
|
+
loc: string;
|
|
6167
|
+
caption?: string | undefined;
|
|
6168
|
+
title?: string | undefined;
|
|
6169
|
+
}[] | undefined;
|
|
6170
|
+
news?: {
|
|
6171
|
+
title: string;
|
|
6172
|
+
publication: {
|
|
6173
|
+
name: string;
|
|
6174
|
+
language: string;
|
|
6175
|
+
};
|
|
6176
|
+
publicationDate: string | Date;
|
|
6177
|
+
} | undefined;
|
|
6178
|
+
} | undefined;
|
|
6179
|
+
fromCrawl?: boolean | undefined;
|
|
7222
6180
|
}, {
|
|
7223
|
-
|
|
7224
|
-
|
|
7225
|
-
|
|
7226
|
-
|
|
7227
|
-
|
|
7228
|
-
|
|
7229
|
-
|
|
7230
|
-
|
|
7231
|
-
|
|
7232
|
-
|
|
7233
|
-
|
|
7234
|
-
|
|
7235
|
-
|
|
7236
|
-
|
|
7237
|
-
|
|
7238
|
-
|
|
7239
|
-
|
|
7240
|
-
|
|
7241
|
-
|
|
7242
|
-
|
|
7243
|
-
|
|
7244
|
-
|
|
7245
|
-
|
|
7246
|
-
|
|
7247
|
-
|
|
7248
|
-
|
|
7249
|
-
|
|
7250
|
-
|
|
7251
|
-
|
|
7252
|
-
|
|
7253
|
-
|
|
7254
|
-
|
|
6181
|
+
path: string;
|
|
6182
|
+
prerender?: {
|
|
6183
|
+
enabled?: boolean | undefined;
|
|
6184
|
+
outputPath?: string | undefined;
|
|
6185
|
+
autoSubfolderIndex?: boolean | undefined;
|
|
6186
|
+
crawlLinks?: boolean | undefined;
|
|
6187
|
+
retryCount?: number | undefined;
|
|
6188
|
+
retryDelay?: number | undefined;
|
|
6189
|
+
onSuccess?: ((args_0: {
|
|
6190
|
+
page: {
|
|
6191
|
+
path: string;
|
|
6192
|
+
sitemap?: {
|
|
6193
|
+
exclude?: boolean | undefined;
|
|
6194
|
+
priority?: number | undefined;
|
|
6195
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
6196
|
+
lastmod?: string | Date | undefined;
|
|
6197
|
+
alternateRefs?: {
|
|
6198
|
+
href: string;
|
|
6199
|
+
hreflang: string;
|
|
6200
|
+
}[] | undefined;
|
|
6201
|
+
images?: {
|
|
6202
|
+
loc: string;
|
|
6203
|
+
caption?: string | undefined;
|
|
6204
|
+
title?: string | undefined;
|
|
6205
|
+
}[] | undefined;
|
|
6206
|
+
news?: {
|
|
6207
|
+
title: string;
|
|
6208
|
+
publication: {
|
|
6209
|
+
name: string;
|
|
6210
|
+
language: string;
|
|
6211
|
+
};
|
|
6212
|
+
publicationDate: string | Date;
|
|
6213
|
+
} | undefined;
|
|
7255
6214
|
} | undefined;
|
|
7256
|
-
|
|
7257
|
-
|
|
7258
|
-
|
|
7259
|
-
|
|
7260
|
-
}
|
|
6215
|
+
fromCrawl?: boolean | undefined;
|
|
6216
|
+
};
|
|
6217
|
+
html: string;
|
|
6218
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
6219
|
+
} | undefined;
|
|
6220
|
+
sitemap?: {
|
|
6221
|
+
exclude?: boolean | undefined;
|
|
6222
|
+
priority?: number | undefined;
|
|
6223
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
6224
|
+
lastmod?: string | Date | undefined;
|
|
6225
|
+
alternateRefs?: {
|
|
6226
|
+
href: string;
|
|
6227
|
+
hreflang: string;
|
|
6228
|
+
}[] | undefined;
|
|
6229
|
+
images?: {
|
|
6230
|
+
loc: string;
|
|
6231
|
+
caption?: string | undefined;
|
|
6232
|
+
title?: string | undefined;
|
|
6233
|
+
}[] | undefined;
|
|
6234
|
+
news?: {
|
|
6235
|
+
title: string;
|
|
6236
|
+
publication: {
|
|
6237
|
+
name: string;
|
|
6238
|
+
language: string;
|
|
6239
|
+
};
|
|
6240
|
+
publicationDate: string | Date;
|
|
6241
|
+
} | undefined;
|
|
6242
|
+
} | undefined;
|
|
6243
|
+
fromCrawl?: boolean | undefined;
|
|
6244
|
+
}>, "many">>>;
|
|
6245
|
+
sitemap: z.ZodOptional<z.ZodObject<{
|
|
6246
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
6247
|
+
host: z.ZodOptional<z.ZodString>;
|
|
6248
|
+
outputPath: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
6249
|
+
}, "strip", z.ZodTypeAny, {
|
|
6250
|
+
enabled: boolean;
|
|
6251
|
+
outputPath: string;
|
|
7261
6252
|
host?: string | undefined;
|
|
7262
6253
|
}, {
|
|
7263
6254
|
enabled?: boolean | undefined;
|
|
7264
6255
|
outputPath?: string | undefined;
|
|
7265
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
7266
|
-
crawlLinks?: boolean | undefined;
|
|
7267
|
-
retryCount?: number | undefined;
|
|
7268
|
-
retryDelay?: number | undefined;
|
|
7269
|
-
onSuccess?: ((args_0: {
|
|
7270
|
-
page: {
|
|
7271
|
-
path: string;
|
|
7272
|
-
sitemap?: {
|
|
7273
|
-
exclude?: boolean | undefined;
|
|
7274
|
-
priority?: number | undefined;
|
|
7275
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
7276
|
-
lastmod?: string | Date | undefined;
|
|
7277
|
-
alternateRefs?: {
|
|
7278
|
-
href: string;
|
|
7279
|
-
hreflang: string;
|
|
7280
|
-
}[] | undefined;
|
|
7281
|
-
images?: {
|
|
7282
|
-
loc: string;
|
|
7283
|
-
caption?: string | undefined;
|
|
7284
|
-
title?: string | undefined;
|
|
7285
|
-
}[] | undefined;
|
|
7286
|
-
news?: {
|
|
7287
|
-
title: string;
|
|
7288
|
-
publication: {
|
|
7289
|
-
name: string;
|
|
7290
|
-
language: string;
|
|
7291
|
-
};
|
|
7292
|
-
publicationDate: string | Date;
|
|
7293
|
-
} | undefined;
|
|
7294
|
-
} | undefined;
|
|
7295
|
-
fromCrawl?: boolean | undefined;
|
|
7296
|
-
};
|
|
7297
|
-
html: string;
|
|
7298
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
7299
6256
|
host?: string | undefined;
|
|
7300
6257
|
}>>;
|
|
7301
6258
|
prerender: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
@@ -7362,7 +6319,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7362
6319
|
}, "strip", z.ZodTypeAny, {
|
|
7363
6320
|
exclude?: boolean | undefined;
|
|
7364
6321
|
priority?: number | undefined;
|
|
7365
|
-
changefreq?: "
|
|
6322
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
7366
6323
|
lastmod?: string | Date | undefined;
|
|
7367
6324
|
alternateRefs?: {
|
|
7368
6325
|
href: string;
|
|
@@ -7384,7 +6341,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7384
6341
|
}, {
|
|
7385
6342
|
exclude?: boolean | undefined;
|
|
7386
6343
|
priority?: number | undefined;
|
|
7387
|
-
changefreq?: "
|
|
6344
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
7388
6345
|
lastmod?: string | Date | undefined;
|
|
7389
6346
|
alternateRefs?: {
|
|
7390
6347
|
href: string;
|
|
@@ -7475,7 +6432,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7475
6432
|
}, "strip", z.ZodTypeAny, {
|
|
7476
6433
|
exclude?: boolean | undefined;
|
|
7477
6434
|
priority?: number | undefined;
|
|
7478
|
-
changefreq?: "
|
|
6435
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
7479
6436
|
lastmod?: string | Date | undefined;
|
|
7480
6437
|
alternateRefs?: {
|
|
7481
6438
|
href: string;
|
|
@@ -7497,7 +6454,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7497
6454
|
}, {
|
|
7498
6455
|
exclude?: boolean | undefined;
|
|
7499
6456
|
priority?: number | undefined;
|
|
7500
|
-
changefreq?: "
|
|
6457
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
7501
6458
|
lastmod?: string | Date | undefined;
|
|
7502
6459
|
alternateRefs?: {
|
|
7503
6460
|
href: string;
|
|
@@ -7523,7 +6480,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7523
6480
|
sitemap?: {
|
|
7524
6481
|
exclude?: boolean | undefined;
|
|
7525
6482
|
priority?: number | undefined;
|
|
7526
|
-
changefreq?: "
|
|
6483
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
7527
6484
|
lastmod?: string | Date | undefined;
|
|
7528
6485
|
alternateRefs?: {
|
|
7529
6486
|
href: string;
|
|
@@ -7549,7 +6506,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7549
6506
|
sitemap?: {
|
|
7550
6507
|
exclude?: boolean | undefined;
|
|
7551
6508
|
priority?: number | undefined;
|
|
7552
|
-
changefreq?: "
|
|
6509
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
7553
6510
|
lastmod?: string | Date | undefined;
|
|
7554
6511
|
alternateRefs?: {
|
|
7555
6512
|
href: string;
|
|
@@ -7578,7 +6535,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7578
6535
|
sitemap?: {
|
|
7579
6536
|
exclude?: boolean | undefined;
|
|
7580
6537
|
priority?: number | undefined;
|
|
7581
|
-
changefreq?: "
|
|
6538
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
7582
6539
|
lastmod?: string | Date | undefined;
|
|
7583
6540
|
alternateRefs?: {
|
|
7584
6541
|
href: string;
|
|
@@ -7607,7 +6564,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7607
6564
|
sitemap?: {
|
|
7608
6565
|
exclude?: boolean | undefined;
|
|
7609
6566
|
priority?: number | undefined;
|
|
7610
|
-
changefreq?: "
|
|
6567
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
7611
6568
|
lastmod?: string | Date | undefined;
|
|
7612
6569
|
alternateRefs?: {
|
|
7613
6570
|
href: string;
|
|
@@ -7644,7 +6601,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7644
6601
|
sitemap?: {
|
|
7645
6602
|
exclude?: boolean | undefined;
|
|
7646
6603
|
priority?: number | undefined;
|
|
7647
|
-
changefreq?: "
|
|
6604
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
7648
6605
|
lastmod?: string | Date | undefined;
|
|
7649
6606
|
alternateRefs?: {
|
|
7650
6607
|
href: string;
|
|
@@ -7681,7 +6638,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7681
6638
|
sitemap?: {
|
|
7682
6639
|
exclude?: boolean | undefined;
|
|
7683
6640
|
priority?: number | undefined;
|
|
7684
|
-
changefreq?: "
|
|
6641
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
7685
6642
|
lastmod?: string | Date | undefined;
|
|
7686
6643
|
alternateRefs?: {
|
|
7687
6644
|
href: string;
|
|
@@ -7721,7 +6678,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7721
6678
|
sitemap?: {
|
|
7722
6679
|
exclude?: boolean | undefined;
|
|
7723
6680
|
priority?: number | undefined;
|
|
7724
|
-
changefreq?: "
|
|
6681
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
7725
6682
|
lastmod?: string | Date | undefined;
|
|
7726
6683
|
alternateRefs?: {
|
|
7727
6684
|
href: string;
|
|
@@ -7749,7 +6706,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7749
6706
|
sitemap?: {
|
|
7750
6707
|
exclude?: boolean | undefined;
|
|
7751
6708
|
priority?: number | undefined;
|
|
7752
|
-
changefreq?: "
|
|
6709
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
7753
6710
|
lastmod?: string | Date | undefined;
|
|
7754
6711
|
alternateRefs?: {
|
|
7755
6712
|
href: string;
|
|
@@ -7785,7 +6742,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7785
6742
|
sitemap?: {
|
|
7786
6743
|
exclude?: boolean | undefined;
|
|
7787
6744
|
priority?: number | undefined;
|
|
7788
|
-
changefreq?: "
|
|
6745
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
7789
6746
|
lastmod?: string | Date | undefined;
|
|
7790
6747
|
alternateRefs?: {
|
|
7791
6748
|
href: string;
|
|
@@ -7813,7 +6770,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7813
6770
|
sitemap?: {
|
|
7814
6771
|
exclude?: boolean | undefined;
|
|
7815
6772
|
priority?: number | undefined;
|
|
7816
|
-
changefreq?: "
|
|
6773
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
7817
6774
|
lastmod?: string | Date | undefined;
|
|
7818
6775
|
alternateRefs?: {
|
|
7819
6776
|
href: string;
|
|
@@ -7852,7 +6809,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7852
6809
|
sitemap?: {
|
|
7853
6810
|
exclude?: boolean | undefined;
|
|
7854
6811
|
priority?: number | undefined;
|
|
7855
|
-
changefreq?: "
|
|
6812
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
7856
6813
|
lastmod?: string | Date | undefined;
|
|
7857
6814
|
alternateRefs?: {
|
|
7858
6815
|
href: string;
|
|
@@ -7880,7 +6837,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7880
6837
|
sitemap?: {
|
|
7881
6838
|
exclude?: boolean | undefined;
|
|
7882
6839
|
priority?: number | undefined;
|
|
7883
|
-
changefreq?: "
|
|
6840
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
7884
6841
|
lastmod?: string | Date | undefined;
|
|
7885
6842
|
alternateRefs?: {
|
|
7886
6843
|
href: string;
|
|
@@ -7921,7 +6878,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7921
6878
|
sitemap?: {
|
|
7922
6879
|
exclude?: boolean | undefined;
|
|
7923
6880
|
priority?: number | undefined;
|
|
7924
|
-
changefreq?: "
|
|
6881
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
7925
6882
|
lastmod?: string | Date | undefined;
|
|
7926
6883
|
alternateRefs?: {
|
|
7927
6884
|
href: string;
|
|
@@ -7949,7 +6906,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7949
6906
|
sitemap?: {
|
|
7950
6907
|
exclude?: boolean | undefined;
|
|
7951
6908
|
priority?: number | undefined;
|
|
7952
|
-
changefreq?: "
|
|
6909
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
7953
6910
|
lastmod?: string | Date | undefined;
|
|
7954
6911
|
alternateRefs?: {
|
|
7955
6912
|
href: string;
|
|
@@ -8043,7 +7000,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8043
7000
|
}, "strip", z.ZodTypeAny, {
|
|
8044
7001
|
exclude?: boolean | undefined;
|
|
8045
7002
|
priority?: number | undefined;
|
|
8046
|
-
changefreq?: "
|
|
7003
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
8047
7004
|
lastmod?: string | Date | undefined;
|
|
8048
7005
|
alternateRefs?: {
|
|
8049
7006
|
href: string;
|
|
@@ -8065,7 +7022,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8065
7022
|
}, {
|
|
8066
7023
|
exclude?: boolean | undefined;
|
|
8067
7024
|
priority?: number | undefined;
|
|
8068
|
-
changefreq?: "
|
|
7025
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
8069
7026
|
lastmod?: string | Date | undefined;
|
|
8070
7027
|
alternateRefs?: {
|
|
8071
7028
|
href: string;
|
|
@@ -8091,7 +7048,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8091
7048
|
sitemap?: {
|
|
8092
7049
|
exclude?: boolean | undefined;
|
|
8093
7050
|
priority?: number | undefined;
|
|
8094
|
-
changefreq?: "
|
|
7051
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
8095
7052
|
lastmod?: string | Date | undefined;
|
|
8096
7053
|
alternateRefs?: {
|
|
8097
7054
|
href: string;
|
|
@@ -8117,7 +7074,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8117
7074
|
sitemap?: {
|
|
8118
7075
|
exclude?: boolean | undefined;
|
|
8119
7076
|
priority?: number | undefined;
|
|
8120
|
-
changefreq?: "
|
|
7077
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
8121
7078
|
lastmod?: string | Date | undefined;
|
|
8122
7079
|
alternateRefs?: {
|
|
8123
7080
|
href: string;
|
|
@@ -8146,7 +7103,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8146
7103
|
sitemap?: {
|
|
8147
7104
|
exclude?: boolean | undefined;
|
|
8148
7105
|
priority?: number | undefined;
|
|
8149
|
-
changefreq?: "
|
|
7106
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
8150
7107
|
lastmod?: string | Date | undefined;
|
|
8151
7108
|
alternateRefs?: {
|
|
8152
7109
|
href: string;
|
|
@@ -8175,7 +7132,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8175
7132
|
sitemap?: {
|
|
8176
7133
|
exclude?: boolean | undefined;
|
|
8177
7134
|
priority?: number | undefined;
|
|
8178
|
-
changefreq?: "
|
|
7135
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
8179
7136
|
lastmod?: string | Date | undefined;
|
|
8180
7137
|
alternateRefs?: {
|
|
8181
7138
|
href: string;
|
|
@@ -8212,7 +7169,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8212
7169
|
sitemap?: {
|
|
8213
7170
|
exclude?: boolean | undefined;
|
|
8214
7171
|
priority?: number | undefined;
|
|
8215
|
-
changefreq?: "
|
|
7172
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
8216
7173
|
lastmod?: string | Date | undefined;
|
|
8217
7174
|
alternateRefs?: {
|
|
8218
7175
|
href: string;
|
|
@@ -8249,7 +7206,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8249
7206
|
sitemap?: {
|
|
8250
7207
|
exclude?: boolean | undefined;
|
|
8251
7208
|
priority?: number | undefined;
|
|
8252
|
-
changefreq?: "
|
|
7209
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
8253
7210
|
lastmod?: string | Date | undefined;
|
|
8254
7211
|
alternateRefs?: {
|
|
8255
7212
|
href: string;
|
|
@@ -8346,7 +7303,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8346
7303
|
}, "strip", z.ZodTypeAny, {
|
|
8347
7304
|
exclude?: boolean | undefined;
|
|
8348
7305
|
priority?: number | undefined;
|
|
8349
|
-
changefreq?: "
|
|
7306
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
8350
7307
|
lastmod?: string | Date | undefined;
|
|
8351
7308
|
alternateRefs?: {
|
|
8352
7309
|
href: string;
|
|
@@ -8368,7 +7325,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8368
7325
|
}, {
|
|
8369
7326
|
exclude?: boolean | undefined;
|
|
8370
7327
|
priority?: number | undefined;
|
|
8371
|
-
changefreq?: "
|
|
7328
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
8372
7329
|
lastmod?: string | Date | undefined;
|
|
8373
7330
|
alternateRefs?: {
|
|
8374
7331
|
href: string;
|
|
@@ -8394,7 +7351,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8394
7351
|
sitemap?: {
|
|
8395
7352
|
exclude?: boolean | undefined;
|
|
8396
7353
|
priority?: number | undefined;
|
|
8397
|
-
changefreq?: "
|
|
7354
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
8398
7355
|
lastmod?: string | Date | undefined;
|
|
8399
7356
|
alternateRefs?: {
|
|
8400
7357
|
href: string;
|
|
@@ -8420,7 +7377,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8420
7377
|
sitemap?: {
|
|
8421
7378
|
exclude?: boolean | undefined;
|
|
8422
7379
|
priority?: number | undefined;
|
|
8423
|
-
changefreq?: "
|
|
7380
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
8424
7381
|
lastmod?: string | Date | undefined;
|
|
8425
7382
|
alternateRefs?: {
|
|
8426
7383
|
href: string;
|
|
@@ -8449,7 +7406,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8449
7406
|
sitemap?: {
|
|
8450
7407
|
exclude?: boolean | undefined;
|
|
8451
7408
|
priority?: number | undefined;
|
|
8452
|
-
changefreq?: "
|
|
7409
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
8453
7410
|
lastmod?: string | Date | undefined;
|
|
8454
7411
|
alternateRefs?: {
|
|
8455
7412
|
href: string;
|
|
@@ -8478,7 +7435,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8478
7435
|
sitemap?: {
|
|
8479
7436
|
exclude?: boolean | undefined;
|
|
8480
7437
|
priority?: number | undefined;
|
|
8481
|
-
changefreq?: "
|
|
7438
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
8482
7439
|
lastmod?: string | Date | undefined;
|
|
8483
7440
|
alternateRefs?: {
|
|
8484
7441
|
href: string;
|
|
@@ -8515,7 +7472,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8515
7472
|
sitemap?: {
|
|
8516
7473
|
exclude?: boolean | undefined;
|
|
8517
7474
|
priority?: number | undefined;
|
|
8518
|
-
changefreq?: "
|
|
7475
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
8519
7476
|
lastmod?: string | Date | undefined;
|
|
8520
7477
|
alternateRefs?: {
|
|
8521
7478
|
href: string;
|
|
@@ -8552,7 +7509,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8552
7509
|
sitemap?: {
|
|
8553
7510
|
exclude?: boolean | undefined;
|
|
8554
7511
|
priority?: number | undefined;
|
|
8555
|
-
changefreq?: "
|
|
7512
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
8556
7513
|
lastmod?: string | Date | undefined;
|
|
8557
7514
|
alternateRefs?: {
|
|
8558
7515
|
href: string;
|
|
@@ -8589,7 +7546,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8589
7546
|
sitemap?: {
|
|
8590
7547
|
exclude?: boolean | undefined;
|
|
8591
7548
|
priority?: number | undefined;
|
|
8592
|
-
changefreq?: "
|
|
7549
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
8593
7550
|
lastmod?: string | Date | undefined;
|
|
8594
7551
|
alternateRefs?: {
|
|
8595
7552
|
href: string;
|
|
@@ -8626,7 +7583,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8626
7583
|
sitemap?: {
|
|
8627
7584
|
exclude?: boolean | undefined;
|
|
8628
7585
|
priority?: number | undefined;
|
|
8629
|
-
changefreq?: "
|
|
7586
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
8630
7587
|
lastmod?: string | Date | undefined;
|
|
8631
7588
|
alternateRefs?: {
|
|
8632
7589
|
href: string;
|
|
@@ -8665,7 +7622,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8665
7622
|
sitemap?: {
|
|
8666
7623
|
exclude?: boolean | undefined;
|
|
8667
7624
|
priority?: number | undefined;
|
|
8668
|
-
changefreq?: "
|
|
7625
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
8669
7626
|
lastmod?: string | Date | undefined;
|
|
8670
7627
|
alternateRefs?: {
|
|
8671
7628
|
href: string;
|
|
@@ -8706,7 +7663,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8706
7663
|
sitemap?: {
|
|
8707
7664
|
exclude?: boolean | undefined;
|
|
8708
7665
|
priority?: number | undefined;
|
|
8709
|
-
changefreq?: "
|
|
7666
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
8710
7667
|
lastmod?: string | Date | undefined;
|
|
8711
7668
|
alternateRefs?: {
|
|
8712
7669
|
href: string;
|
|
@@ -8782,7 +7739,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8782
7739
|
base: string;
|
|
8783
7740
|
dir: string;
|
|
8784
7741
|
};
|
|
8785
|
-
pages:
|
|
7742
|
+
pages: {
|
|
8786
7743
|
path: string;
|
|
8787
7744
|
prerender?: {
|
|
8788
7745
|
enabled?: boolean | undefined;
|
|
@@ -8797,7 +7754,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8797
7754
|
sitemap?: {
|
|
8798
7755
|
exclude?: boolean | undefined;
|
|
8799
7756
|
priority?: number | undefined;
|
|
8800
|
-
changefreq?: "
|
|
7757
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
8801
7758
|
lastmod?: string | Date | undefined;
|
|
8802
7759
|
alternateRefs?: {
|
|
8803
7760
|
href: string;
|
|
@@ -8825,7 +7782,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8825
7782
|
sitemap?: {
|
|
8826
7783
|
exclude?: boolean | undefined;
|
|
8827
7784
|
priority?: number | undefined;
|
|
8828
|
-
changefreq?: "
|
|
7785
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
8829
7786
|
lastmod?: string | Date | undefined;
|
|
8830
7787
|
alternateRefs?: {
|
|
8831
7788
|
href: string;
|
|
@@ -8846,7 +7803,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8846
7803
|
} | undefined;
|
|
8847
7804
|
} | undefined;
|
|
8848
7805
|
fromCrawl?: boolean | undefined;
|
|
8849
|
-
}
|
|
7806
|
+
}[];
|
|
8850
7807
|
target?: import('nitropack/presets').PresetNameInput | undefined;
|
|
8851
7808
|
prerender?: ({
|
|
8852
7809
|
filter?: ((args_0: {
|
|
@@ -8864,7 +7821,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8864
7821
|
sitemap?: {
|
|
8865
7822
|
exclude?: boolean | undefined;
|
|
8866
7823
|
priority?: number | undefined;
|
|
8867
|
-
changefreq?: "
|
|
7824
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
8868
7825
|
lastmod?: string | Date | undefined;
|
|
8869
7826
|
alternateRefs?: {
|
|
8870
7827
|
href: string;
|
|
@@ -8892,7 +7849,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8892
7849
|
sitemap?: {
|
|
8893
7850
|
exclude?: boolean | undefined;
|
|
8894
7851
|
priority?: number | undefined;
|
|
8895
|
-
changefreq?: "
|
|
7852
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
8896
7853
|
lastmod?: string | Date | undefined;
|
|
8897
7854
|
alternateRefs?: {
|
|
8898
7855
|
href: string;
|
|
@@ -8930,7 +7887,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8930
7887
|
sitemap?: {
|
|
8931
7888
|
exclude?: boolean | undefined;
|
|
8932
7889
|
priority?: number | undefined;
|
|
8933
|
-
changefreq?: "
|
|
7890
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
8934
7891
|
lastmod?: string | Date | undefined;
|
|
8935
7892
|
alternateRefs?: {
|
|
8936
7893
|
href: string;
|
|
@@ -8956,42 +7913,8 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8956
7913
|
}, ...args: unknown[]) => any) | undefined;
|
|
8957
7914
|
}) | undefined;
|
|
8958
7915
|
sitemap?: {
|
|
8959
|
-
enabled
|
|
8960
|
-
outputPath
|
|
8961
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
8962
|
-
crawlLinks?: boolean | undefined;
|
|
8963
|
-
retryCount?: number | undefined;
|
|
8964
|
-
retryDelay?: number | undefined;
|
|
8965
|
-
onSuccess?: ((args_0: {
|
|
8966
|
-
page: {
|
|
8967
|
-
path: string;
|
|
8968
|
-
sitemap?: {
|
|
8969
|
-
exclude?: boolean | undefined;
|
|
8970
|
-
priority?: number | undefined;
|
|
8971
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
8972
|
-
lastmod?: string | Date | undefined;
|
|
8973
|
-
alternateRefs?: {
|
|
8974
|
-
href: string;
|
|
8975
|
-
hreflang: string;
|
|
8976
|
-
}[] | undefined;
|
|
8977
|
-
images?: {
|
|
8978
|
-
loc: string;
|
|
8979
|
-
caption?: string | undefined;
|
|
8980
|
-
title?: string | undefined;
|
|
8981
|
-
}[] | undefined;
|
|
8982
|
-
news?: {
|
|
8983
|
-
title: string;
|
|
8984
|
-
publication: {
|
|
8985
|
-
name: string;
|
|
8986
|
-
language: string;
|
|
8987
|
-
};
|
|
8988
|
-
publicationDate: string | Date;
|
|
8989
|
-
} | undefined;
|
|
8990
|
-
} | undefined;
|
|
8991
|
-
fromCrawl?: boolean | undefined;
|
|
8992
|
-
};
|
|
8993
|
-
html: string;
|
|
8994
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
7916
|
+
enabled: boolean;
|
|
7917
|
+
outputPath: string;
|
|
8995
7918
|
host?: string | undefined;
|
|
8996
7919
|
} | undefined;
|
|
8997
7920
|
spa?: {
|
|
@@ -9008,7 +7931,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
9008
7931
|
sitemap?: {
|
|
9009
7932
|
exclude?: boolean | undefined;
|
|
9010
7933
|
priority?: number | undefined;
|
|
9011
|
-
changefreq?: "
|
|
7934
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
9012
7935
|
lastmod?: string | Date | undefined;
|
|
9013
7936
|
alternateRefs?: {
|
|
9014
7937
|
href: string;
|
|
@@ -9055,7 +7978,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
9055
7978
|
sitemap?: {
|
|
9056
7979
|
exclude?: boolean | undefined;
|
|
9057
7980
|
priority?: number | undefined;
|
|
9058
|
-
changefreq?: "
|
|
7981
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
9059
7982
|
lastmod?: string | Date | undefined;
|
|
9060
7983
|
alternateRefs?: {
|
|
9061
7984
|
href: string;
|
|
@@ -9083,7 +8006,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
9083
8006
|
sitemap?: {
|
|
9084
8007
|
exclude?: boolean | undefined;
|
|
9085
8008
|
priority?: number | undefined;
|
|
9086
|
-
changefreq?: "
|
|
8009
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
9087
8010
|
lastmod?: string | Date | undefined;
|
|
9088
8011
|
alternateRefs?: {
|
|
9089
8012
|
href: string;
|
|
@@ -9121,7 +8044,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
9121
8044
|
sitemap?: {
|
|
9122
8045
|
exclude?: boolean | undefined;
|
|
9123
8046
|
priority?: number | undefined;
|
|
9124
|
-
changefreq?: "
|
|
8047
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
9125
8048
|
lastmod?: string | Date | undefined;
|
|
9126
8049
|
alternateRefs?: {
|
|
9127
8050
|
href: string;
|
|
@@ -9193,43 +8116,9 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
9193
8116
|
sitemap?: {
|
|
9194
8117
|
enabled?: boolean | undefined;
|
|
9195
8118
|
outputPath?: string | undefined;
|
|
9196
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
9197
|
-
crawlLinks?: boolean | undefined;
|
|
9198
|
-
retryCount?: number | undefined;
|
|
9199
|
-
retryDelay?: number | undefined;
|
|
9200
|
-
onSuccess?: ((args_0: {
|
|
9201
|
-
page: {
|
|
9202
|
-
path: string;
|
|
9203
|
-
sitemap?: {
|
|
9204
|
-
exclude?: boolean | undefined;
|
|
9205
|
-
priority?: number | undefined;
|
|
9206
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
9207
|
-
lastmod?: string | Date | undefined;
|
|
9208
|
-
alternateRefs?: {
|
|
9209
|
-
href: string;
|
|
9210
|
-
hreflang: string;
|
|
9211
|
-
}[] | undefined;
|
|
9212
|
-
images?: {
|
|
9213
|
-
loc: string;
|
|
9214
|
-
caption?: string | undefined;
|
|
9215
|
-
title?: string | undefined;
|
|
9216
|
-
}[] | undefined;
|
|
9217
|
-
news?: {
|
|
9218
|
-
title: string;
|
|
9219
|
-
publication: {
|
|
9220
|
-
name: string;
|
|
9221
|
-
language: string;
|
|
9222
|
-
};
|
|
9223
|
-
publicationDate: string | Date;
|
|
9224
|
-
} | undefined;
|
|
9225
|
-
} | undefined;
|
|
9226
|
-
fromCrawl?: boolean | undefined;
|
|
9227
|
-
};
|
|
9228
|
-
html: string;
|
|
9229
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
9230
8119
|
host?: string | undefined;
|
|
9231
8120
|
} | undefined;
|
|
9232
|
-
pages?:
|
|
8121
|
+
pages?: {
|
|
9233
8122
|
path: string;
|
|
9234
8123
|
prerender?: {
|
|
9235
8124
|
enabled?: boolean | undefined;
|
|
@@ -9244,7 +8133,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
9244
8133
|
sitemap?: {
|
|
9245
8134
|
exclude?: boolean | undefined;
|
|
9246
8135
|
priority?: number | undefined;
|
|
9247
|
-
changefreq?: "
|
|
8136
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
9248
8137
|
lastmod?: string | Date | undefined;
|
|
9249
8138
|
alternateRefs?: {
|
|
9250
8139
|
href: string;
|
|
@@ -9272,7 +8161,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
9272
8161
|
sitemap?: {
|
|
9273
8162
|
exclude?: boolean | undefined;
|
|
9274
8163
|
priority?: number | undefined;
|
|
9275
|
-
changefreq?: "
|
|
8164
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
9276
8165
|
lastmod?: string | Date | undefined;
|
|
9277
8166
|
alternateRefs?: {
|
|
9278
8167
|
href: string;
|
|
@@ -9293,7 +8182,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
9293
8182
|
} | undefined;
|
|
9294
8183
|
} | undefined;
|
|
9295
8184
|
fromCrawl?: boolean | undefined;
|
|
9296
|
-
}
|
|
8185
|
+
}[] | undefined;
|
|
9297
8186
|
spa?: {
|
|
9298
8187
|
prerender?: {
|
|
9299
8188
|
enabled?: boolean | undefined;
|
|
@@ -9308,7 +8197,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
9308
8197
|
sitemap?: {
|
|
9309
8198
|
exclude?: boolean | undefined;
|
|
9310
8199
|
priority?: number | undefined;
|
|
9311
|
-
changefreq?: "
|
|
8200
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
9312
8201
|
lastmod?: string | Date | undefined;
|
|
9313
8202
|
alternateRefs?: {
|
|
9314
8203
|
href: string;
|
|
@@ -9398,7 +8287,7 @@ export declare const pageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9398
8287
|
}, "strip", z.ZodTypeAny, {
|
|
9399
8288
|
exclude?: boolean | undefined;
|
|
9400
8289
|
priority?: number | undefined;
|
|
9401
|
-
changefreq?: "
|
|
8290
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
9402
8291
|
lastmod?: string | Date | undefined;
|
|
9403
8292
|
alternateRefs?: {
|
|
9404
8293
|
href: string;
|
|
@@ -9420,7 +8309,7 @@ export declare const pageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9420
8309
|
}, {
|
|
9421
8310
|
exclude?: boolean | undefined;
|
|
9422
8311
|
priority?: number | undefined;
|
|
9423
|
-
changefreq?: "
|
|
8312
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
9424
8313
|
lastmod?: string | Date | undefined;
|
|
9425
8314
|
alternateRefs?: {
|
|
9426
8315
|
href: string;
|
|
@@ -9511,7 +8400,7 @@ export declare const pageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9511
8400
|
}, "strip", z.ZodTypeAny, {
|
|
9512
8401
|
exclude?: boolean | undefined;
|
|
9513
8402
|
priority?: number | undefined;
|
|
9514
|
-
changefreq?: "
|
|
8403
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
9515
8404
|
lastmod?: string | Date | undefined;
|
|
9516
8405
|
alternateRefs?: {
|
|
9517
8406
|
href: string;
|
|
@@ -9533,7 +8422,7 @@ export declare const pageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9533
8422
|
}, {
|
|
9534
8423
|
exclude?: boolean | undefined;
|
|
9535
8424
|
priority?: number | undefined;
|
|
9536
|
-
changefreq?: "
|
|
8425
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
9537
8426
|
lastmod?: string | Date | undefined;
|
|
9538
8427
|
alternateRefs?: {
|
|
9539
8428
|
href: string;
|
|
@@ -9559,7 +8448,7 @@ export declare const pageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9559
8448
|
sitemap?: {
|
|
9560
8449
|
exclude?: boolean | undefined;
|
|
9561
8450
|
priority?: number | undefined;
|
|
9562
|
-
changefreq?: "
|
|
8451
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
9563
8452
|
lastmod?: string | Date | undefined;
|
|
9564
8453
|
alternateRefs?: {
|
|
9565
8454
|
href: string;
|
|
@@ -9585,7 +8474,7 @@ export declare const pageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9585
8474
|
sitemap?: {
|
|
9586
8475
|
exclude?: boolean | undefined;
|
|
9587
8476
|
priority?: number | undefined;
|
|
9588
|
-
changefreq?: "
|
|
8477
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
9589
8478
|
lastmod?: string | Date | undefined;
|
|
9590
8479
|
alternateRefs?: {
|
|
9591
8480
|
href: string;
|
|
@@ -9614,7 +8503,7 @@ export declare const pageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9614
8503
|
sitemap?: {
|
|
9615
8504
|
exclude?: boolean | undefined;
|
|
9616
8505
|
priority?: number | undefined;
|
|
9617
|
-
changefreq?: "
|
|
8506
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
9618
8507
|
lastmod?: string | Date | undefined;
|
|
9619
8508
|
alternateRefs?: {
|
|
9620
8509
|
href: string;
|
|
@@ -9643,7 +8532,7 @@ export declare const pageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9643
8532
|
sitemap?: {
|
|
9644
8533
|
exclude?: boolean | undefined;
|
|
9645
8534
|
priority?: number | undefined;
|
|
9646
|
-
changefreq?: "
|
|
8535
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
9647
8536
|
lastmod?: string | Date | undefined;
|
|
9648
8537
|
alternateRefs?: {
|
|
9649
8538
|
href: string;
|
|
@@ -9680,7 +8569,7 @@ export declare const pageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9680
8569
|
sitemap?: {
|
|
9681
8570
|
exclude?: boolean | undefined;
|
|
9682
8571
|
priority?: number | undefined;
|
|
9683
|
-
changefreq?: "
|
|
8572
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
9684
8573
|
lastmod?: string | Date | undefined;
|
|
9685
8574
|
alternateRefs?: {
|
|
9686
8575
|
href: string;
|
|
@@ -9717,7 +8606,7 @@ export declare const pageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9717
8606
|
sitemap?: {
|
|
9718
8607
|
exclude?: boolean | undefined;
|
|
9719
8608
|
priority?: number | undefined;
|
|
9720
|
-
changefreq?: "
|
|
8609
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
9721
8610
|
lastmod?: string | Date | undefined;
|
|
9722
8611
|
alternateRefs?: {
|
|
9723
8612
|
href: string;
|
|
@@ -9757,7 +8646,7 @@ export declare const pageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9757
8646
|
sitemap?: {
|
|
9758
8647
|
exclude?: boolean | undefined;
|
|
9759
8648
|
priority?: number | undefined;
|
|
9760
|
-
changefreq?: "
|
|
8649
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
9761
8650
|
lastmod?: string | Date | undefined;
|
|
9762
8651
|
alternateRefs?: {
|
|
9763
8652
|
href: string;
|
|
@@ -9785,7 +8674,7 @@ export declare const pageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9785
8674
|
sitemap?: {
|
|
9786
8675
|
exclude?: boolean | undefined;
|
|
9787
8676
|
priority?: number | undefined;
|
|
9788
|
-
changefreq?: "
|
|
8677
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
9789
8678
|
lastmod?: string | Date | undefined;
|
|
9790
8679
|
alternateRefs?: {
|
|
9791
8680
|
href: string;
|
|
@@ -9821,7 +8710,7 @@ export declare const pageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9821
8710
|
sitemap?: {
|
|
9822
8711
|
exclude?: boolean | undefined;
|
|
9823
8712
|
priority?: number | undefined;
|
|
9824
|
-
changefreq?: "
|
|
8713
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
9825
8714
|
lastmod?: string | Date | undefined;
|
|
9826
8715
|
alternateRefs?: {
|
|
9827
8716
|
href: string;
|
|
@@ -9849,7 +8738,7 @@ export declare const pageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9849
8738
|
sitemap?: {
|
|
9850
8739
|
exclude?: boolean | undefined;
|
|
9851
8740
|
priority?: number | undefined;
|
|
9852
|
-
changefreq?: "
|
|
8741
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
9853
8742
|
lastmod?: string | Date | undefined;
|
|
9854
8743
|
alternateRefs?: {
|
|
9855
8744
|
href: string;
|