@tanstack/start-plugin-core 1.120.4-alpha.2 → 1.120.4-alpha.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/dist/cjs/constants.cjs +10 -0
  2. package/dist/cjs/constants.cjs.map +1 -0
  3. package/dist/cjs/constants.d.cts +4 -0
  4. package/dist/cjs/nitro/dev-server-plugin.cjs +11 -3
  5. package/dist/cjs/nitro/dev-server-plugin.cjs.map +1 -1
  6. package/dist/cjs/nitro/nitro-plugin.cjs +24 -5
  7. package/dist/cjs/nitro/nitro-plugin.cjs.map +1 -1
  8. package/dist/cjs/plugin.cjs +49 -15
  9. package/dist/cjs/plugin.cjs.map +1 -1
  10. package/dist/cjs/plugin.d.cts +620 -1
  11. package/dist/cjs/prerender.cjs +19 -15
  12. package/dist/cjs/prerender.cjs.map +1 -1
  13. package/dist/cjs/schema.cjs +21 -2
  14. package/dist/cjs/schema.cjs.map +1 -1
  15. package/dist/cjs/schema.d.cts +2281 -520
  16. package/dist/cjs/start-server-routes-plugin/plugin.cjs +6 -2
  17. package/dist/cjs/start-server-routes-plugin/plugin.cjs.map +1 -1
  18. package/dist/esm/constants.d.ts +4 -0
  19. package/dist/esm/constants.js +10 -0
  20. package/dist/esm/constants.js.map +1 -0
  21. package/dist/esm/nitro/dev-server-plugin.js +11 -3
  22. package/dist/esm/nitro/dev-server-plugin.js.map +1 -1
  23. package/dist/esm/nitro/nitro-plugin.js +24 -5
  24. package/dist/esm/nitro/nitro-plugin.js.map +1 -1
  25. package/dist/esm/plugin.d.ts +620 -1
  26. package/dist/esm/plugin.js +49 -15
  27. package/dist/esm/plugin.js.map +1 -1
  28. package/dist/esm/prerender.js +19 -15
  29. package/dist/esm/prerender.js.map +1 -1
  30. package/dist/esm/schema.d.ts +2281 -520
  31. package/dist/esm/schema.js +21 -2
  32. package/dist/esm/schema.js.map +1 -1
  33. package/dist/esm/start-server-routes-plugin/plugin.js +6 -2
  34. package/dist/esm/start-server-routes-plugin/plugin.js.map +1 -1
  35. package/package.json +11 -5
  36. package/src/constants.ts +6 -0
  37. package/src/nitro/dev-server-plugin.ts +14 -4
  38. package/src/nitro/nitro-plugin.ts +28 -3
  39. package/src/plugin.ts +64 -15
  40. package/src/prerender.ts +26 -19
  41. package/src/schema.ts +26 -1
  42. package/src/start-server-routes-plugin/plugin.ts +10 -2
@@ -244,6 +244,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
244
244
  }, {
245
245
  prerender: z.ZodOptional<z.ZodObject<{
246
246
  enabled: z.ZodOptional<z.ZodBoolean>;
247
+ outputPath: z.ZodOptional<z.ZodString>;
247
248
  autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
248
249
  crawlLinks: z.ZodOptional<z.ZodBoolean>;
249
250
  retryCount: z.ZodOptional<z.ZodNumber>;
@@ -468,6 +469,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
468
469
  }>], z.ZodUnknown>, z.ZodAny>>;
469
470
  }, "strip", z.ZodTypeAny, {
470
471
  enabled?: boolean | undefined;
472
+ outputPath?: string | undefined;
471
473
  autoSubfolderIndex?: boolean | undefined;
472
474
  crawlLinks?: boolean | undefined;
473
475
  retryCount?: number | undefined;
@@ -504,6 +506,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
504
506
  }, ...args: unknown[]) => any) | undefined;
505
507
  }, {
506
508
  enabled?: boolean | undefined;
509
+ outputPath?: string | undefined;
507
510
  autoSubfolderIndex?: boolean | undefined;
508
511
  crawlLinks?: boolean | undefined;
509
512
  retryCount?: number | undefined;
@@ -543,6 +546,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
543
546
  path: string;
544
547
  prerender?: {
545
548
  enabled?: boolean | undefined;
549
+ outputPath?: string | undefined;
546
550
  autoSubfolderIndex?: boolean | undefined;
547
551
  crawlLinks?: boolean | undefined;
548
552
  retryCount?: number | undefined;
@@ -606,6 +610,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
606
610
  path: string;
607
611
  prerender?: {
608
612
  enabled?: boolean | undefined;
613
+ outputPath?: string | undefined;
609
614
  autoSubfolderIndex?: boolean | undefined;
610
615
  crawlLinks?: boolean | undefined;
611
616
  retryCount?: number | undefined;
@@ -668,6 +673,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
668
673
  }>]>, "many">>>;
669
674
  sitemap: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
670
675
  enabled: z.ZodOptional<z.ZodBoolean>;
676
+ outputPath: z.ZodOptional<z.ZodString>;
671
677
  autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
672
678
  crawlLinks: z.ZodOptional<z.ZodBoolean>;
673
679
  retryCount: z.ZodOptional<z.ZodNumber>;
@@ -895,6 +901,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
895
901
  }>, "strip", z.ZodTypeAny, {
896
902
  host?: string | undefined;
897
903
  enabled?: boolean | undefined;
904
+ outputPath?: string | undefined;
898
905
  autoSubfolderIndex?: boolean | undefined;
899
906
  crawlLinks?: boolean | undefined;
900
907
  retryCount?: number | undefined;
@@ -932,6 +939,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
932
939
  }, {
933
940
  host?: string | undefined;
934
941
  enabled?: boolean | undefined;
942
+ outputPath?: string | undefined;
935
943
  autoSubfolderIndex?: boolean | undefined;
936
944
  crawlLinks?: boolean | undefined;
937
945
  retryCount?: number | undefined;
@@ -1077,6 +1085,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
1077
1085
  }, {
1078
1086
  prerender: z.ZodOptional<z.ZodObject<{
1079
1087
  enabled: z.ZodOptional<z.ZodBoolean>;
1088
+ outputPath: z.ZodOptional<z.ZodString>;
1080
1089
  autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
1081
1090
  crawlLinks: z.ZodOptional<z.ZodBoolean>;
1082
1091
  retryCount: z.ZodOptional<z.ZodNumber>;
@@ -1301,6 +1310,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
1301
1310
  }>], z.ZodUnknown>, z.ZodAny>>;
1302
1311
  }, "strip", z.ZodTypeAny, {
1303
1312
  enabled?: boolean | undefined;
1313
+ outputPath?: string | undefined;
1304
1314
  autoSubfolderIndex?: boolean | undefined;
1305
1315
  crawlLinks?: boolean | undefined;
1306
1316
  retryCount?: number | undefined;
@@ -1337,6 +1347,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
1337
1347
  }, ...args: unknown[]) => any) | undefined;
1338
1348
  }, {
1339
1349
  enabled?: boolean | undefined;
1350
+ outputPath?: string | undefined;
1340
1351
  autoSubfolderIndex?: boolean | undefined;
1341
1352
  crawlLinks?: boolean | undefined;
1342
1353
  retryCount?: number | undefined;
@@ -1376,6 +1387,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
1376
1387
  path: string;
1377
1388
  prerender?: {
1378
1389
  enabled?: boolean | undefined;
1390
+ outputPath?: string | undefined;
1379
1391
  autoSubfolderIndex?: boolean | undefined;
1380
1392
  crawlLinks?: boolean | undefined;
1381
1393
  retryCount?: number | undefined;
@@ -1439,6 +1451,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
1439
1451
  path: string;
1440
1452
  prerender?: {
1441
1453
  enabled?: boolean | undefined;
1454
+ outputPath?: string | undefined;
1442
1455
  autoSubfolderIndex?: boolean | undefined;
1443
1456
  crawlLinks?: boolean | undefined;
1444
1457
  retryCount?: number | undefined;
@@ -1505,6 +1518,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
1505
1518
  path: string;
1506
1519
  prerender?: {
1507
1520
  enabled?: boolean | undefined;
1521
+ outputPath?: string | undefined;
1508
1522
  autoSubfolderIndex?: boolean | undefined;
1509
1523
  crawlLinks?: boolean | undefined;
1510
1524
  retryCount?: number | undefined;
@@ -1573,6 +1587,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
1573
1587
  path: string;
1574
1588
  prerender?: {
1575
1589
  enabled?: boolean | undefined;
1590
+ outputPath?: string | undefined;
1576
1591
  autoSubfolderIndex?: boolean | undefined;
1577
1592
  crawlLinks?: boolean | undefined;
1578
1593
  retryCount?: number | undefined;
@@ -1638,6 +1653,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
1638
1653
  failOnError?: boolean | undefined;
1639
1654
  }>, z.ZodOptional<z.ZodObject<{
1640
1655
  enabled: z.ZodOptional<z.ZodBoolean>;
1656
+ outputPath: z.ZodOptional<z.ZodString>;
1641
1657
  autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
1642
1658
  crawlLinks: z.ZodOptional<z.ZodBoolean>;
1643
1659
  retryCount: z.ZodOptional<z.ZodNumber>;
@@ -1862,6 +1878,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
1862
1878
  }>], z.ZodUnknown>, z.ZodAny>>;
1863
1879
  }, "strip", z.ZodTypeAny, {
1864
1880
  enabled?: boolean | undefined;
1881
+ outputPath?: string | undefined;
1865
1882
  autoSubfolderIndex?: boolean | undefined;
1866
1883
  crawlLinks?: boolean | undefined;
1867
1884
  retryCount?: number | undefined;
@@ -1898,6 +1915,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
1898
1915
  }, ...args: unknown[]) => any) | undefined;
1899
1916
  }, {
1900
1917
  enabled?: boolean | undefined;
1918
+ outputPath?: string | undefined;
1901
1919
  autoSubfolderIndex?: boolean | undefined;
1902
1920
  crawlLinks?: boolean | undefined;
1903
1921
  retryCount?: number | undefined;
@@ -1933,64 +1951,176 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
1933
1951
  html: string;
1934
1952
  }, ...args: unknown[]) => any) | undefined;
1935
1953
  }>>>>;
1936
- root: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1937
- target: z.ZodOptional<z.ZodType<import('nitropack/presets').PresetNameInput | undefined, z.ZodTypeDef, import('nitropack/presets').PresetNameInput | undefined>>;
1938
- }, "strip", z.ZodTypeAny, {
1939
- client: {
1940
- base: string;
1941
- entry?: string | undefined;
1942
- };
1943
- server: {
1944
- entry?: string | undefined;
1945
- };
1946
- root: string;
1947
- tsr: {
1948
- srcDirectory: string;
1949
- target?: "react" | "solid" | undefined;
1950
- virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
1951
- routeFilePrefix?: string | undefined;
1952
- routeFileIgnorePrefix?: string | undefined;
1953
- routeFileIgnorePattern?: string | undefined;
1954
- routesDirectory?: string | undefined;
1955
- quoteStyle?: "single" | "double" | undefined;
1956
- semicolons?: boolean | undefined;
1957
- disableLogging?: boolean | undefined;
1958
- routeTreeFileHeader?: string[] | undefined;
1959
- indexToken?: string | undefined;
1960
- routeToken?: string | undefined;
1961
- pathParamsAllowedCharacters?: (";" | ":" | "@" | "&" | "=" | "+" | "$" | ",")[] | undefined;
1962
- generatedRouteTree?: string | undefined;
1963
- disableTypes?: boolean | undefined;
1964
- verboseFileRoutes?: boolean | undefined;
1965
- addExtensions?: boolean | undefined;
1966
- disableManifestGeneration?: boolean | undefined;
1967
- enableRouteTreeFormatting?: boolean | undefined;
1968
- routeTreeFileFooter?: string[] | undefined;
1969
- autoCodeSplitting?: boolean | undefined;
1970
- customScaffolding?: {
1971
- routeTemplate?: string | undefined;
1972
- lazyRouteTemplate?: string | undefined;
1973
- } | undefined;
1974
- experimental?: {
1975
- enableCodeSplitting?: boolean | undefined;
1976
- } | undefined;
1977
- };
1978
- serverFns: {
1979
- base: string;
1980
- };
1981
- public: {
1982
- base: string;
1983
- dir: string;
1984
- };
1985
- pages: (string | {
1986
- path: string;
1987
- prerender?: {
1988
- enabled?: boolean | undefined;
1989
- autoSubfolderIndex?: boolean | undefined;
1990
- crawlLinks?: boolean | undefined;
1991
- retryCount?: number | undefined;
1992
- retryDelay?: number | undefined;
1993
- onSuccess?: ((args_0: {
1954
+ spa: z.ZodOptional<z.ZodObject<{
1955
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1956
+ maskPath: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1957
+ prerender: z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodObject<{
1958
+ enabled: z.ZodOptional<z.ZodBoolean>;
1959
+ outputPath: z.ZodOptional<z.ZodString>;
1960
+ autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
1961
+ crawlLinks: z.ZodOptional<z.ZodBoolean>;
1962
+ retryCount: z.ZodOptional<z.ZodNumber>;
1963
+ retryDelay: z.ZodOptional<z.ZodNumber>;
1964
+ onSuccess: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
1965
+ page: z.ZodObject<{
1966
+ path: z.ZodString;
1967
+ sitemap: z.ZodOptional<z.ZodObject<{
1968
+ exclude: z.ZodOptional<z.ZodBoolean>;
1969
+ priority: z.ZodOptional<z.ZodNumber>;
1970
+ changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
1971
+ lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
1972
+ alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
1973
+ href: z.ZodString;
1974
+ hreflang: z.ZodString;
1975
+ }, "strip", z.ZodTypeAny, {
1976
+ href: string;
1977
+ hreflang: string;
1978
+ }, {
1979
+ href: string;
1980
+ hreflang: string;
1981
+ }>, "many">>;
1982
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
1983
+ loc: z.ZodString;
1984
+ caption: z.ZodOptional<z.ZodString>;
1985
+ title: z.ZodOptional<z.ZodString>;
1986
+ }, "strip", z.ZodTypeAny, {
1987
+ loc: string;
1988
+ caption?: string | undefined;
1989
+ title?: string | undefined;
1990
+ }, {
1991
+ loc: string;
1992
+ caption?: string | undefined;
1993
+ title?: string | undefined;
1994
+ }>, "many">>;
1995
+ news: z.ZodOptional<z.ZodObject<{
1996
+ publication: z.ZodObject<{
1997
+ name: z.ZodString;
1998
+ language: z.ZodString;
1999
+ }, "strip", z.ZodTypeAny, {
2000
+ name: string;
2001
+ language: string;
2002
+ }, {
2003
+ name: string;
2004
+ language: string;
2005
+ }>;
2006
+ publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2007
+ title: z.ZodString;
2008
+ }, "strip", z.ZodTypeAny, {
2009
+ title: string;
2010
+ publication: {
2011
+ name: string;
2012
+ language: string;
2013
+ };
2014
+ publicationDate: string | Date;
2015
+ }, {
2016
+ title: string;
2017
+ publication: {
2018
+ name: string;
2019
+ language: string;
2020
+ };
2021
+ publicationDate: string | Date;
2022
+ }>>;
2023
+ }, "strip", z.ZodTypeAny, {
2024
+ lastmod?: string | Date | undefined;
2025
+ exclude?: boolean | undefined;
2026
+ priority?: number | undefined;
2027
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2028
+ alternateRefs?: {
2029
+ href: string;
2030
+ hreflang: string;
2031
+ }[] | undefined;
2032
+ images?: {
2033
+ loc: string;
2034
+ caption?: string | undefined;
2035
+ title?: string | undefined;
2036
+ }[] | undefined;
2037
+ news?: {
2038
+ title: string;
2039
+ publication: {
2040
+ name: string;
2041
+ language: string;
2042
+ };
2043
+ publicationDate: string | Date;
2044
+ } | undefined;
2045
+ }, {
2046
+ lastmod?: string | Date | undefined;
2047
+ exclude?: boolean | undefined;
2048
+ priority?: number | undefined;
2049
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2050
+ alternateRefs?: {
2051
+ href: string;
2052
+ hreflang: string;
2053
+ }[] | undefined;
2054
+ images?: {
2055
+ loc: string;
2056
+ caption?: string | undefined;
2057
+ title?: string | undefined;
2058
+ }[] | undefined;
2059
+ news?: {
2060
+ title: string;
2061
+ publication: {
2062
+ name: string;
2063
+ language: string;
2064
+ };
2065
+ publicationDate: string | Date;
2066
+ } | undefined;
2067
+ }>>;
2068
+ fromCrawl: z.ZodOptional<z.ZodBoolean>;
2069
+ }, "strip", z.ZodTypeAny, {
2070
+ path: string;
2071
+ sitemap?: {
2072
+ lastmod?: string | Date | undefined;
2073
+ exclude?: boolean | undefined;
2074
+ priority?: number | undefined;
2075
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2076
+ alternateRefs?: {
2077
+ href: string;
2078
+ hreflang: string;
2079
+ }[] | undefined;
2080
+ images?: {
2081
+ loc: string;
2082
+ caption?: string | undefined;
2083
+ title?: string | undefined;
2084
+ }[] | undefined;
2085
+ news?: {
2086
+ title: string;
2087
+ publication: {
2088
+ name: string;
2089
+ language: string;
2090
+ };
2091
+ publicationDate: string | Date;
2092
+ } | undefined;
2093
+ } | undefined;
2094
+ fromCrawl?: boolean | undefined;
2095
+ }, {
2096
+ path: string;
2097
+ sitemap?: {
2098
+ lastmod?: string | Date | undefined;
2099
+ exclude?: boolean | undefined;
2100
+ priority?: number | undefined;
2101
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2102
+ alternateRefs?: {
2103
+ href: string;
2104
+ hreflang: string;
2105
+ }[] | undefined;
2106
+ images?: {
2107
+ loc: string;
2108
+ caption?: string | undefined;
2109
+ title?: string | undefined;
2110
+ }[] | undefined;
2111
+ news?: {
2112
+ title: string;
2113
+ publication: {
2114
+ name: string;
2115
+ language: string;
2116
+ };
2117
+ publicationDate: string | Date;
2118
+ } | undefined;
2119
+ } | undefined;
2120
+ fromCrawl?: boolean | undefined;
2121
+ }>;
2122
+ html: z.ZodString;
2123
+ }, "strip", z.ZodTypeAny, {
1994
2124
  page: {
1995
2125
  path: string;
1996
2126
  sitemap?: {
@@ -2019,39 +2149,389 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
2019
2149
  fromCrawl?: boolean | undefined;
2020
2150
  };
2021
2151
  html: string;
2022
- }, ...args: unknown[]) => any) | undefined;
2023
- } | undefined;
2024
- sitemap?: {
2025
- lastmod?: string | Date | undefined;
2026
- exclude?: boolean | undefined;
2027
- priority?: number | undefined;
2028
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2029
- alternateRefs?: {
2030
- href: string;
2031
- hreflang: string;
2032
- }[] | undefined;
2033
- images?: {
2034
- loc: string;
2035
- caption?: string | undefined;
2036
- title?: string | undefined;
2037
- }[] | undefined;
2038
- news?: {
2039
- title: string;
2040
- publication: {
2041
- name: string;
2042
- language: string;
2043
- };
2044
- publicationDate: string | Date;
2045
- } | undefined;
2046
- } | undefined;
2047
- fromCrawl?: boolean | undefined;
2048
- })[];
2049
- target?: import('nitropack/presets').PresetNameInput | undefined;
2050
- prerender?: ({
2051
- filter?: ((args_0: {
2052
- path: string;
2053
- prerender?: {
2054
- enabled?: boolean | undefined;
2152
+ }, {
2153
+ page: {
2154
+ path: string;
2155
+ sitemap?: {
2156
+ lastmod?: string | Date | undefined;
2157
+ exclude?: boolean | undefined;
2158
+ priority?: number | undefined;
2159
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2160
+ alternateRefs?: {
2161
+ href: string;
2162
+ hreflang: string;
2163
+ }[] | undefined;
2164
+ images?: {
2165
+ loc: string;
2166
+ caption?: string | undefined;
2167
+ title?: string | undefined;
2168
+ }[] | undefined;
2169
+ news?: {
2170
+ title: string;
2171
+ publication: {
2172
+ name: string;
2173
+ language: string;
2174
+ };
2175
+ publicationDate: string | Date;
2176
+ } | undefined;
2177
+ } | undefined;
2178
+ fromCrawl?: boolean | undefined;
2179
+ };
2180
+ html: string;
2181
+ }>], z.ZodUnknown>, z.ZodAny>>;
2182
+ }, "strip", z.ZodTypeAny, {
2183
+ enabled?: boolean | undefined;
2184
+ outputPath?: string | undefined;
2185
+ autoSubfolderIndex?: boolean | undefined;
2186
+ crawlLinks?: boolean | undefined;
2187
+ retryCount?: number | undefined;
2188
+ retryDelay?: number | undefined;
2189
+ onSuccess?: ((args_0: {
2190
+ page: {
2191
+ path: string;
2192
+ sitemap?: {
2193
+ lastmod?: string | Date | undefined;
2194
+ exclude?: boolean | undefined;
2195
+ priority?: number | undefined;
2196
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2197
+ alternateRefs?: {
2198
+ href: string;
2199
+ hreflang: string;
2200
+ }[] | undefined;
2201
+ images?: {
2202
+ loc: string;
2203
+ caption?: string | undefined;
2204
+ title?: string | undefined;
2205
+ }[] | undefined;
2206
+ news?: {
2207
+ title: string;
2208
+ publication: {
2209
+ name: string;
2210
+ language: string;
2211
+ };
2212
+ publicationDate: string | Date;
2213
+ } | undefined;
2214
+ } | undefined;
2215
+ fromCrawl?: boolean | undefined;
2216
+ };
2217
+ html: string;
2218
+ }, ...args: unknown[]) => any) | undefined;
2219
+ }, {
2220
+ enabled?: boolean | undefined;
2221
+ outputPath?: string | undefined;
2222
+ autoSubfolderIndex?: boolean | undefined;
2223
+ crawlLinks?: boolean | undefined;
2224
+ retryCount?: number | undefined;
2225
+ retryDelay?: number | undefined;
2226
+ onSuccess?: ((args_0: {
2227
+ page: {
2228
+ path: string;
2229
+ sitemap?: {
2230
+ lastmod?: string | Date | undefined;
2231
+ exclude?: boolean | undefined;
2232
+ priority?: number | undefined;
2233
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2234
+ alternateRefs?: {
2235
+ href: string;
2236
+ hreflang: string;
2237
+ }[] | undefined;
2238
+ images?: {
2239
+ loc: string;
2240
+ caption?: string | undefined;
2241
+ title?: string | undefined;
2242
+ }[] | undefined;
2243
+ news?: {
2244
+ title: string;
2245
+ publication: {
2246
+ name: string;
2247
+ language: string;
2248
+ };
2249
+ publicationDate: string | Date;
2250
+ } | undefined;
2251
+ } | undefined;
2252
+ fromCrawl?: boolean | undefined;
2253
+ };
2254
+ html: string;
2255
+ }, ...args: unknown[]) => any) | undefined;
2256
+ }>>>, {
2257
+ enabled: boolean;
2258
+ outputPath: string;
2259
+ autoSubfolderIndex?: boolean | undefined;
2260
+ crawlLinks: boolean;
2261
+ retryCount: number;
2262
+ retryDelay?: number | undefined;
2263
+ onSuccess?: ((args_0: {
2264
+ page: {
2265
+ path: string;
2266
+ sitemap?: {
2267
+ lastmod?: string | Date | undefined;
2268
+ exclude?: boolean | undefined;
2269
+ priority?: number | undefined;
2270
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2271
+ alternateRefs?: {
2272
+ href: string;
2273
+ hreflang: string;
2274
+ }[] | undefined;
2275
+ images?: {
2276
+ loc: string;
2277
+ caption?: string | undefined;
2278
+ title?: string | undefined;
2279
+ }[] | undefined;
2280
+ news?: {
2281
+ title: string;
2282
+ publication: {
2283
+ name: string;
2284
+ language: string;
2285
+ };
2286
+ publicationDate: string | Date;
2287
+ } | undefined;
2288
+ } | undefined;
2289
+ fromCrawl?: boolean | undefined;
2290
+ };
2291
+ html: string;
2292
+ }, ...args: unknown[]) => any) | undefined;
2293
+ }, {
2294
+ enabled?: boolean | undefined;
2295
+ outputPath?: string | undefined;
2296
+ autoSubfolderIndex?: boolean | undefined;
2297
+ crawlLinks?: boolean | undefined;
2298
+ retryCount?: number | undefined;
2299
+ retryDelay?: number | undefined;
2300
+ onSuccess?: ((args_0: {
2301
+ page: {
2302
+ path: string;
2303
+ sitemap?: {
2304
+ lastmod?: string | Date | undefined;
2305
+ exclude?: boolean | undefined;
2306
+ priority?: number | undefined;
2307
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2308
+ alternateRefs?: {
2309
+ href: string;
2310
+ hreflang: string;
2311
+ }[] | undefined;
2312
+ images?: {
2313
+ loc: string;
2314
+ caption?: string | undefined;
2315
+ title?: string | undefined;
2316
+ }[] | undefined;
2317
+ news?: {
2318
+ title: string;
2319
+ publication: {
2320
+ name: string;
2321
+ language: string;
2322
+ };
2323
+ publicationDate: string | Date;
2324
+ } | undefined;
2325
+ } | undefined;
2326
+ fromCrawl?: boolean | undefined;
2327
+ };
2328
+ html: string;
2329
+ }, ...args: unknown[]) => any) | undefined;
2330
+ } | undefined>;
2331
+ }, "strip", z.ZodTypeAny, {
2332
+ prerender: {
2333
+ enabled: boolean;
2334
+ outputPath: string;
2335
+ autoSubfolderIndex?: boolean | undefined;
2336
+ crawlLinks: boolean;
2337
+ retryCount: number;
2338
+ retryDelay?: number | undefined;
2339
+ onSuccess?: ((args_0: {
2340
+ page: {
2341
+ path: string;
2342
+ sitemap?: {
2343
+ lastmod?: string | Date | undefined;
2344
+ exclude?: boolean | undefined;
2345
+ priority?: number | undefined;
2346
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2347
+ alternateRefs?: {
2348
+ href: string;
2349
+ hreflang: string;
2350
+ }[] | undefined;
2351
+ images?: {
2352
+ loc: string;
2353
+ caption?: string | undefined;
2354
+ title?: string | undefined;
2355
+ }[] | undefined;
2356
+ news?: {
2357
+ title: string;
2358
+ publication: {
2359
+ name: string;
2360
+ language: string;
2361
+ };
2362
+ publicationDate: string | Date;
2363
+ } | undefined;
2364
+ } | undefined;
2365
+ fromCrawl?: boolean | undefined;
2366
+ };
2367
+ html: string;
2368
+ }, ...args: unknown[]) => any) | undefined;
2369
+ };
2370
+ enabled: boolean;
2371
+ maskPath: string;
2372
+ }, {
2373
+ prerender?: {
2374
+ enabled?: boolean | undefined;
2375
+ outputPath?: string | undefined;
2376
+ autoSubfolderIndex?: boolean | undefined;
2377
+ crawlLinks?: boolean | undefined;
2378
+ retryCount?: number | undefined;
2379
+ retryDelay?: number | undefined;
2380
+ onSuccess?: ((args_0: {
2381
+ page: {
2382
+ path: string;
2383
+ sitemap?: {
2384
+ lastmod?: string | Date | undefined;
2385
+ exclude?: boolean | undefined;
2386
+ priority?: number | undefined;
2387
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2388
+ alternateRefs?: {
2389
+ href: string;
2390
+ hreflang: string;
2391
+ }[] | undefined;
2392
+ images?: {
2393
+ loc: string;
2394
+ caption?: string | undefined;
2395
+ title?: string | undefined;
2396
+ }[] | undefined;
2397
+ news?: {
2398
+ title: string;
2399
+ publication: {
2400
+ name: string;
2401
+ language: string;
2402
+ };
2403
+ publicationDate: string | Date;
2404
+ } | undefined;
2405
+ } | undefined;
2406
+ fromCrawl?: boolean | undefined;
2407
+ };
2408
+ html: string;
2409
+ }, ...args: unknown[]) => any) | undefined;
2410
+ } | undefined;
2411
+ enabled?: boolean | undefined;
2412
+ maskPath?: string | undefined;
2413
+ }>>;
2414
+ root: z.ZodDefault<z.ZodOptional<z.ZodString>>;
2415
+ target: z.ZodOptional<z.ZodType<import('nitropack/presets').PresetNameInput | undefined, z.ZodTypeDef, import('nitropack/presets').PresetNameInput | undefined>>;
2416
+ }, "strip", z.ZodTypeAny, {
2417
+ client: {
2418
+ base: string;
2419
+ entry?: string | undefined;
2420
+ };
2421
+ server: {
2422
+ entry?: string | undefined;
2423
+ };
2424
+ root: string;
2425
+ tsr: {
2426
+ srcDirectory: string;
2427
+ target?: "react" | "solid" | undefined;
2428
+ virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
2429
+ routeFilePrefix?: string | undefined;
2430
+ routeFileIgnorePrefix?: string | undefined;
2431
+ routeFileIgnorePattern?: string | undefined;
2432
+ routesDirectory?: string | undefined;
2433
+ quoteStyle?: "single" | "double" | undefined;
2434
+ semicolons?: boolean | undefined;
2435
+ disableLogging?: boolean | undefined;
2436
+ routeTreeFileHeader?: string[] | undefined;
2437
+ indexToken?: string | undefined;
2438
+ routeToken?: string | undefined;
2439
+ pathParamsAllowedCharacters?: (";" | ":" | "@" | "&" | "=" | "+" | "$" | ",")[] | undefined;
2440
+ generatedRouteTree?: string | undefined;
2441
+ disableTypes?: boolean | undefined;
2442
+ verboseFileRoutes?: boolean | undefined;
2443
+ addExtensions?: boolean | undefined;
2444
+ disableManifestGeneration?: boolean | undefined;
2445
+ enableRouteTreeFormatting?: boolean | undefined;
2446
+ routeTreeFileFooter?: string[] | undefined;
2447
+ autoCodeSplitting?: boolean | undefined;
2448
+ customScaffolding?: {
2449
+ routeTemplate?: string | undefined;
2450
+ lazyRouteTemplate?: string | undefined;
2451
+ } | undefined;
2452
+ experimental?: {
2453
+ enableCodeSplitting?: boolean | undefined;
2454
+ } | undefined;
2455
+ };
2456
+ serverFns: {
2457
+ base: string;
2458
+ };
2459
+ public: {
2460
+ base: string;
2461
+ dir: string;
2462
+ };
2463
+ pages: (string | {
2464
+ path: string;
2465
+ prerender?: {
2466
+ enabled?: boolean | undefined;
2467
+ outputPath?: string | undefined;
2468
+ autoSubfolderIndex?: boolean | undefined;
2469
+ crawlLinks?: boolean | undefined;
2470
+ retryCount?: number | undefined;
2471
+ retryDelay?: number | undefined;
2472
+ onSuccess?: ((args_0: {
2473
+ page: {
2474
+ path: string;
2475
+ sitemap?: {
2476
+ lastmod?: string | Date | undefined;
2477
+ exclude?: boolean | undefined;
2478
+ priority?: number | undefined;
2479
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2480
+ alternateRefs?: {
2481
+ href: string;
2482
+ hreflang: string;
2483
+ }[] | undefined;
2484
+ images?: {
2485
+ loc: string;
2486
+ caption?: string | undefined;
2487
+ title?: string | undefined;
2488
+ }[] | undefined;
2489
+ news?: {
2490
+ title: string;
2491
+ publication: {
2492
+ name: string;
2493
+ language: string;
2494
+ };
2495
+ publicationDate: string | Date;
2496
+ } | undefined;
2497
+ } | undefined;
2498
+ fromCrawl?: boolean | undefined;
2499
+ };
2500
+ html: string;
2501
+ }, ...args: unknown[]) => any) | undefined;
2502
+ } | undefined;
2503
+ sitemap?: {
2504
+ lastmod?: string | Date | undefined;
2505
+ exclude?: boolean | undefined;
2506
+ priority?: number | undefined;
2507
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2508
+ alternateRefs?: {
2509
+ href: string;
2510
+ hreflang: string;
2511
+ }[] | undefined;
2512
+ images?: {
2513
+ loc: string;
2514
+ caption?: string | undefined;
2515
+ title?: string | undefined;
2516
+ }[] | undefined;
2517
+ news?: {
2518
+ title: string;
2519
+ publication: {
2520
+ name: string;
2521
+ language: string;
2522
+ };
2523
+ publicationDate: string | Date;
2524
+ } | undefined;
2525
+ } | undefined;
2526
+ fromCrawl?: boolean | undefined;
2527
+ })[];
2528
+ target?: import('nitropack/presets').PresetNameInput | undefined;
2529
+ prerender?: ({
2530
+ filter?: ((args_0: {
2531
+ path: string;
2532
+ prerender?: {
2533
+ enabled?: boolean | undefined;
2534
+ outputPath?: string | undefined;
2055
2535
  autoSubfolderIndex?: boolean | undefined;
2056
2536
  crawlLinks?: boolean | undefined;
2057
2537
  retryCount?: number | undefined;
@@ -2117,6 +2597,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
2117
2597
  failOnError?: boolean | undefined;
2118
2598
  } & {
2119
2599
  enabled?: boolean | undefined;
2600
+ outputPath?: string | undefined;
2120
2601
  autoSubfolderIndex?: boolean | undefined;
2121
2602
  crawlLinks?: boolean | undefined;
2122
2603
  retryCount?: number | undefined;
@@ -2155,6 +2636,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
2155
2636
  sitemap?: {
2156
2637
  host?: string | undefined;
2157
2638
  enabled?: boolean | undefined;
2639
+ outputPath?: string | undefined;
2158
2640
  autoSubfolderIndex?: boolean | undefined;
2159
2641
  crawlLinks?: boolean | undefined;
2160
2642
  retryCount?: number | undefined;
@@ -2190,6 +2672,48 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
2190
2672
  html: string;
2191
2673
  }, ...args: unknown[]) => any) | undefined;
2192
2674
  } | undefined;
2675
+ spa?: {
2676
+ prerender: {
2677
+ enabled: boolean;
2678
+ outputPath: string;
2679
+ autoSubfolderIndex?: boolean | undefined;
2680
+ crawlLinks: boolean;
2681
+ retryCount: number;
2682
+ retryDelay?: number | undefined;
2683
+ onSuccess?: ((args_0: {
2684
+ page: {
2685
+ path: string;
2686
+ sitemap?: {
2687
+ lastmod?: string | Date | undefined;
2688
+ exclude?: boolean | undefined;
2689
+ priority?: number | undefined;
2690
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2691
+ alternateRefs?: {
2692
+ href: string;
2693
+ hreflang: string;
2694
+ }[] | undefined;
2695
+ images?: {
2696
+ loc: string;
2697
+ caption?: string | undefined;
2698
+ title?: string | undefined;
2699
+ }[] | undefined;
2700
+ news?: {
2701
+ title: string;
2702
+ publication: {
2703
+ name: string;
2704
+ language: string;
2705
+ };
2706
+ publicationDate: string | Date;
2707
+ } | undefined;
2708
+ } | undefined;
2709
+ fromCrawl?: boolean | undefined;
2710
+ };
2711
+ html: string;
2712
+ }, ...args: unknown[]) => any) | undefined;
2713
+ };
2714
+ enabled: boolean;
2715
+ maskPath: string;
2716
+ } | undefined;
2193
2717
  }, {
2194
2718
  client?: {
2195
2719
  entry?: string | undefined;
@@ -2205,6 +2729,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
2205
2729
  path: string;
2206
2730
  prerender?: {
2207
2731
  enabled?: boolean | undefined;
2732
+ outputPath?: string | undefined;
2208
2733
  autoSubfolderIndex?: boolean | undefined;
2209
2734
  crawlLinks?: boolean | undefined;
2210
2735
  retryCount?: number | undefined;
@@ -2270,6 +2795,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
2270
2795
  failOnError?: boolean | undefined;
2271
2796
  } & {
2272
2797
  enabled?: boolean | undefined;
2798
+ outputPath?: string | undefined;
2273
2799
  autoSubfolderIndex?: boolean | undefined;
2274
2800
  crawlLinks?: boolean | undefined;
2275
2801
  retryCount?: number | undefined;
@@ -2346,6 +2872,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
2346
2872
  sitemap?: {
2347
2873
  host?: string | undefined;
2348
2874
  enabled?: boolean | undefined;
2875
+ outputPath?: string | undefined;
2349
2876
  autoSubfolderIndex?: boolean | undefined;
2350
2877
  crawlLinks?: boolean | undefined;
2351
2878
  retryCount?: number | undefined;
@@ -2385,6 +2912,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
2385
2912
  path: string;
2386
2913
  prerender?: {
2387
2914
  enabled?: boolean | undefined;
2915
+ outputPath?: string | undefined;
2388
2916
  autoSubfolderIndex?: boolean | undefined;
2389
2917
  crawlLinks?: boolean | undefined;
2390
2918
  retryCount?: number | undefined;
@@ -2445,6 +2973,48 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
2445
2973
  } | undefined;
2446
2974
  fromCrawl?: boolean | undefined;
2447
2975
  })[] | undefined;
2976
+ spa?: {
2977
+ prerender?: {
2978
+ enabled?: boolean | undefined;
2979
+ outputPath?: string | undefined;
2980
+ autoSubfolderIndex?: boolean | undefined;
2981
+ crawlLinks?: boolean | undefined;
2982
+ retryCount?: number | undefined;
2983
+ retryDelay?: number | undefined;
2984
+ onSuccess?: ((args_0: {
2985
+ page: {
2986
+ path: string;
2987
+ sitemap?: {
2988
+ lastmod?: string | Date | undefined;
2989
+ exclude?: boolean | undefined;
2990
+ priority?: number | undefined;
2991
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2992
+ alternateRefs?: {
2993
+ href: string;
2994
+ hreflang: string;
2995
+ }[] | undefined;
2996
+ images?: {
2997
+ loc: string;
2998
+ caption?: string | undefined;
2999
+ title?: string | undefined;
3000
+ }[] | undefined;
3001
+ news?: {
3002
+ title: string;
3003
+ publication: {
3004
+ name: string;
3005
+ language: string;
3006
+ };
3007
+ publicationDate: string | Date;
3008
+ } | undefined;
3009
+ } | undefined;
3010
+ fromCrawl?: boolean | undefined;
3011
+ };
3012
+ html: string;
3013
+ }, ...args: unknown[]) => any) | undefined;
3014
+ } | undefined;
3015
+ enabled?: boolean | undefined;
3016
+ maskPath?: string | undefined;
3017
+ } | undefined;
2448
3018
  }>>>;
2449
3019
  parse: (opts?: z.input<z.ZodDefault<z.ZodOptional<z.ZodObject<{
2450
3020
  tsr: z.ZodDefault<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
@@ -2690,6 +3260,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
2690
3260
  }, {
2691
3261
  prerender: z.ZodOptional<z.ZodObject<{
2692
3262
  enabled: z.ZodOptional<z.ZodBoolean>;
3263
+ outputPath: z.ZodOptional<z.ZodString>;
2693
3264
  autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
2694
3265
  crawlLinks: z.ZodOptional<z.ZodBoolean>;
2695
3266
  retryCount: z.ZodOptional<z.ZodNumber>;
@@ -2914,6 +3485,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
2914
3485
  }>], z.ZodUnknown>, z.ZodAny>>;
2915
3486
  }, "strip", z.ZodTypeAny, {
2916
3487
  enabled?: boolean | undefined;
3488
+ outputPath?: string | undefined;
2917
3489
  autoSubfolderIndex?: boolean | undefined;
2918
3490
  crawlLinks?: boolean | undefined;
2919
3491
  retryCount?: number | undefined;
@@ -2950,6 +3522,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
2950
3522
  }, ...args: unknown[]) => any) | undefined;
2951
3523
  }, {
2952
3524
  enabled?: boolean | undefined;
3525
+ outputPath?: string | undefined;
2953
3526
  autoSubfolderIndex?: boolean | undefined;
2954
3527
  crawlLinks?: boolean | undefined;
2955
3528
  retryCount?: number | undefined;
@@ -2989,6 +3562,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
2989
3562
  path: string;
2990
3563
  prerender?: {
2991
3564
  enabled?: boolean | undefined;
3565
+ outputPath?: string | undefined;
2992
3566
  autoSubfolderIndex?: boolean | undefined;
2993
3567
  crawlLinks?: boolean | undefined;
2994
3568
  retryCount?: number | undefined;
@@ -3052,6 +3626,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
3052
3626
  path: string;
3053
3627
  prerender?: {
3054
3628
  enabled?: boolean | undefined;
3629
+ outputPath?: string | undefined;
3055
3630
  autoSubfolderIndex?: boolean | undefined;
3056
3631
  crawlLinks?: boolean | undefined;
3057
3632
  retryCount?: number | undefined;
@@ -3114,6 +3689,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
3114
3689
  }>]>, "many">>>;
3115
3690
  sitemap: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
3116
3691
  enabled: z.ZodOptional<z.ZodBoolean>;
3692
+ outputPath: z.ZodOptional<z.ZodString>;
3117
3693
  autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
3118
3694
  crawlLinks: z.ZodOptional<z.ZodBoolean>;
3119
3695
  retryCount: z.ZodOptional<z.ZodNumber>;
@@ -3341,6 +3917,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
3341
3917
  }>, "strip", z.ZodTypeAny, {
3342
3918
  host?: string | undefined;
3343
3919
  enabled?: boolean | undefined;
3920
+ outputPath?: string | undefined;
3344
3921
  autoSubfolderIndex?: boolean | undefined;
3345
3922
  crawlLinks?: boolean | undefined;
3346
3923
  retryCount?: number | undefined;
@@ -3378,6 +3955,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
3378
3955
  }, {
3379
3956
  host?: string | undefined;
3380
3957
  enabled?: boolean | undefined;
3958
+ outputPath?: string | undefined;
3381
3959
  autoSubfolderIndex?: boolean | undefined;
3382
3960
  crawlLinks?: boolean | undefined;
3383
3961
  retryCount?: number | undefined;
@@ -3523,6 +4101,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
3523
4101
  }, {
3524
4102
  prerender: z.ZodOptional<z.ZodObject<{
3525
4103
  enabled: z.ZodOptional<z.ZodBoolean>;
4104
+ outputPath: z.ZodOptional<z.ZodString>;
3526
4105
  autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
3527
4106
  crawlLinks: z.ZodOptional<z.ZodBoolean>;
3528
4107
  retryCount: z.ZodOptional<z.ZodNumber>;
@@ -3747,6 +4326,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
3747
4326
  }>], z.ZodUnknown>, z.ZodAny>>;
3748
4327
  }, "strip", z.ZodTypeAny, {
3749
4328
  enabled?: boolean | undefined;
4329
+ outputPath?: string | undefined;
3750
4330
  autoSubfolderIndex?: boolean | undefined;
3751
4331
  crawlLinks?: boolean | undefined;
3752
4332
  retryCount?: number | undefined;
@@ -3783,6 +4363,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
3783
4363
  }, ...args: unknown[]) => any) | undefined;
3784
4364
  }, {
3785
4365
  enabled?: boolean | undefined;
4366
+ outputPath?: string | undefined;
3786
4367
  autoSubfolderIndex?: boolean | undefined;
3787
4368
  crawlLinks?: boolean | undefined;
3788
4369
  retryCount?: number | undefined;
@@ -3822,6 +4403,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
3822
4403
  path: string;
3823
4404
  prerender?: {
3824
4405
  enabled?: boolean | undefined;
4406
+ outputPath?: string | undefined;
3825
4407
  autoSubfolderIndex?: boolean | undefined;
3826
4408
  crawlLinks?: boolean | undefined;
3827
4409
  retryCount?: number | undefined;
@@ -3885,6 +4467,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
3885
4467
  path: string;
3886
4468
  prerender?: {
3887
4469
  enabled?: boolean | undefined;
4470
+ outputPath?: string | undefined;
3888
4471
  autoSubfolderIndex?: boolean | undefined;
3889
4472
  crawlLinks?: boolean | undefined;
3890
4473
  retryCount?: number | undefined;
@@ -3951,6 +4534,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
3951
4534
  path: string;
3952
4535
  prerender?: {
3953
4536
  enabled?: boolean | undefined;
4537
+ outputPath?: string | undefined;
3954
4538
  autoSubfolderIndex?: boolean | undefined;
3955
4539
  crawlLinks?: boolean | undefined;
3956
4540
  retryCount?: number | undefined;
@@ -4019,6 +4603,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
4019
4603
  path: string;
4020
4604
  prerender?: {
4021
4605
  enabled?: boolean | undefined;
4606
+ outputPath?: string | undefined;
4022
4607
  autoSubfolderIndex?: boolean | undefined;
4023
4608
  crawlLinks?: boolean | undefined;
4024
4609
  retryCount?: number | undefined;
@@ -4084,6 +4669,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
4084
4669
  failOnError?: boolean | undefined;
4085
4670
  }>, z.ZodOptional<z.ZodObject<{
4086
4671
  enabled: z.ZodOptional<z.ZodBoolean>;
4672
+ outputPath: z.ZodOptional<z.ZodString>;
4087
4673
  autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
4088
4674
  crawlLinks: z.ZodOptional<z.ZodBoolean>;
4089
4675
  retryCount: z.ZodOptional<z.ZodNumber>;
@@ -4105,49 +4691,255 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
4105
4691
  }, {
4106
4692
  href: string;
4107
4693
  hreflang: string;
4108
- }>, "many">>;
4109
- images: z.ZodOptional<z.ZodArray<z.ZodObject<{
4110
- loc: z.ZodString;
4111
- caption: z.ZodOptional<z.ZodString>;
4112
- title: z.ZodOptional<z.ZodString>;
4113
- }, "strip", z.ZodTypeAny, {
4694
+ }>, "many">>;
4695
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
4696
+ loc: z.ZodString;
4697
+ caption: z.ZodOptional<z.ZodString>;
4698
+ title: z.ZodOptional<z.ZodString>;
4699
+ }, "strip", z.ZodTypeAny, {
4700
+ loc: string;
4701
+ caption?: string | undefined;
4702
+ title?: string | undefined;
4703
+ }, {
4704
+ loc: string;
4705
+ caption?: string | undefined;
4706
+ title?: string | undefined;
4707
+ }>, "many">>;
4708
+ news: z.ZodOptional<z.ZodObject<{
4709
+ publication: z.ZodObject<{
4710
+ name: z.ZodString;
4711
+ language: z.ZodString;
4712
+ }, "strip", z.ZodTypeAny, {
4713
+ name: string;
4714
+ language: string;
4715
+ }, {
4716
+ name: string;
4717
+ language: string;
4718
+ }>;
4719
+ publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
4720
+ title: z.ZodString;
4721
+ }, "strip", z.ZodTypeAny, {
4722
+ title: string;
4723
+ publication: {
4724
+ name: string;
4725
+ language: string;
4726
+ };
4727
+ publicationDate: string | Date;
4728
+ }, {
4729
+ title: string;
4730
+ publication: {
4731
+ name: string;
4732
+ language: string;
4733
+ };
4734
+ publicationDate: string | Date;
4735
+ }>>;
4736
+ }, "strip", z.ZodTypeAny, {
4737
+ lastmod?: string | Date | undefined;
4738
+ exclude?: boolean | undefined;
4739
+ priority?: number | undefined;
4740
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
4741
+ alternateRefs?: {
4742
+ href: string;
4743
+ hreflang: string;
4744
+ }[] | undefined;
4745
+ images?: {
4746
+ loc: string;
4747
+ caption?: string | undefined;
4748
+ title?: string | undefined;
4749
+ }[] | undefined;
4750
+ news?: {
4751
+ title: string;
4752
+ publication: {
4753
+ name: string;
4754
+ language: string;
4755
+ };
4756
+ publicationDate: string | Date;
4757
+ } | undefined;
4758
+ }, {
4759
+ lastmod?: string | Date | undefined;
4760
+ exclude?: boolean | undefined;
4761
+ priority?: number | undefined;
4762
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
4763
+ alternateRefs?: {
4764
+ href: string;
4765
+ hreflang: string;
4766
+ }[] | undefined;
4767
+ images?: {
4768
+ loc: string;
4769
+ caption?: string | undefined;
4770
+ title?: string | undefined;
4771
+ }[] | undefined;
4772
+ news?: {
4773
+ title: string;
4774
+ publication: {
4775
+ name: string;
4776
+ language: string;
4777
+ };
4778
+ publicationDate: string | Date;
4779
+ } | undefined;
4780
+ }>>;
4781
+ fromCrawl: z.ZodOptional<z.ZodBoolean>;
4782
+ }, "strip", z.ZodTypeAny, {
4783
+ path: string;
4784
+ sitemap?: {
4785
+ lastmod?: string | Date | undefined;
4786
+ exclude?: boolean | undefined;
4787
+ priority?: number | undefined;
4788
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
4789
+ alternateRefs?: {
4790
+ href: string;
4791
+ hreflang: string;
4792
+ }[] | undefined;
4793
+ images?: {
4794
+ loc: string;
4795
+ caption?: string | undefined;
4796
+ title?: string | undefined;
4797
+ }[] | undefined;
4798
+ news?: {
4799
+ title: string;
4800
+ publication: {
4801
+ name: string;
4802
+ language: string;
4803
+ };
4804
+ publicationDate: string | Date;
4805
+ } | undefined;
4806
+ } | undefined;
4807
+ fromCrawl?: boolean | undefined;
4808
+ }, {
4809
+ path: string;
4810
+ sitemap?: {
4811
+ lastmod?: string | Date | undefined;
4812
+ exclude?: boolean | undefined;
4813
+ priority?: number | undefined;
4814
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
4815
+ alternateRefs?: {
4816
+ href: string;
4817
+ hreflang: string;
4818
+ }[] | undefined;
4819
+ images?: {
4114
4820
  loc: string;
4115
4821
  caption?: string | undefined;
4116
4822
  title?: string | undefined;
4117
- }, {
4823
+ }[] | undefined;
4824
+ news?: {
4825
+ title: string;
4826
+ publication: {
4827
+ name: string;
4828
+ language: string;
4829
+ };
4830
+ publicationDate: string | Date;
4831
+ } | undefined;
4832
+ } | undefined;
4833
+ fromCrawl?: boolean | undefined;
4834
+ }>;
4835
+ html: z.ZodString;
4836
+ }, "strip", z.ZodTypeAny, {
4837
+ page: {
4838
+ path: string;
4839
+ sitemap?: {
4840
+ lastmod?: string | Date | undefined;
4841
+ exclude?: boolean | undefined;
4842
+ priority?: number | undefined;
4843
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
4844
+ alternateRefs?: {
4845
+ href: string;
4846
+ hreflang: string;
4847
+ }[] | undefined;
4848
+ images?: {
4118
4849
  loc: string;
4119
4850
  caption?: string | undefined;
4120
4851
  title?: string | undefined;
4121
- }>, "many">>;
4122
- news: z.ZodOptional<z.ZodObject<{
4123
- publication: z.ZodObject<{
4124
- name: z.ZodString;
4125
- language: z.ZodString;
4126
- }, "strip", z.ZodTypeAny, {
4127
- name: string;
4128
- language: string;
4129
- }, {
4852
+ }[] | undefined;
4853
+ news?: {
4854
+ title: string;
4855
+ publication: {
4130
4856
  name: string;
4131
4857
  language: string;
4132
- }>;
4133
- publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
4134
- title: z.ZodString;
4135
- }, "strip", z.ZodTypeAny, {
4858
+ };
4859
+ publicationDate: string | Date;
4860
+ } | undefined;
4861
+ } | undefined;
4862
+ fromCrawl?: boolean | undefined;
4863
+ };
4864
+ html: string;
4865
+ }, {
4866
+ page: {
4867
+ path: string;
4868
+ sitemap?: {
4869
+ lastmod?: string | Date | undefined;
4870
+ exclude?: boolean | undefined;
4871
+ priority?: number | undefined;
4872
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
4873
+ alternateRefs?: {
4874
+ href: string;
4875
+ hreflang: string;
4876
+ }[] | undefined;
4877
+ images?: {
4878
+ loc: string;
4879
+ caption?: string | undefined;
4880
+ title?: string | undefined;
4881
+ }[] | undefined;
4882
+ news?: {
4136
4883
  title: string;
4137
4884
  publication: {
4138
4885
  name: string;
4139
4886
  language: string;
4140
4887
  };
4141
4888
  publicationDate: string | Date;
4142
- }, {
4889
+ } | undefined;
4890
+ } | undefined;
4891
+ fromCrawl?: boolean | undefined;
4892
+ };
4893
+ html: string;
4894
+ }>], z.ZodUnknown>, z.ZodAny>>;
4895
+ }, "strip", z.ZodTypeAny, {
4896
+ enabled?: boolean | undefined;
4897
+ outputPath?: string | undefined;
4898
+ autoSubfolderIndex?: boolean | undefined;
4899
+ crawlLinks?: boolean | undefined;
4900
+ retryCount?: number | undefined;
4901
+ retryDelay?: number | undefined;
4902
+ onSuccess?: ((args_0: {
4903
+ page: {
4904
+ path: string;
4905
+ sitemap?: {
4906
+ lastmod?: string | Date | undefined;
4907
+ exclude?: boolean | undefined;
4908
+ priority?: number | undefined;
4909
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
4910
+ alternateRefs?: {
4911
+ href: string;
4912
+ hreflang: string;
4913
+ }[] | undefined;
4914
+ images?: {
4915
+ loc: string;
4916
+ caption?: string | undefined;
4917
+ title?: string | undefined;
4918
+ }[] | undefined;
4919
+ news?: {
4143
4920
  title: string;
4144
4921
  publication: {
4145
4922
  name: string;
4146
4923
  language: string;
4147
4924
  };
4148
4925
  publicationDate: string | Date;
4149
- }>>;
4150
- }, "strip", z.ZodTypeAny, {
4926
+ } | undefined;
4927
+ } | undefined;
4928
+ fromCrawl?: boolean | undefined;
4929
+ };
4930
+ html: string;
4931
+ }, ...args: unknown[]) => any) | undefined;
4932
+ }, {
4933
+ enabled?: boolean | undefined;
4934
+ outputPath?: string | undefined;
4935
+ autoSubfolderIndex?: boolean | undefined;
4936
+ crawlLinks?: boolean | undefined;
4937
+ retryCount?: number | undefined;
4938
+ retryDelay?: number | undefined;
4939
+ onSuccess?: ((args_0: {
4940
+ page: {
4941
+ path: string;
4942
+ sitemap?: {
4151
4943
  lastmod?: string | Date | undefined;
4152
4944
  exclude?: boolean | undefined;
4153
4945
  priority?: number | undefined;
@@ -4169,216 +4961,472 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
4169
4961
  };
4170
4962
  publicationDate: string | Date;
4171
4963
  } | undefined;
4964
+ } | undefined;
4965
+ fromCrawl?: boolean | undefined;
4966
+ };
4967
+ html: string;
4968
+ }, ...args: unknown[]) => any) | undefined;
4969
+ }>>>>;
4970
+ spa: z.ZodOptional<z.ZodObject<{
4971
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
4972
+ maskPath: z.ZodDefault<z.ZodOptional<z.ZodString>>;
4973
+ prerender: z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodObject<{
4974
+ enabled: z.ZodOptional<z.ZodBoolean>;
4975
+ outputPath: z.ZodOptional<z.ZodString>;
4976
+ autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
4977
+ crawlLinks: z.ZodOptional<z.ZodBoolean>;
4978
+ retryCount: z.ZodOptional<z.ZodNumber>;
4979
+ retryDelay: z.ZodOptional<z.ZodNumber>;
4980
+ onSuccess: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
4981
+ page: z.ZodObject<{
4982
+ path: z.ZodString;
4983
+ sitemap: z.ZodOptional<z.ZodObject<{
4984
+ exclude: z.ZodOptional<z.ZodBoolean>;
4985
+ priority: z.ZodOptional<z.ZodNumber>;
4986
+ changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
4987
+ lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
4988
+ alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
4989
+ href: z.ZodString;
4990
+ hreflang: z.ZodString;
4991
+ }, "strip", z.ZodTypeAny, {
4992
+ href: string;
4993
+ hreflang: string;
4994
+ }, {
4995
+ href: string;
4996
+ hreflang: string;
4997
+ }>, "many">>;
4998
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
4999
+ loc: z.ZodString;
5000
+ caption: z.ZodOptional<z.ZodString>;
5001
+ title: z.ZodOptional<z.ZodString>;
5002
+ }, "strip", z.ZodTypeAny, {
5003
+ loc: string;
5004
+ caption?: string | undefined;
5005
+ title?: string | undefined;
5006
+ }, {
5007
+ loc: string;
5008
+ caption?: string | undefined;
5009
+ title?: string | undefined;
5010
+ }>, "many">>;
5011
+ news: z.ZodOptional<z.ZodObject<{
5012
+ publication: z.ZodObject<{
5013
+ name: z.ZodString;
5014
+ language: z.ZodString;
5015
+ }, "strip", z.ZodTypeAny, {
5016
+ name: string;
5017
+ language: string;
5018
+ }, {
5019
+ name: string;
5020
+ language: string;
5021
+ }>;
5022
+ publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
5023
+ title: z.ZodString;
5024
+ }, "strip", z.ZodTypeAny, {
5025
+ title: string;
5026
+ publication: {
5027
+ name: string;
5028
+ language: string;
5029
+ };
5030
+ publicationDate: string | Date;
5031
+ }, {
5032
+ title: string;
5033
+ publication: {
5034
+ name: string;
5035
+ language: string;
5036
+ };
5037
+ publicationDate: string | Date;
5038
+ }>>;
5039
+ }, "strip", z.ZodTypeAny, {
5040
+ lastmod?: string | Date | undefined;
5041
+ exclude?: boolean | undefined;
5042
+ priority?: number | undefined;
5043
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
5044
+ alternateRefs?: {
5045
+ href: string;
5046
+ hreflang: string;
5047
+ }[] | undefined;
5048
+ images?: {
5049
+ loc: string;
5050
+ caption?: string | undefined;
5051
+ title?: string | undefined;
5052
+ }[] | undefined;
5053
+ news?: {
5054
+ title: string;
5055
+ publication: {
5056
+ name: string;
5057
+ language: string;
5058
+ };
5059
+ publicationDate: string | Date;
5060
+ } | undefined;
5061
+ }, {
5062
+ lastmod?: string | Date | undefined;
5063
+ exclude?: boolean | undefined;
5064
+ priority?: number | undefined;
5065
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
5066
+ alternateRefs?: {
5067
+ href: string;
5068
+ hreflang: string;
5069
+ }[] | undefined;
5070
+ images?: {
5071
+ loc: string;
5072
+ caption?: string | undefined;
5073
+ title?: string | undefined;
5074
+ }[] | undefined;
5075
+ news?: {
5076
+ title: string;
5077
+ publication: {
5078
+ name: string;
5079
+ language: string;
5080
+ };
5081
+ publicationDate: string | Date;
5082
+ } | undefined;
5083
+ }>>;
5084
+ fromCrawl: z.ZodOptional<z.ZodBoolean>;
5085
+ }, "strip", z.ZodTypeAny, {
5086
+ path: string;
5087
+ sitemap?: {
5088
+ lastmod?: string | Date | undefined;
5089
+ exclude?: boolean | undefined;
5090
+ priority?: number | undefined;
5091
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
5092
+ alternateRefs?: {
5093
+ href: string;
5094
+ hreflang: string;
5095
+ }[] | undefined;
5096
+ images?: {
5097
+ loc: string;
5098
+ caption?: string | undefined;
5099
+ title?: string | undefined;
5100
+ }[] | undefined;
5101
+ news?: {
5102
+ title: string;
5103
+ publication: {
5104
+ name: string;
5105
+ language: string;
5106
+ };
5107
+ publicationDate: string | Date;
5108
+ } | undefined;
5109
+ } | undefined;
5110
+ fromCrawl?: boolean | undefined;
4172
5111
  }, {
4173
- lastmod?: string | Date | undefined;
4174
- exclude?: boolean | undefined;
4175
- priority?: number | undefined;
4176
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
4177
- alternateRefs?: {
4178
- href: string;
4179
- hreflang: string;
4180
- }[] | undefined;
4181
- images?: {
4182
- loc: string;
4183
- caption?: string | undefined;
4184
- title?: string | undefined;
4185
- }[] | undefined;
4186
- news?: {
4187
- title: string;
4188
- publication: {
4189
- name: string;
4190
- language: string;
4191
- };
4192
- publicationDate: string | Date;
5112
+ path: string;
5113
+ sitemap?: {
5114
+ lastmod?: string | Date | undefined;
5115
+ exclude?: boolean | undefined;
5116
+ priority?: number | undefined;
5117
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
5118
+ alternateRefs?: {
5119
+ href: string;
5120
+ hreflang: string;
5121
+ }[] | undefined;
5122
+ images?: {
5123
+ loc: string;
5124
+ caption?: string | undefined;
5125
+ title?: string | undefined;
5126
+ }[] | undefined;
5127
+ news?: {
5128
+ title: string;
5129
+ publication: {
5130
+ name: string;
5131
+ language: string;
5132
+ };
5133
+ publicationDate: string | Date;
5134
+ } | undefined;
4193
5135
  } | undefined;
4194
- }>>;
4195
- fromCrawl: z.ZodOptional<z.ZodBoolean>;
5136
+ fromCrawl?: boolean | undefined;
5137
+ }>;
5138
+ html: z.ZodString;
4196
5139
  }, "strip", z.ZodTypeAny, {
4197
- path: string;
4198
- sitemap?: {
4199
- lastmod?: string | Date | undefined;
4200
- exclude?: boolean | undefined;
4201
- priority?: number | undefined;
4202
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
4203
- alternateRefs?: {
4204
- href: string;
4205
- hreflang: string;
4206
- }[] | undefined;
4207
- images?: {
4208
- loc: string;
4209
- caption?: string | undefined;
4210
- title?: string | undefined;
4211
- }[] | undefined;
4212
- news?: {
4213
- title: string;
4214
- publication: {
4215
- name: string;
4216
- language: string;
4217
- };
4218
- publicationDate: string | Date;
5140
+ page: {
5141
+ path: string;
5142
+ sitemap?: {
5143
+ lastmod?: string | Date | undefined;
5144
+ exclude?: boolean | undefined;
5145
+ priority?: number | undefined;
5146
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
5147
+ alternateRefs?: {
5148
+ href: string;
5149
+ hreflang: string;
5150
+ }[] | undefined;
5151
+ images?: {
5152
+ loc: string;
5153
+ caption?: string | undefined;
5154
+ title?: string | undefined;
5155
+ }[] | undefined;
5156
+ news?: {
5157
+ title: string;
5158
+ publication: {
5159
+ name: string;
5160
+ language: string;
5161
+ };
5162
+ publicationDate: string | Date;
5163
+ } | undefined;
4219
5164
  } | undefined;
4220
- } | undefined;
4221
- fromCrawl?: boolean | undefined;
5165
+ fromCrawl?: boolean | undefined;
5166
+ };
5167
+ html: string;
4222
5168
  }, {
4223
- path: string;
4224
- sitemap?: {
4225
- lastmod?: string | Date | undefined;
4226
- exclude?: boolean | undefined;
4227
- priority?: number | undefined;
4228
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
4229
- alternateRefs?: {
4230
- href: string;
4231
- hreflang: string;
4232
- }[] | undefined;
4233
- images?: {
4234
- loc: string;
4235
- caption?: string | undefined;
4236
- title?: string | undefined;
4237
- }[] | undefined;
4238
- news?: {
4239
- title: string;
4240
- publication: {
4241
- name: string;
4242
- language: string;
4243
- };
4244
- publicationDate: string | Date;
5169
+ page: {
5170
+ path: string;
5171
+ sitemap?: {
5172
+ lastmod?: string | Date | undefined;
5173
+ exclude?: boolean | undefined;
5174
+ priority?: number | undefined;
5175
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
5176
+ alternateRefs?: {
5177
+ href: string;
5178
+ hreflang: string;
5179
+ }[] | undefined;
5180
+ images?: {
5181
+ loc: string;
5182
+ caption?: string | undefined;
5183
+ title?: string | undefined;
5184
+ }[] | undefined;
5185
+ news?: {
5186
+ title: string;
5187
+ publication: {
5188
+ name: string;
5189
+ language: string;
5190
+ };
5191
+ publicationDate: string | Date;
5192
+ } | undefined;
4245
5193
  } | undefined;
4246
- } | undefined;
4247
- fromCrawl?: boolean | undefined;
4248
- }>;
4249
- html: z.ZodString;
5194
+ fromCrawl?: boolean | undefined;
5195
+ };
5196
+ html: string;
5197
+ }>], z.ZodUnknown>, z.ZodAny>>;
4250
5198
  }, "strip", z.ZodTypeAny, {
4251
- page: {
4252
- path: string;
4253
- sitemap?: {
4254
- lastmod?: string | Date | undefined;
4255
- exclude?: boolean | undefined;
4256
- priority?: number | undefined;
4257
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
4258
- alternateRefs?: {
4259
- href: string;
4260
- hreflang: string;
4261
- }[] | undefined;
4262
- images?: {
4263
- loc: string;
4264
- caption?: string | undefined;
4265
- title?: string | undefined;
4266
- }[] | undefined;
4267
- news?: {
4268
- title: string;
4269
- publication: {
4270
- name: string;
4271
- language: string;
4272
- };
4273
- publicationDate: string | Date;
5199
+ enabled?: boolean | undefined;
5200
+ outputPath?: string | undefined;
5201
+ autoSubfolderIndex?: boolean | undefined;
5202
+ crawlLinks?: boolean | undefined;
5203
+ retryCount?: number | undefined;
5204
+ retryDelay?: number | undefined;
5205
+ onSuccess?: ((args_0: {
5206
+ page: {
5207
+ path: string;
5208
+ sitemap?: {
5209
+ lastmod?: string | Date | undefined;
5210
+ exclude?: boolean | undefined;
5211
+ priority?: number | undefined;
5212
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
5213
+ alternateRefs?: {
5214
+ href: string;
5215
+ hreflang: string;
5216
+ }[] | undefined;
5217
+ images?: {
5218
+ loc: string;
5219
+ caption?: string | undefined;
5220
+ title?: string | undefined;
5221
+ }[] | undefined;
5222
+ news?: {
5223
+ title: string;
5224
+ publication: {
5225
+ name: string;
5226
+ language: string;
5227
+ };
5228
+ publicationDate: string | Date;
5229
+ } | undefined;
5230
+ } | undefined;
5231
+ fromCrawl?: boolean | undefined;
5232
+ };
5233
+ html: string;
5234
+ }, ...args: unknown[]) => any) | undefined;
5235
+ }, {
5236
+ enabled?: boolean | undefined;
5237
+ outputPath?: string | undefined;
5238
+ autoSubfolderIndex?: boolean | undefined;
5239
+ crawlLinks?: boolean | undefined;
5240
+ retryCount?: number | undefined;
5241
+ retryDelay?: number | undefined;
5242
+ onSuccess?: ((args_0: {
5243
+ page: {
5244
+ path: string;
5245
+ sitemap?: {
5246
+ lastmod?: string | Date | undefined;
5247
+ exclude?: boolean | undefined;
5248
+ priority?: number | undefined;
5249
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
5250
+ alternateRefs?: {
5251
+ href: string;
5252
+ hreflang: string;
5253
+ }[] | undefined;
5254
+ images?: {
5255
+ loc: string;
5256
+ caption?: string | undefined;
5257
+ title?: string | undefined;
5258
+ }[] | undefined;
5259
+ news?: {
5260
+ title: string;
5261
+ publication: {
5262
+ name: string;
5263
+ language: string;
5264
+ };
5265
+ publicationDate: string | Date;
5266
+ } | undefined;
4274
5267
  } | undefined;
4275
- } | undefined;
4276
- fromCrawl?: boolean | undefined;
4277
- };
4278
- html: string;
5268
+ fromCrawl?: boolean | undefined;
5269
+ };
5270
+ html: string;
5271
+ }, ...args: unknown[]) => any) | undefined;
5272
+ }>>>, {
5273
+ enabled: boolean;
5274
+ outputPath: string;
5275
+ autoSubfolderIndex?: boolean | undefined;
5276
+ crawlLinks: boolean;
5277
+ retryCount: number;
5278
+ retryDelay?: number | undefined;
5279
+ onSuccess?: ((args_0: {
5280
+ page: {
5281
+ path: string;
5282
+ sitemap?: {
5283
+ lastmod?: string | Date | undefined;
5284
+ exclude?: boolean | undefined;
5285
+ priority?: number | undefined;
5286
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
5287
+ alternateRefs?: {
5288
+ href: string;
5289
+ hreflang: string;
5290
+ }[] | undefined;
5291
+ images?: {
5292
+ loc: string;
5293
+ caption?: string | undefined;
5294
+ title?: string | undefined;
5295
+ }[] | undefined;
5296
+ news?: {
5297
+ title: string;
5298
+ publication: {
5299
+ name: string;
5300
+ language: string;
5301
+ };
5302
+ publicationDate: string | Date;
5303
+ } | undefined;
5304
+ } | undefined;
5305
+ fromCrawl?: boolean | undefined;
5306
+ };
5307
+ html: string;
5308
+ }, ...args: unknown[]) => any) | undefined;
4279
5309
  }, {
4280
- page: {
4281
- path: string;
4282
- sitemap?: {
4283
- lastmod?: string | Date | undefined;
4284
- exclude?: boolean | undefined;
4285
- priority?: number | undefined;
4286
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
4287
- alternateRefs?: {
4288
- href: string;
4289
- hreflang: string;
4290
- }[] | undefined;
4291
- images?: {
4292
- loc: string;
4293
- caption?: string | undefined;
4294
- title?: string | undefined;
4295
- }[] | undefined;
4296
- news?: {
4297
- title: string;
4298
- publication: {
4299
- name: string;
4300
- language: string;
4301
- };
4302
- publicationDate: string | Date;
5310
+ enabled?: boolean | undefined;
5311
+ outputPath?: string | undefined;
5312
+ autoSubfolderIndex?: boolean | undefined;
5313
+ crawlLinks?: boolean | undefined;
5314
+ retryCount?: number | undefined;
5315
+ retryDelay?: number | undefined;
5316
+ onSuccess?: ((args_0: {
5317
+ page: {
5318
+ path: string;
5319
+ sitemap?: {
5320
+ lastmod?: string | Date | undefined;
5321
+ exclude?: boolean | undefined;
5322
+ priority?: number | undefined;
5323
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
5324
+ alternateRefs?: {
5325
+ href: string;
5326
+ hreflang: string;
5327
+ }[] | undefined;
5328
+ images?: {
5329
+ loc: string;
5330
+ caption?: string | undefined;
5331
+ title?: string | undefined;
5332
+ }[] | undefined;
5333
+ news?: {
5334
+ title: string;
5335
+ publication: {
5336
+ name: string;
5337
+ language: string;
5338
+ };
5339
+ publicationDate: string | Date;
5340
+ } | undefined;
4303
5341
  } | undefined;
4304
- } | undefined;
4305
- fromCrawl?: boolean | undefined;
4306
- };
4307
- html: string;
4308
- }>], z.ZodUnknown>, z.ZodAny>>;
5342
+ fromCrawl?: boolean | undefined;
5343
+ };
5344
+ html: string;
5345
+ }, ...args: unknown[]) => any) | undefined;
5346
+ } | undefined>;
4309
5347
  }, "strip", z.ZodTypeAny, {
4310
- enabled?: boolean | undefined;
4311
- autoSubfolderIndex?: boolean | undefined;
4312
- crawlLinks?: boolean | undefined;
4313
- retryCount?: number | undefined;
4314
- retryDelay?: number | undefined;
4315
- onSuccess?: ((args_0: {
4316
- page: {
4317
- path: string;
4318
- sitemap?: {
4319
- lastmod?: string | Date | undefined;
4320
- exclude?: boolean | undefined;
4321
- priority?: number | undefined;
4322
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
4323
- alternateRefs?: {
4324
- href: string;
4325
- hreflang: string;
4326
- }[] | undefined;
4327
- images?: {
4328
- loc: string;
4329
- caption?: string | undefined;
4330
- title?: string | undefined;
4331
- }[] | undefined;
4332
- news?: {
4333
- title: string;
4334
- publication: {
4335
- name: string;
4336
- language: string;
4337
- };
4338
- publicationDate: string | Date;
5348
+ prerender: {
5349
+ enabled: boolean;
5350
+ outputPath: string;
5351
+ autoSubfolderIndex?: boolean | undefined;
5352
+ crawlLinks: boolean;
5353
+ retryCount: number;
5354
+ retryDelay?: number | undefined;
5355
+ onSuccess?: ((args_0: {
5356
+ page: {
5357
+ path: string;
5358
+ sitemap?: {
5359
+ lastmod?: string | Date | undefined;
5360
+ exclude?: boolean | undefined;
5361
+ priority?: number | undefined;
5362
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
5363
+ alternateRefs?: {
5364
+ href: string;
5365
+ hreflang: string;
5366
+ }[] | undefined;
5367
+ images?: {
5368
+ loc: string;
5369
+ caption?: string | undefined;
5370
+ title?: string | undefined;
5371
+ }[] | undefined;
5372
+ news?: {
5373
+ title: string;
5374
+ publication: {
5375
+ name: string;
5376
+ language: string;
5377
+ };
5378
+ publicationDate: string | Date;
5379
+ } | undefined;
4339
5380
  } | undefined;
4340
- } | undefined;
4341
- fromCrawl?: boolean | undefined;
4342
- };
4343
- html: string;
4344
- }, ...args: unknown[]) => any) | undefined;
5381
+ fromCrawl?: boolean | undefined;
5382
+ };
5383
+ html: string;
5384
+ }, ...args: unknown[]) => any) | undefined;
5385
+ };
5386
+ enabled: boolean;
5387
+ maskPath: string;
4345
5388
  }, {
4346
- enabled?: boolean | undefined;
4347
- autoSubfolderIndex?: boolean | undefined;
4348
- crawlLinks?: boolean | undefined;
4349
- retryCount?: number | undefined;
4350
- retryDelay?: number | undefined;
4351
- onSuccess?: ((args_0: {
4352
- page: {
4353
- path: string;
4354
- sitemap?: {
4355
- lastmod?: string | Date | undefined;
4356
- exclude?: boolean | undefined;
4357
- priority?: number | undefined;
4358
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
4359
- alternateRefs?: {
4360
- href: string;
4361
- hreflang: string;
4362
- }[] | undefined;
4363
- images?: {
4364
- loc: string;
4365
- caption?: string | undefined;
4366
- title?: string | undefined;
4367
- }[] | undefined;
4368
- news?: {
4369
- title: string;
4370
- publication: {
4371
- name: string;
4372
- language: string;
4373
- };
4374
- publicationDate: string | Date;
5389
+ prerender?: {
5390
+ enabled?: boolean | undefined;
5391
+ outputPath?: string | undefined;
5392
+ autoSubfolderIndex?: boolean | undefined;
5393
+ crawlLinks?: boolean | undefined;
5394
+ retryCount?: number | undefined;
5395
+ retryDelay?: number | undefined;
5396
+ onSuccess?: ((args_0: {
5397
+ page: {
5398
+ path: string;
5399
+ sitemap?: {
5400
+ lastmod?: string | Date | undefined;
5401
+ exclude?: boolean | undefined;
5402
+ priority?: number | undefined;
5403
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
5404
+ alternateRefs?: {
5405
+ href: string;
5406
+ hreflang: string;
5407
+ }[] | undefined;
5408
+ images?: {
5409
+ loc: string;
5410
+ caption?: string | undefined;
5411
+ title?: string | undefined;
5412
+ }[] | undefined;
5413
+ news?: {
5414
+ title: string;
5415
+ publication: {
5416
+ name: string;
5417
+ language: string;
5418
+ };
5419
+ publicationDate: string | Date;
5420
+ } | undefined;
4375
5421
  } | undefined;
4376
- } | undefined;
4377
- fromCrawl?: boolean | undefined;
4378
- };
4379
- html: string;
4380
- }, ...args: unknown[]) => any) | undefined;
4381
- }>>>>;
5422
+ fromCrawl?: boolean | undefined;
5423
+ };
5424
+ html: string;
5425
+ }, ...args: unknown[]) => any) | undefined;
5426
+ } | undefined;
5427
+ enabled?: boolean | undefined;
5428
+ maskPath?: string | undefined;
5429
+ }>>;
4382
5430
  root: z.ZodDefault<z.ZodOptional<z.ZodString>>;
4383
5431
  target: z.ZodOptional<z.ZodType<import('nitropack/presets').PresetNameInput | undefined, z.ZodTypeDef, import('nitropack/presets').PresetNameInput | undefined>>;
4384
5432
  }, "strip", z.ZodTypeAny, {
@@ -4432,6 +5480,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
4432
5480
  path: string;
4433
5481
  prerender?: {
4434
5482
  enabled?: boolean | undefined;
5483
+ outputPath?: string | undefined;
4435
5484
  autoSubfolderIndex?: boolean | undefined;
4436
5485
  crawlLinks?: boolean | undefined;
4437
5486
  retryCount?: number | undefined;
@@ -4498,6 +5547,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
4498
5547
  path: string;
4499
5548
  prerender?: {
4500
5549
  enabled?: boolean | undefined;
5550
+ outputPath?: string | undefined;
4501
5551
  autoSubfolderIndex?: boolean | undefined;
4502
5552
  crawlLinks?: boolean | undefined;
4503
5553
  retryCount?: number | undefined;
@@ -4563,6 +5613,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
4563
5613
  failOnError?: boolean | undefined;
4564
5614
  } & {
4565
5615
  enabled?: boolean | undefined;
5616
+ outputPath?: string | undefined;
4566
5617
  autoSubfolderIndex?: boolean | undefined;
4567
5618
  crawlLinks?: boolean | undefined;
4568
5619
  retryCount?: number | undefined;
@@ -4601,6 +5652,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
4601
5652
  sitemap?: {
4602
5653
  host?: string | undefined;
4603
5654
  enabled?: boolean | undefined;
5655
+ outputPath?: string | undefined;
4604
5656
  autoSubfolderIndex?: boolean | undefined;
4605
5657
  crawlLinks?: boolean | undefined;
4606
5658
  retryCount?: number | undefined;
@@ -4630,11 +5682,53 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
4630
5682
  };
4631
5683
  publicationDate: string | Date;
4632
5684
  } | undefined;
4633
- } | undefined;
4634
- fromCrawl?: boolean | undefined;
4635
- };
4636
- html: string;
4637
- }, ...args: unknown[]) => any) | undefined;
5685
+ } | undefined;
5686
+ fromCrawl?: boolean | undefined;
5687
+ };
5688
+ html: string;
5689
+ }, ...args: unknown[]) => any) | undefined;
5690
+ } | undefined;
5691
+ spa?: {
5692
+ prerender: {
5693
+ enabled: boolean;
5694
+ outputPath: string;
5695
+ autoSubfolderIndex?: boolean | undefined;
5696
+ crawlLinks: boolean;
5697
+ retryCount: number;
5698
+ retryDelay?: number | undefined;
5699
+ onSuccess?: ((args_0: {
5700
+ page: {
5701
+ path: string;
5702
+ sitemap?: {
5703
+ lastmod?: string | Date | undefined;
5704
+ exclude?: boolean | undefined;
5705
+ priority?: number | undefined;
5706
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
5707
+ alternateRefs?: {
5708
+ href: string;
5709
+ hreflang: string;
5710
+ }[] | undefined;
5711
+ images?: {
5712
+ loc: string;
5713
+ caption?: string | undefined;
5714
+ title?: string | undefined;
5715
+ }[] | undefined;
5716
+ news?: {
5717
+ title: string;
5718
+ publication: {
5719
+ name: string;
5720
+ language: string;
5721
+ };
5722
+ publicationDate: string | Date;
5723
+ } | undefined;
5724
+ } | undefined;
5725
+ fromCrawl?: boolean | undefined;
5726
+ };
5727
+ html: string;
5728
+ }, ...args: unknown[]) => any) | undefined;
5729
+ };
5730
+ enabled: boolean;
5731
+ maskPath: string;
4638
5732
  } | undefined;
4639
5733
  }, {
4640
5734
  client?: {
@@ -4651,6 +5745,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
4651
5745
  path: string;
4652
5746
  prerender?: {
4653
5747
  enabled?: boolean | undefined;
5748
+ outputPath?: string | undefined;
4654
5749
  autoSubfolderIndex?: boolean | undefined;
4655
5750
  crawlLinks?: boolean | undefined;
4656
5751
  retryCount?: number | undefined;
@@ -4716,6 +5811,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
4716
5811
  failOnError?: boolean | undefined;
4717
5812
  } & {
4718
5813
  enabled?: boolean | undefined;
5814
+ outputPath?: string | undefined;
4719
5815
  autoSubfolderIndex?: boolean | undefined;
4720
5816
  crawlLinks?: boolean | undefined;
4721
5817
  retryCount?: number | undefined;
@@ -4792,6 +5888,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
4792
5888
  sitemap?: {
4793
5889
  host?: string | undefined;
4794
5890
  enabled?: boolean | undefined;
5891
+ outputPath?: string | undefined;
4795
5892
  autoSubfolderIndex?: boolean | undefined;
4796
5893
  crawlLinks?: boolean | undefined;
4797
5894
  retryCount?: number | undefined;
@@ -4831,6 +5928,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
4831
5928
  path: string;
4832
5929
  prerender?: {
4833
5930
  enabled?: boolean | undefined;
5931
+ outputPath?: string | undefined;
4834
5932
  autoSubfolderIndex?: boolean | undefined;
4835
5933
  crawlLinks?: boolean | undefined;
4836
5934
  retryCount?: number | undefined;
@@ -4891,6 +5989,48 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
4891
5989
  } | undefined;
4892
5990
  fromCrawl?: boolean | undefined;
4893
5991
  })[] | undefined;
5992
+ spa?: {
5993
+ prerender?: {
5994
+ enabled?: boolean | undefined;
5995
+ outputPath?: string | undefined;
5996
+ autoSubfolderIndex?: boolean | undefined;
5997
+ crawlLinks?: boolean | undefined;
5998
+ retryCount?: number | undefined;
5999
+ retryDelay?: number | undefined;
6000
+ onSuccess?: ((args_0: {
6001
+ page: {
6002
+ path: string;
6003
+ sitemap?: {
6004
+ lastmod?: string | Date | undefined;
6005
+ exclude?: boolean | undefined;
6006
+ priority?: number | undefined;
6007
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
6008
+ alternateRefs?: {
6009
+ href: string;
6010
+ hreflang: string;
6011
+ }[] | undefined;
6012
+ images?: {
6013
+ loc: string;
6014
+ caption?: string | undefined;
6015
+ title?: string | undefined;
6016
+ }[] | undefined;
6017
+ news?: {
6018
+ title: string;
6019
+ publication: {
6020
+ name: string;
6021
+ language: string;
6022
+ };
6023
+ publicationDate: string | Date;
6024
+ } | undefined;
6025
+ } | undefined;
6026
+ fromCrawl?: boolean | undefined;
6027
+ };
6028
+ html: string;
6029
+ }, ...args: unknown[]) => any) | undefined;
6030
+ } | undefined;
6031
+ enabled?: boolean | undefined;
6032
+ maskPath?: string | undefined;
6033
+ } | undefined;
4894
6034
  }>>>>) => {
4895
6035
  tsr: {
4896
6036
  target: "react" | "solid";
@@ -4944,6 +6084,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
4944
6084
  path: string;
4945
6085
  prerender?: {
4946
6086
  enabled?: boolean | undefined;
6087
+ outputPath?: string | undefined;
4947
6088
  autoSubfolderIndex?: boolean | undefined;
4948
6089
  crawlLinks?: boolean | undefined;
4949
6090
  retryCount?: number | undefined;
@@ -5010,6 +6151,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
5010
6151
  path: string;
5011
6152
  prerender?: {
5012
6153
  enabled?: boolean | undefined;
6154
+ outputPath?: string | undefined;
5013
6155
  autoSubfolderIndex?: boolean | undefined;
5014
6156
  crawlLinks?: boolean | undefined;
5015
6157
  retryCount?: number | undefined;
@@ -5075,6 +6217,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
5075
6217
  failOnError?: boolean | undefined;
5076
6218
  } & {
5077
6219
  enabled?: boolean | undefined;
6220
+ outputPath?: string | undefined;
5078
6221
  autoSubfolderIndex?: boolean | undefined;
5079
6222
  crawlLinks?: boolean | undefined;
5080
6223
  retryCount?: number | undefined;
@@ -5113,6 +6256,7 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
5113
6256
  sitemap?: {
5114
6257
  host?: string | undefined;
5115
6258
  enabled?: boolean | undefined;
6259
+ outputPath?: string | undefined;
5116
6260
  autoSubfolderIndex?: boolean | undefined;
5117
6261
  crawlLinks?: boolean | undefined;
5118
6262
  retryCount?: number | undefined;
@@ -5148,6 +6292,48 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
5148
6292
  html: string;
5149
6293
  }, ...args: unknown[]) => any) | undefined;
5150
6294
  } | undefined;
6295
+ spa?: {
6296
+ prerender: {
6297
+ enabled: boolean;
6298
+ outputPath: string;
6299
+ autoSubfolderIndex?: boolean | undefined;
6300
+ crawlLinks: boolean;
6301
+ retryCount: number;
6302
+ retryDelay?: number | undefined;
6303
+ onSuccess?: ((args_0: {
6304
+ page: {
6305
+ path: string;
6306
+ sitemap?: {
6307
+ lastmod?: string | Date | undefined;
6308
+ exclude?: boolean | undefined;
6309
+ priority?: number | undefined;
6310
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
6311
+ alternateRefs?: {
6312
+ href: string;
6313
+ hreflang: string;
6314
+ }[] | undefined;
6315
+ images?: {
6316
+ loc: string;
6317
+ caption?: string | undefined;
6318
+ title?: string | undefined;
6319
+ }[] | undefined;
6320
+ news?: {
6321
+ title: string;
6322
+ publication: {
6323
+ name: string;
6324
+ language: string;
6325
+ };
6326
+ publicationDate: string | Date;
6327
+ } | undefined;
6328
+ } | undefined;
6329
+ fromCrawl?: boolean | undefined;
6330
+ };
6331
+ html: string;
6332
+ }, ...args: unknown[]) => any) | undefined;
6333
+ };
6334
+ enabled: boolean;
6335
+ maskPath: string;
6336
+ } | undefined;
5151
6337
  };
5152
6338
  };
5153
6339
  export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Record<string, unknown>): z.ZodDefault<z.ZodOptional<z.ZodObject<{
@@ -5394,6 +6580,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
5394
6580
  }, {
5395
6581
  prerender: z.ZodOptional<z.ZodObject<{
5396
6582
  enabled: z.ZodOptional<z.ZodBoolean>;
6583
+ outputPath: z.ZodOptional<z.ZodString>;
5397
6584
  autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
5398
6585
  crawlLinks: z.ZodOptional<z.ZodBoolean>;
5399
6586
  retryCount: z.ZodOptional<z.ZodNumber>;
@@ -5618,6 +6805,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
5618
6805
  }>], z.ZodUnknown>, z.ZodAny>>;
5619
6806
  }, "strip", z.ZodTypeAny, {
5620
6807
  enabled?: boolean | undefined;
6808
+ outputPath?: string | undefined;
5621
6809
  autoSubfolderIndex?: boolean | undefined;
5622
6810
  crawlLinks?: boolean | undefined;
5623
6811
  retryCount?: number | undefined;
@@ -5654,6 +6842,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
5654
6842
  }, ...args: unknown[]) => any) | undefined;
5655
6843
  }, {
5656
6844
  enabled?: boolean | undefined;
6845
+ outputPath?: string | undefined;
5657
6846
  autoSubfolderIndex?: boolean | undefined;
5658
6847
  crawlLinks?: boolean | undefined;
5659
6848
  retryCount?: number | undefined;
@@ -5693,6 +6882,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
5693
6882
  path: string;
5694
6883
  prerender?: {
5695
6884
  enabled?: boolean | undefined;
6885
+ outputPath?: string | undefined;
5696
6886
  autoSubfolderIndex?: boolean | undefined;
5697
6887
  crawlLinks?: boolean | undefined;
5698
6888
  retryCount?: number | undefined;
@@ -5756,6 +6946,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
5756
6946
  path: string;
5757
6947
  prerender?: {
5758
6948
  enabled?: boolean | undefined;
6949
+ outputPath?: string | undefined;
5759
6950
  autoSubfolderIndex?: boolean | undefined;
5760
6951
  crawlLinks?: boolean | undefined;
5761
6952
  retryCount?: number | undefined;
@@ -5818,6 +7009,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
5818
7009
  }>]>, "many">>>;
5819
7010
  sitemap: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
5820
7011
  enabled: z.ZodOptional<z.ZodBoolean>;
7012
+ outputPath: z.ZodOptional<z.ZodString>;
5821
7013
  autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
5822
7014
  crawlLinks: z.ZodOptional<z.ZodBoolean>;
5823
7015
  retryCount: z.ZodOptional<z.ZodNumber>;
@@ -6045,6 +7237,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
6045
7237
  }>, "strip", z.ZodTypeAny, {
6046
7238
  host?: string | undefined;
6047
7239
  enabled?: boolean | undefined;
7240
+ outputPath?: string | undefined;
6048
7241
  autoSubfolderIndex?: boolean | undefined;
6049
7242
  crawlLinks?: boolean | undefined;
6050
7243
  retryCount?: number | undefined;
@@ -6082,6 +7275,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
6082
7275
  }, {
6083
7276
  host?: string | undefined;
6084
7277
  enabled?: boolean | undefined;
7278
+ outputPath?: string | undefined;
6085
7279
  autoSubfolderIndex?: boolean | undefined;
6086
7280
  crawlLinks?: boolean | undefined;
6087
7281
  retryCount?: number | undefined;
@@ -6227,6 +7421,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
6227
7421
  }, {
6228
7422
  prerender: z.ZodOptional<z.ZodObject<{
6229
7423
  enabled: z.ZodOptional<z.ZodBoolean>;
7424
+ outputPath: z.ZodOptional<z.ZodString>;
6230
7425
  autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
6231
7426
  crawlLinks: z.ZodOptional<z.ZodBoolean>;
6232
7427
  retryCount: z.ZodOptional<z.ZodNumber>;
@@ -6451,6 +7646,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
6451
7646
  }>], z.ZodUnknown>, z.ZodAny>>;
6452
7647
  }, "strip", z.ZodTypeAny, {
6453
7648
  enabled?: boolean | undefined;
7649
+ outputPath?: string | undefined;
6454
7650
  autoSubfolderIndex?: boolean | undefined;
6455
7651
  crawlLinks?: boolean | undefined;
6456
7652
  retryCount?: number | undefined;
@@ -6487,6 +7683,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
6487
7683
  }, ...args: unknown[]) => any) | undefined;
6488
7684
  }, {
6489
7685
  enabled?: boolean | undefined;
7686
+ outputPath?: string | undefined;
6490
7687
  autoSubfolderIndex?: boolean | undefined;
6491
7688
  crawlLinks?: boolean | undefined;
6492
7689
  retryCount?: number | undefined;
@@ -6526,6 +7723,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
6526
7723
  path: string;
6527
7724
  prerender?: {
6528
7725
  enabled?: boolean | undefined;
7726
+ outputPath?: string | undefined;
6529
7727
  autoSubfolderIndex?: boolean | undefined;
6530
7728
  crawlLinks?: boolean | undefined;
6531
7729
  retryCount?: number | undefined;
@@ -6589,6 +7787,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
6589
7787
  path: string;
6590
7788
  prerender?: {
6591
7789
  enabled?: boolean | undefined;
7790
+ outputPath?: string | undefined;
6592
7791
  autoSubfolderIndex?: boolean | undefined;
6593
7792
  crawlLinks?: boolean | undefined;
6594
7793
  retryCount?: number | undefined;
@@ -6655,6 +7854,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
6655
7854
  path: string;
6656
7855
  prerender?: {
6657
7856
  enabled?: boolean | undefined;
7857
+ outputPath?: string | undefined;
6658
7858
  autoSubfolderIndex?: boolean | undefined;
6659
7859
  crawlLinks?: boolean | undefined;
6660
7860
  retryCount?: number | undefined;
@@ -6723,6 +7923,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
6723
7923
  path: string;
6724
7924
  prerender?: {
6725
7925
  enabled?: boolean | undefined;
7926
+ outputPath?: string | undefined;
6726
7927
  autoSubfolderIndex?: boolean | undefined;
6727
7928
  crawlLinks?: boolean | undefined;
6728
7929
  retryCount?: number | undefined;
@@ -6788,6 +7989,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
6788
7989
  failOnError?: boolean | undefined;
6789
7990
  }>, z.ZodOptional<z.ZodObject<{
6790
7991
  enabled: z.ZodOptional<z.ZodBoolean>;
7992
+ outputPath: z.ZodOptional<z.ZodString>;
6791
7993
  autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
6792
7994
  crawlLinks: z.ZodOptional<z.ZodBoolean>;
6793
7995
  retryCount: z.ZodOptional<z.ZodNumber>;
@@ -6809,49 +8011,218 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
6809
8011
  }, {
6810
8012
  href: string;
6811
8013
  hreflang: string;
6812
- }>, "many">>;
6813
- images: z.ZodOptional<z.ZodArray<z.ZodObject<{
6814
- loc: z.ZodString;
6815
- caption: z.ZodOptional<z.ZodString>;
6816
- title: z.ZodOptional<z.ZodString>;
6817
- }, "strip", z.ZodTypeAny, {
6818
- loc: string;
6819
- caption?: string | undefined;
6820
- title?: string | undefined;
6821
- }, {
8014
+ }>, "many">>;
8015
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
8016
+ loc: z.ZodString;
8017
+ caption: z.ZodOptional<z.ZodString>;
8018
+ title: z.ZodOptional<z.ZodString>;
8019
+ }, "strip", z.ZodTypeAny, {
8020
+ loc: string;
8021
+ caption?: string | undefined;
8022
+ title?: string | undefined;
8023
+ }, {
8024
+ loc: string;
8025
+ caption?: string | undefined;
8026
+ title?: string | undefined;
8027
+ }>, "many">>;
8028
+ news: z.ZodOptional<z.ZodObject<{
8029
+ publication: z.ZodObject<{
8030
+ name: z.ZodString;
8031
+ language: z.ZodString;
8032
+ }, "strip", z.ZodTypeAny, {
8033
+ name: string;
8034
+ language: string;
8035
+ }, {
8036
+ name: string;
8037
+ language: string;
8038
+ }>;
8039
+ publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
8040
+ title: z.ZodString;
8041
+ }, "strip", z.ZodTypeAny, {
8042
+ title: string;
8043
+ publication: {
8044
+ name: string;
8045
+ language: string;
8046
+ };
8047
+ publicationDate: string | Date;
8048
+ }, {
8049
+ title: string;
8050
+ publication: {
8051
+ name: string;
8052
+ language: string;
8053
+ };
8054
+ publicationDate: string | Date;
8055
+ }>>;
8056
+ }, "strip", z.ZodTypeAny, {
8057
+ lastmod?: string | Date | undefined;
8058
+ exclude?: boolean | undefined;
8059
+ priority?: number | undefined;
8060
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
8061
+ alternateRefs?: {
8062
+ href: string;
8063
+ hreflang: string;
8064
+ }[] | undefined;
8065
+ images?: {
8066
+ loc: string;
8067
+ caption?: string | undefined;
8068
+ title?: string | undefined;
8069
+ }[] | undefined;
8070
+ news?: {
8071
+ title: string;
8072
+ publication: {
8073
+ name: string;
8074
+ language: string;
8075
+ };
8076
+ publicationDate: string | Date;
8077
+ } | undefined;
8078
+ }, {
8079
+ lastmod?: string | Date | undefined;
8080
+ exclude?: boolean | undefined;
8081
+ priority?: number | undefined;
8082
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
8083
+ alternateRefs?: {
8084
+ href: string;
8085
+ hreflang: string;
8086
+ }[] | undefined;
8087
+ images?: {
8088
+ loc: string;
8089
+ caption?: string | undefined;
8090
+ title?: string | undefined;
8091
+ }[] | undefined;
8092
+ news?: {
8093
+ title: string;
8094
+ publication: {
8095
+ name: string;
8096
+ language: string;
8097
+ };
8098
+ publicationDate: string | Date;
8099
+ } | undefined;
8100
+ }>>;
8101
+ fromCrawl: z.ZodOptional<z.ZodBoolean>;
8102
+ }, "strip", z.ZodTypeAny, {
8103
+ path: string;
8104
+ sitemap?: {
8105
+ lastmod?: string | Date | undefined;
8106
+ exclude?: boolean | undefined;
8107
+ priority?: number | undefined;
8108
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
8109
+ alternateRefs?: {
8110
+ href: string;
8111
+ hreflang: string;
8112
+ }[] | undefined;
8113
+ images?: {
8114
+ loc: string;
8115
+ caption?: string | undefined;
8116
+ title?: string | undefined;
8117
+ }[] | undefined;
8118
+ news?: {
8119
+ title: string;
8120
+ publication: {
8121
+ name: string;
8122
+ language: string;
8123
+ };
8124
+ publicationDate: string | Date;
8125
+ } | undefined;
8126
+ } | undefined;
8127
+ fromCrawl?: boolean | undefined;
8128
+ }, {
8129
+ path: string;
8130
+ sitemap?: {
8131
+ lastmod?: string | Date | undefined;
8132
+ exclude?: boolean | undefined;
8133
+ priority?: number | undefined;
8134
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
8135
+ alternateRefs?: {
8136
+ href: string;
8137
+ hreflang: string;
8138
+ }[] | undefined;
8139
+ images?: {
8140
+ loc: string;
8141
+ caption?: string | undefined;
8142
+ title?: string | undefined;
8143
+ }[] | undefined;
8144
+ news?: {
8145
+ title: string;
8146
+ publication: {
8147
+ name: string;
8148
+ language: string;
8149
+ };
8150
+ publicationDate: string | Date;
8151
+ } | undefined;
8152
+ } | undefined;
8153
+ fromCrawl?: boolean | undefined;
8154
+ }>;
8155
+ html: z.ZodString;
8156
+ }, "strip", z.ZodTypeAny, {
8157
+ page: {
8158
+ path: string;
8159
+ sitemap?: {
8160
+ lastmod?: string | Date | undefined;
8161
+ exclude?: boolean | undefined;
8162
+ priority?: number | undefined;
8163
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
8164
+ alternateRefs?: {
8165
+ href: string;
8166
+ hreflang: string;
8167
+ }[] | undefined;
8168
+ images?: {
6822
8169
  loc: string;
6823
8170
  caption?: string | undefined;
6824
8171
  title?: string | undefined;
6825
- }>, "many">>;
6826
- news: z.ZodOptional<z.ZodObject<{
6827
- publication: z.ZodObject<{
6828
- name: z.ZodString;
6829
- language: z.ZodString;
6830
- }, "strip", z.ZodTypeAny, {
6831
- name: string;
6832
- language: string;
6833
- }, {
6834
- name: string;
6835
- language: string;
6836
- }>;
6837
- publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
6838
- title: z.ZodString;
6839
- }, "strip", z.ZodTypeAny, {
8172
+ }[] | undefined;
8173
+ news?: {
6840
8174
  title: string;
6841
8175
  publication: {
6842
8176
  name: string;
6843
8177
  language: string;
6844
8178
  };
6845
8179
  publicationDate: string | Date;
6846
- }, {
8180
+ } | undefined;
8181
+ } | undefined;
8182
+ fromCrawl?: boolean | undefined;
8183
+ };
8184
+ html: string;
8185
+ }, {
8186
+ page: {
8187
+ path: string;
8188
+ sitemap?: {
8189
+ lastmod?: string | Date | undefined;
8190
+ exclude?: boolean | undefined;
8191
+ priority?: number | undefined;
8192
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
8193
+ alternateRefs?: {
8194
+ href: string;
8195
+ hreflang: string;
8196
+ }[] | undefined;
8197
+ images?: {
8198
+ loc: string;
8199
+ caption?: string | undefined;
8200
+ title?: string | undefined;
8201
+ }[] | undefined;
8202
+ news?: {
6847
8203
  title: string;
6848
8204
  publication: {
6849
8205
  name: string;
6850
8206
  language: string;
6851
8207
  };
6852
8208
  publicationDate: string | Date;
6853
- }>>;
6854
- }, "strip", z.ZodTypeAny, {
8209
+ } | undefined;
8210
+ } | undefined;
8211
+ fromCrawl?: boolean | undefined;
8212
+ };
8213
+ html: string;
8214
+ }>], z.ZodUnknown>, z.ZodAny>>;
8215
+ }, "strip", z.ZodTypeAny, {
8216
+ enabled?: boolean | undefined;
8217
+ outputPath?: string | undefined;
8218
+ autoSubfolderIndex?: boolean | undefined;
8219
+ crawlLinks?: boolean | undefined;
8220
+ retryCount?: number | undefined;
8221
+ retryDelay?: number | undefined;
8222
+ onSuccess?: ((args_0: {
8223
+ page: {
8224
+ path: string;
8225
+ sitemap?: {
6855
8226
  lastmod?: string | Date | undefined;
6856
8227
  exclude?: boolean | undefined;
6857
8228
  priority?: number | undefined;
@@ -6873,7 +8244,22 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
6873
8244
  };
6874
8245
  publicationDate: string | Date;
6875
8246
  } | undefined;
6876
- }, {
8247
+ } | undefined;
8248
+ fromCrawl?: boolean | undefined;
8249
+ };
8250
+ html: string;
8251
+ }, ...args: unknown[]) => any) | undefined;
8252
+ }, {
8253
+ enabled?: boolean | undefined;
8254
+ outputPath?: string | undefined;
8255
+ autoSubfolderIndex?: boolean | undefined;
8256
+ crawlLinks?: boolean | undefined;
8257
+ retryCount?: number | undefined;
8258
+ retryDelay?: number | undefined;
8259
+ onSuccess?: ((args_0: {
8260
+ page: {
8261
+ path: string;
8262
+ sitemap?: {
6877
8263
  lastmod?: string | Date | undefined;
6878
8264
  exclude?: boolean | undefined;
6879
8265
  priority?: number | undefined;
@@ -6895,194 +8281,472 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
6895
8281
  };
6896
8282
  publicationDate: string | Date;
6897
8283
  } | undefined;
6898
- }>>;
6899
- fromCrawl: z.ZodOptional<z.ZodBoolean>;
8284
+ } | undefined;
8285
+ fromCrawl?: boolean | undefined;
8286
+ };
8287
+ html: string;
8288
+ }, ...args: unknown[]) => any) | undefined;
8289
+ }>>>>;
8290
+ spa: z.ZodOptional<z.ZodObject<{
8291
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
8292
+ maskPath: z.ZodDefault<z.ZodOptional<z.ZodString>>;
8293
+ prerender: z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodObject<{
8294
+ enabled: z.ZodOptional<z.ZodBoolean>;
8295
+ outputPath: z.ZodOptional<z.ZodString>;
8296
+ autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
8297
+ crawlLinks: z.ZodOptional<z.ZodBoolean>;
8298
+ retryCount: z.ZodOptional<z.ZodNumber>;
8299
+ retryDelay: z.ZodOptional<z.ZodNumber>;
8300
+ onSuccess: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
8301
+ page: z.ZodObject<{
8302
+ path: z.ZodString;
8303
+ sitemap: z.ZodOptional<z.ZodObject<{
8304
+ exclude: z.ZodOptional<z.ZodBoolean>;
8305
+ priority: z.ZodOptional<z.ZodNumber>;
8306
+ changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
8307
+ lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
8308
+ alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
8309
+ href: z.ZodString;
8310
+ hreflang: z.ZodString;
8311
+ }, "strip", z.ZodTypeAny, {
8312
+ href: string;
8313
+ hreflang: string;
8314
+ }, {
8315
+ href: string;
8316
+ hreflang: string;
8317
+ }>, "many">>;
8318
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
8319
+ loc: z.ZodString;
8320
+ caption: z.ZodOptional<z.ZodString>;
8321
+ title: z.ZodOptional<z.ZodString>;
8322
+ }, "strip", z.ZodTypeAny, {
8323
+ loc: string;
8324
+ caption?: string | undefined;
8325
+ title?: string | undefined;
8326
+ }, {
8327
+ loc: string;
8328
+ caption?: string | undefined;
8329
+ title?: string | undefined;
8330
+ }>, "many">>;
8331
+ news: z.ZodOptional<z.ZodObject<{
8332
+ publication: z.ZodObject<{
8333
+ name: z.ZodString;
8334
+ language: z.ZodString;
8335
+ }, "strip", z.ZodTypeAny, {
8336
+ name: string;
8337
+ language: string;
8338
+ }, {
8339
+ name: string;
8340
+ language: string;
8341
+ }>;
8342
+ publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
8343
+ title: z.ZodString;
8344
+ }, "strip", z.ZodTypeAny, {
8345
+ title: string;
8346
+ publication: {
8347
+ name: string;
8348
+ language: string;
8349
+ };
8350
+ publicationDate: string | Date;
8351
+ }, {
8352
+ title: string;
8353
+ publication: {
8354
+ name: string;
8355
+ language: string;
8356
+ };
8357
+ publicationDate: string | Date;
8358
+ }>>;
8359
+ }, "strip", z.ZodTypeAny, {
8360
+ lastmod?: string | Date | undefined;
8361
+ exclude?: boolean | undefined;
8362
+ priority?: number | undefined;
8363
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
8364
+ alternateRefs?: {
8365
+ href: string;
8366
+ hreflang: string;
8367
+ }[] | undefined;
8368
+ images?: {
8369
+ loc: string;
8370
+ caption?: string | undefined;
8371
+ title?: string | undefined;
8372
+ }[] | undefined;
8373
+ news?: {
8374
+ title: string;
8375
+ publication: {
8376
+ name: string;
8377
+ language: string;
8378
+ };
8379
+ publicationDate: string | Date;
8380
+ } | undefined;
8381
+ }, {
8382
+ lastmod?: string | Date | undefined;
8383
+ exclude?: boolean | undefined;
8384
+ priority?: number | undefined;
8385
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
8386
+ alternateRefs?: {
8387
+ href: string;
8388
+ hreflang: string;
8389
+ }[] | undefined;
8390
+ images?: {
8391
+ loc: string;
8392
+ caption?: string | undefined;
8393
+ title?: string | undefined;
8394
+ }[] | undefined;
8395
+ news?: {
8396
+ title: string;
8397
+ publication: {
8398
+ name: string;
8399
+ language: string;
8400
+ };
8401
+ publicationDate: string | Date;
8402
+ } | undefined;
8403
+ }>>;
8404
+ fromCrawl: z.ZodOptional<z.ZodBoolean>;
8405
+ }, "strip", z.ZodTypeAny, {
8406
+ path: string;
8407
+ sitemap?: {
8408
+ lastmod?: string | Date | undefined;
8409
+ exclude?: boolean | undefined;
8410
+ priority?: number | undefined;
8411
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
8412
+ alternateRefs?: {
8413
+ href: string;
8414
+ hreflang: string;
8415
+ }[] | undefined;
8416
+ images?: {
8417
+ loc: string;
8418
+ caption?: string | undefined;
8419
+ title?: string | undefined;
8420
+ }[] | undefined;
8421
+ news?: {
8422
+ title: string;
8423
+ publication: {
8424
+ name: string;
8425
+ language: string;
8426
+ };
8427
+ publicationDate: string | Date;
8428
+ } | undefined;
8429
+ } | undefined;
8430
+ fromCrawl?: boolean | undefined;
8431
+ }, {
8432
+ path: string;
8433
+ sitemap?: {
8434
+ lastmod?: string | Date | undefined;
8435
+ exclude?: boolean | undefined;
8436
+ priority?: number | undefined;
8437
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
8438
+ alternateRefs?: {
8439
+ href: string;
8440
+ hreflang: string;
8441
+ }[] | undefined;
8442
+ images?: {
8443
+ loc: string;
8444
+ caption?: string | undefined;
8445
+ title?: string | undefined;
8446
+ }[] | undefined;
8447
+ news?: {
8448
+ title: string;
8449
+ publication: {
8450
+ name: string;
8451
+ language: string;
8452
+ };
8453
+ publicationDate: string | Date;
8454
+ } | undefined;
8455
+ } | undefined;
8456
+ fromCrawl?: boolean | undefined;
8457
+ }>;
8458
+ html: z.ZodString;
6900
8459
  }, "strip", z.ZodTypeAny, {
6901
- path: string;
6902
- sitemap?: {
6903
- lastmod?: string | Date | undefined;
6904
- exclude?: boolean | undefined;
6905
- priority?: number | undefined;
6906
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
6907
- alternateRefs?: {
6908
- href: string;
6909
- hreflang: string;
6910
- }[] | undefined;
6911
- images?: {
6912
- loc: string;
6913
- caption?: string | undefined;
6914
- title?: string | undefined;
6915
- }[] | undefined;
6916
- news?: {
6917
- title: string;
6918
- publication: {
6919
- name: string;
6920
- language: string;
6921
- };
6922
- publicationDate: string | Date;
8460
+ page: {
8461
+ path: string;
8462
+ sitemap?: {
8463
+ lastmod?: string | Date | undefined;
8464
+ exclude?: boolean | undefined;
8465
+ priority?: number | undefined;
8466
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
8467
+ alternateRefs?: {
8468
+ href: string;
8469
+ hreflang: string;
8470
+ }[] | undefined;
8471
+ images?: {
8472
+ loc: string;
8473
+ caption?: string | undefined;
8474
+ title?: string | undefined;
8475
+ }[] | undefined;
8476
+ news?: {
8477
+ title: string;
8478
+ publication: {
8479
+ name: string;
8480
+ language: string;
8481
+ };
8482
+ publicationDate: string | Date;
8483
+ } | undefined;
6923
8484
  } | undefined;
6924
- } | undefined;
6925
- fromCrawl?: boolean | undefined;
8485
+ fromCrawl?: boolean | undefined;
8486
+ };
8487
+ html: string;
6926
8488
  }, {
6927
- path: string;
6928
- sitemap?: {
6929
- lastmod?: string | Date | undefined;
6930
- exclude?: boolean | undefined;
6931
- priority?: number | undefined;
6932
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
6933
- alternateRefs?: {
6934
- href: string;
6935
- hreflang: string;
6936
- }[] | undefined;
6937
- images?: {
6938
- loc: string;
6939
- caption?: string | undefined;
6940
- title?: string | undefined;
6941
- }[] | undefined;
6942
- news?: {
6943
- title: string;
6944
- publication: {
6945
- name: string;
6946
- language: string;
6947
- };
6948
- publicationDate: string | Date;
8489
+ page: {
8490
+ path: string;
8491
+ sitemap?: {
8492
+ lastmod?: string | Date | undefined;
8493
+ exclude?: boolean | undefined;
8494
+ priority?: number | undefined;
8495
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
8496
+ alternateRefs?: {
8497
+ href: string;
8498
+ hreflang: string;
8499
+ }[] | undefined;
8500
+ images?: {
8501
+ loc: string;
8502
+ caption?: string | undefined;
8503
+ title?: string | undefined;
8504
+ }[] | undefined;
8505
+ news?: {
8506
+ title: string;
8507
+ publication: {
8508
+ name: string;
8509
+ language: string;
8510
+ };
8511
+ publicationDate: string | Date;
8512
+ } | undefined;
6949
8513
  } | undefined;
6950
- } | undefined;
6951
- fromCrawl?: boolean | undefined;
6952
- }>;
6953
- html: z.ZodString;
8514
+ fromCrawl?: boolean | undefined;
8515
+ };
8516
+ html: string;
8517
+ }>], z.ZodUnknown>, z.ZodAny>>;
6954
8518
  }, "strip", z.ZodTypeAny, {
6955
- page: {
6956
- path: string;
6957
- sitemap?: {
6958
- lastmod?: string | Date | undefined;
6959
- exclude?: boolean | undefined;
6960
- priority?: number | undefined;
6961
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
6962
- alternateRefs?: {
6963
- href: string;
6964
- hreflang: string;
6965
- }[] | undefined;
6966
- images?: {
6967
- loc: string;
6968
- caption?: string | undefined;
6969
- title?: string | undefined;
6970
- }[] | undefined;
6971
- news?: {
6972
- title: string;
6973
- publication: {
6974
- name: string;
6975
- language: string;
6976
- };
6977
- publicationDate: string | Date;
8519
+ enabled?: boolean | undefined;
8520
+ outputPath?: string | undefined;
8521
+ autoSubfolderIndex?: boolean | undefined;
8522
+ crawlLinks?: boolean | undefined;
8523
+ retryCount?: number | undefined;
8524
+ retryDelay?: number | undefined;
8525
+ onSuccess?: ((args_0: {
8526
+ page: {
8527
+ path: string;
8528
+ sitemap?: {
8529
+ lastmod?: string | Date | undefined;
8530
+ exclude?: boolean | undefined;
8531
+ priority?: number | undefined;
8532
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
8533
+ alternateRefs?: {
8534
+ href: string;
8535
+ hreflang: string;
8536
+ }[] | undefined;
8537
+ images?: {
8538
+ loc: string;
8539
+ caption?: string | undefined;
8540
+ title?: string | undefined;
8541
+ }[] | undefined;
8542
+ news?: {
8543
+ title: string;
8544
+ publication: {
8545
+ name: string;
8546
+ language: string;
8547
+ };
8548
+ publicationDate: string | Date;
8549
+ } | undefined;
6978
8550
  } | undefined;
6979
- } | undefined;
6980
- fromCrawl?: boolean | undefined;
6981
- };
6982
- html: string;
8551
+ fromCrawl?: boolean | undefined;
8552
+ };
8553
+ html: string;
8554
+ }, ...args: unknown[]) => any) | undefined;
6983
8555
  }, {
6984
- page: {
6985
- path: string;
6986
- sitemap?: {
6987
- lastmod?: string | Date | undefined;
6988
- exclude?: boolean | undefined;
6989
- priority?: number | undefined;
6990
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
6991
- alternateRefs?: {
6992
- href: string;
6993
- hreflang: string;
6994
- }[] | undefined;
6995
- images?: {
6996
- loc: string;
6997
- caption?: string | undefined;
6998
- title?: string | undefined;
6999
- }[] | undefined;
7000
- news?: {
7001
- title: string;
7002
- publication: {
7003
- name: string;
7004
- language: string;
7005
- };
7006
- publicationDate: string | Date;
8556
+ enabled?: boolean | undefined;
8557
+ outputPath?: string | undefined;
8558
+ autoSubfolderIndex?: boolean | undefined;
8559
+ crawlLinks?: boolean | undefined;
8560
+ retryCount?: number | undefined;
8561
+ retryDelay?: number | undefined;
8562
+ onSuccess?: ((args_0: {
8563
+ page: {
8564
+ path: string;
8565
+ sitemap?: {
8566
+ lastmod?: string | Date | undefined;
8567
+ exclude?: boolean | undefined;
8568
+ priority?: number | undefined;
8569
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
8570
+ alternateRefs?: {
8571
+ href: string;
8572
+ hreflang: string;
8573
+ }[] | undefined;
8574
+ images?: {
8575
+ loc: string;
8576
+ caption?: string | undefined;
8577
+ title?: string | undefined;
8578
+ }[] | undefined;
8579
+ news?: {
8580
+ title: string;
8581
+ publication: {
8582
+ name: string;
8583
+ language: string;
8584
+ };
8585
+ publicationDate: string | Date;
8586
+ } | undefined;
8587
+ } | undefined;
8588
+ fromCrawl?: boolean | undefined;
8589
+ };
8590
+ html: string;
8591
+ }, ...args: unknown[]) => any) | undefined;
8592
+ }>>>, {
8593
+ enabled: boolean;
8594
+ outputPath: string;
8595
+ autoSubfolderIndex?: boolean | undefined;
8596
+ crawlLinks: boolean;
8597
+ retryCount: number;
8598
+ retryDelay?: number | undefined;
8599
+ onSuccess?: ((args_0: {
8600
+ page: {
8601
+ path: string;
8602
+ sitemap?: {
8603
+ lastmod?: string | Date | undefined;
8604
+ exclude?: boolean | undefined;
8605
+ priority?: number | undefined;
8606
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
8607
+ alternateRefs?: {
8608
+ href: string;
8609
+ hreflang: string;
8610
+ }[] | undefined;
8611
+ images?: {
8612
+ loc: string;
8613
+ caption?: string | undefined;
8614
+ title?: string | undefined;
8615
+ }[] | undefined;
8616
+ news?: {
8617
+ title: string;
8618
+ publication: {
8619
+ name: string;
8620
+ language: string;
8621
+ };
8622
+ publicationDate: string | Date;
8623
+ } | undefined;
8624
+ } | undefined;
8625
+ fromCrawl?: boolean | undefined;
8626
+ };
8627
+ html: string;
8628
+ }, ...args: unknown[]) => any) | undefined;
8629
+ }, {
8630
+ enabled?: boolean | undefined;
8631
+ outputPath?: string | undefined;
8632
+ autoSubfolderIndex?: boolean | undefined;
8633
+ crawlLinks?: boolean | undefined;
8634
+ retryCount?: number | undefined;
8635
+ retryDelay?: number | undefined;
8636
+ onSuccess?: ((args_0: {
8637
+ page: {
8638
+ path: string;
8639
+ sitemap?: {
8640
+ lastmod?: string | Date | undefined;
8641
+ exclude?: boolean | undefined;
8642
+ priority?: number | undefined;
8643
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
8644
+ alternateRefs?: {
8645
+ href: string;
8646
+ hreflang: string;
8647
+ }[] | undefined;
8648
+ images?: {
8649
+ loc: string;
8650
+ caption?: string | undefined;
8651
+ title?: string | undefined;
8652
+ }[] | undefined;
8653
+ news?: {
8654
+ title: string;
8655
+ publication: {
8656
+ name: string;
8657
+ language: string;
8658
+ };
8659
+ publicationDate: string | Date;
8660
+ } | undefined;
7007
8661
  } | undefined;
7008
- } | undefined;
7009
- fromCrawl?: boolean | undefined;
7010
- };
7011
- html: string;
7012
- }>], z.ZodUnknown>, z.ZodAny>>;
8662
+ fromCrawl?: boolean | undefined;
8663
+ };
8664
+ html: string;
8665
+ }, ...args: unknown[]) => any) | undefined;
8666
+ } | undefined>;
7013
8667
  }, "strip", z.ZodTypeAny, {
7014
- enabled?: boolean | undefined;
7015
- autoSubfolderIndex?: boolean | undefined;
7016
- crawlLinks?: boolean | undefined;
7017
- retryCount?: number | undefined;
7018
- retryDelay?: number | undefined;
7019
- onSuccess?: ((args_0: {
7020
- page: {
7021
- path: string;
7022
- sitemap?: {
7023
- lastmod?: string | Date | undefined;
7024
- exclude?: boolean | undefined;
7025
- priority?: number | undefined;
7026
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
7027
- alternateRefs?: {
7028
- href: string;
7029
- hreflang: string;
7030
- }[] | undefined;
7031
- images?: {
7032
- loc: string;
7033
- caption?: string | undefined;
7034
- title?: string | undefined;
7035
- }[] | undefined;
7036
- news?: {
7037
- title: string;
7038
- publication: {
7039
- name: string;
7040
- language: string;
7041
- };
7042
- publicationDate: string | Date;
8668
+ prerender: {
8669
+ enabled: boolean;
8670
+ outputPath: string;
8671
+ autoSubfolderIndex?: boolean | undefined;
8672
+ crawlLinks: boolean;
8673
+ retryCount: number;
8674
+ retryDelay?: number | undefined;
8675
+ onSuccess?: ((args_0: {
8676
+ page: {
8677
+ path: string;
8678
+ sitemap?: {
8679
+ lastmod?: string | Date | undefined;
8680
+ exclude?: boolean | undefined;
8681
+ priority?: number | undefined;
8682
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
8683
+ alternateRefs?: {
8684
+ href: string;
8685
+ hreflang: string;
8686
+ }[] | undefined;
8687
+ images?: {
8688
+ loc: string;
8689
+ caption?: string | undefined;
8690
+ title?: string | undefined;
8691
+ }[] | undefined;
8692
+ news?: {
8693
+ title: string;
8694
+ publication: {
8695
+ name: string;
8696
+ language: string;
8697
+ };
8698
+ publicationDate: string | Date;
8699
+ } | undefined;
7043
8700
  } | undefined;
7044
- } | undefined;
7045
- fromCrawl?: boolean | undefined;
7046
- };
7047
- html: string;
7048
- }, ...args: unknown[]) => any) | undefined;
8701
+ fromCrawl?: boolean | undefined;
8702
+ };
8703
+ html: string;
8704
+ }, ...args: unknown[]) => any) | undefined;
8705
+ };
8706
+ enabled: boolean;
8707
+ maskPath: string;
7049
8708
  }, {
7050
- enabled?: boolean | undefined;
7051
- autoSubfolderIndex?: boolean | undefined;
7052
- crawlLinks?: boolean | undefined;
7053
- retryCount?: number | undefined;
7054
- retryDelay?: number | undefined;
7055
- onSuccess?: ((args_0: {
7056
- page: {
7057
- path: string;
7058
- sitemap?: {
7059
- lastmod?: string | Date | undefined;
7060
- exclude?: boolean | undefined;
7061
- priority?: number | undefined;
7062
- changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
7063
- alternateRefs?: {
7064
- href: string;
7065
- hreflang: string;
7066
- }[] | undefined;
7067
- images?: {
7068
- loc: string;
7069
- caption?: string | undefined;
7070
- title?: string | undefined;
7071
- }[] | undefined;
7072
- news?: {
7073
- title: string;
7074
- publication: {
7075
- name: string;
7076
- language: string;
7077
- };
7078
- publicationDate: string | Date;
8709
+ prerender?: {
8710
+ enabled?: boolean | undefined;
8711
+ outputPath?: string | undefined;
8712
+ autoSubfolderIndex?: boolean | undefined;
8713
+ crawlLinks?: boolean | undefined;
8714
+ retryCount?: number | undefined;
8715
+ retryDelay?: number | undefined;
8716
+ onSuccess?: ((args_0: {
8717
+ page: {
8718
+ path: string;
8719
+ sitemap?: {
8720
+ lastmod?: string | Date | undefined;
8721
+ exclude?: boolean | undefined;
8722
+ priority?: number | undefined;
8723
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
8724
+ alternateRefs?: {
8725
+ href: string;
8726
+ hreflang: string;
8727
+ }[] | undefined;
8728
+ images?: {
8729
+ loc: string;
8730
+ caption?: string | undefined;
8731
+ title?: string | undefined;
8732
+ }[] | undefined;
8733
+ news?: {
8734
+ title: string;
8735
+ publication: {
8736
+ name: string;
8737
+ language: string;
8738
+ };
8739
+ publicationDate: string | Date;
8740
+ } | undefined;
7079
8741
  } | undefined;
7080
- } | undefined;
7081
- fromCrawl?: boolean | undefined;
7082
- };
7083
- html: string;
7084
- }, ...args: unknown[]) => any) | undefined;
7085
- }>>>>;
8742
+ fromCrawl?: boolean | undefined;
8743
+ };
8744
+ html: string;
8745
+ }, ...args: unknown[]) => any) | undefined;
8746
+ } | undefined;
8747
+ enabled?: boolean | undefined;
8748
+ maskPath?: string | undefined;
8749
+ }>>;
7086
8750
  root: z.ZodDefault<z.ZodOptional<z.ZodString>>;
7087
8751
  target: z.ZodOptional<z.ZodType<import('nitropack/presets').PresetNameInput | undefined, z.ZodTypeDef, import('nitropack/presets').PresetNameInput | undefined>>;
7088
8752
  }, "strip", z.ZodTypeAny, {
@@ -7136,6 +8800,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
7136
8800
  path: string;
7137
8801
  prerender?: {
7138
8802
  enabled?: boolean | undefined;
8803
+ outputPath?: string | undefined;
7139
8804
  autoSubfolderIndex?: boolean | undefined;
7140
8805
  crawlLinks?: boolean | undefined;
7141
8806
  retryCount?: number | undefined;
@@ -7202,6 +8867,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
7202
8867
  path: string;
7203
8868
  prerender?: {
7204
8869
  enabled?: boolean | undefined;
8870
+ outputPath?: string | undefined;
7205
8871
  autoSubfolderIndex?: boolean | undefined;
7206
8872
  crawlLinks?: boolean | undefined;
7207
8873
  retryCount?: number | undefined;
@@ -7267,6 +8933,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
7267
8933
  failOnError?: boolean | undefined;
7268
8934
  } & {
7269
8935
  enabled?: boolean | undefined;
8936
+ outputPath?: string | undefined;
7270
8937
  autoSubfolderIndex?: boolean | undefined;
7271
8938
  crawlLinks?: boolean | undefined;
7272
8939
  retryCount?: number | undefined;
@@ -7305,6 +8972,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
7305
8972
  sitemap?: {
7306
8973
  host?: string | undefined;
7307
8974
  enabled?: boolean | undefined;
8975
+ outputPath?: string | undefined;
7308
8976
  autoSubfolderIndex?: boolean | undefined;
7309
8977
  crawlLinks?: boolean | undefined;
7310
8978
  retryCount?: number | undefined;
@@ -7340,6 +9008,48 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
7340
9008
  html: string;
7341
9009
  }, ...args: unknown[]) => any) | undefined;
7342
9010
  } | undefined;
9011
+ spa?: {
9012
+ prerender: {
9013
+ enabled: boolean;
9014
+ outputPath: string;
9015
+ autoSubfolderIndex?: boolean | undefined;
9016
+ crawlLinks: boolean;
9017
+ retryCount: number;
9018
+ retryDelay?: number | undefined;
9019
+ onSuccess?: ((args_0: {
9020
+ page: {
9021
+ path: string;
9022
+ sitemap?: {
9023
+ lastmod?: string | Date | undefined;
9024
+ exclude?: boolean | undefined;
9025
+ priority?: number | undefined;
9026
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
9027
+ alternateRefs?: {
9028
+ href: string;
9029
+ hreflang: string;
9030
+ }[] | undefined;
9031
+ images?: {
9032
+ loc: string;
9033
+ caption?: string | undefined;
9034
+ title?: string | undefined;
9035
+ }[] | undefined;
9036
+ news?: {
9037
+ title: string;
9038
+ publication: {
9039
+ name: string;
9040
+ language: string;
9041
+ };
9042
+ publicationDate: string | Date;
9043
+ } | undefined;
9044
+ } | undefined;
9045
+ fromCrawl?: boolean | undefined;
9046
+ };
9047
+ html: string;
9048
+ }, ...args: unknown[]) => any) | undefined;
9049
+ };
9050
+ enabled: boolean;
9051
+ maskPath: string;
9052
+ } | undefined;
7343
9053
  }, {
7344
9054
  client?: {
7345
9055
  entry?: string | undefined;
@@ -7355,6 +9065,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
7355
9065
  path: string;
7356
9066
  prerender?: {
7357
9067
  enabled?: boolean | undefined;
9068
+ outputPath?: string | undefined;
7358
9069
  autoSubfolderIndex?: boolean | undefined;
7359
9070
  crawlLinks?: boolean | undefined;
7360
9071
  retryCount?: number | undefined;
@@ -7420,6 +9131,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
7420
9131
  failOnError?: boolean | undefined;
7421
9132
  } & {
7422
9133
  enabled?: boolean | undefined;
9134
+ outputPath?: string | undefined;
7423
9135
  autoSubfolderIndex?: boolean | undefined;
7424
9136
  crawlLinks?: boolean | undefined;
7425
9137
  retryCount?: number | undefined;
@@ -7496,6 +9208,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
7496
9208
  sitemap?: {
7497
9209
  host?: string | undefined;
7498
9210
  enabled?: boolean | undefined;
9211
+ outputPath?: string | undefined;
7499
9212
  autoSubfolderIndex?: boolean | undefined;
7500
9213
  crawlLinks?: boolean | undefined;
7501
9214
  retryCount?: number | undefined;
@@ -7535,6 +9248,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
7535
9248
  path: string;
7536
9249
  prerender?: {
7537
9250
  enabled?: boolean | undefined;
9251
+ outputPath?: string | undefined;
7538
9252
  autoSubfolderIndex?: boolean | undefined;
7539
9253
  crawlLinks?: boolean | undefined;
7540
9254
  retryCount?: number | undefined;
@@ -7595,6 +9309,48 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
7595
9309
  } | undefined;
7596
9310
  fromCrawl?: boolean | undefined;
7597
9311
  })[] | undefined;
9312
+ spa?: {
9313
+ prerender?: {
9314
+ enabled?: boolean | undefined;
9315
+ outputPath?: string | undefined;
9316
+ autoSubfolderIndex?: boolean | undefined;
9317
+ crawlLinks?: boolean | undefined;
9318
+ retryCount?: number | undefined;
9319
+ retryDelay?: number | undefined;
9320
+ onSuccess?: ((args_0: {
9321
+ page: {
9322
+ path: string;
9323
+ sitemap?: {
9324
+ lastmod?: string | Date | undefined;
9325
+ exclude?: boolean | undefined;
9326
+ priority?: number | undefined;
9327
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
9328
+ alternateRefs?: {
9329
+ href: string;
9330
+ hreflang: string;
9331
+ }[] | undefined;
9332
+ images?: {
9333
+ loc: string;
9334
+ caption?: string | undefined;
9335
+ title?: string | undefined;
9336
+ }[] | undefined;
9337
+ news?: {
9338
+ title: string;
9339
+ publication: {
9340
+ name: string;
9341
+ language: string;
9342
+ };
9343
+ publicationDate: string | Date;
9344
+ } | undefined;
9345
+ } | undefined;
9346
+ fromCrawl?: boolean | undefined;
9347
+ };
9348
+ html: string;
9349
+ }, ...args: unknown[]) => any) | undefined;
9350
+ } | undefined;
9351
+ enabled?: boolean | undefined;
9352
+ maskPath?: string | undefined;
9353
+ } | undefined;
7598
9354
  }>>>;
7599
9355
  export declare const pageSchema: z.ZodObject<z.objectUtil.extendShape<{
7600
9356
  path: z.ZodString;
@@ -7703,6 +9459,7 @@ export declare const pageSchema: z.ZodObject<z.objectUtil.extendShape<{
7703
9459
  }, {
7704
9460
  prerender: z.ZodOptional<z.ZodObject<{
7705
9461
  enabled: z.ZodOptional<z.ZodBoolean>;
9462
+ outputPath: z.ZodOptional<z.ZodString>;
7706
9463
  autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
7707
9464
  crawlLinks: z.ZodOptional<z.ZodBoolean>;
7708
9465
  retryCount: z.ZodOptional<z.ZodNumber>;
@@ -7927,6 +9684,7 @@ export declare const pageSchema: z.ZodObject<z.objectUtil.extendShape<{
7927
9684
  }>], z.ZodUnknown>, z.ZodAny>>;
7928
9685
  }, "strip", z.ZodTypeAny, {
7929
9686
  enabled?: boolean | undefined;
9687
+ outputPath?: string | undefined;
7930
9688
  autoSubfolderIndex?: boolean | undefined;
7931
9689
  crawlLinks?: boolean | undefined;
7932
9690
  retryCount?: number | undefined;
@@ -7963,6 +9721,7 @@ export declare const pageSchema: z.ZodObject<z.objectUtil.extendShape<{
7963
9721
  }, ...args: unknown[]) => any) | undefined;
7964
9722
  }, {
7965
9723
  enabled?: boolean | undefined;
9724
+ outputPath?: string | undefined;
7966
9725
  autoSubfolderIndex?: boolean | undefined;
7967
9726
  crawlLinks?: boolean | undefined;
7968
9727
  retryCount?: number | undefined;
@@ -8002,6 +9761,7 @@ export declare const pageSchema: z.ZodObject<z.objectUtil.extendShape<{
8002
9761
  path: string;
8003
9762
  prerender?: {
8004
9763
  enabled?: boolean | undefined;
9764
+ outputPath?: string | undefined;
8005
9765
  autoSubfolderIndex?: boolean | undefined;
8006
9766
  crawlLinks?: boolean | undefined;
8007
9767
  retryCount?: number | undefined;
@@ -8065,6 +9825,7 @@ export declare const pageSchema: z.ZodObject<z.objectUtil.extendShape<{
8065
9825
  path: string;
8066
9826
  prerender?: {
8067
9827
  enabled?: boolean | undefined;
9828
+ outputPath?: string | undefined;
8068
9829
  autoSubfolderIndex?: boolean | undefined;
8069
9830
  crawlLinks?: boolean | undefined;
8070
9831
  retryCount?: number | undefined;