@tanstack/start-plugin-core 1.120.4-alpha.15 → 1.120.4-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/nitro/nitro-plugin.cjs +2 -36
- package/dist/cjs/nitro/nitro-plugin.cjs.map +1 -1
- package/dist/cjs/plugin.cjs +2 -1
- package/dist/cjs/plugin.cjs.map +1 -1
- package/dist/cjs/plugin.d.cts +0 -622
- package/dist/cjs/prerender.cjs +13 -22
- package/dist/cjs/prerender.cjs.map +1 -1
- package/dist/cjs/schema.cjs +1 -15
- package/dist/cjs/schema.cjs.map +1 -1
- package/dist/cjs/schema.d.cts +542 -2319
- package/dist/cjs/start-server-routes-plugin/plugin.cjs +2 -6
- package/dist/cjs/start-server-routes-plugin/plugin.cjs.map +1 -1
- package/dist/esm/nitro/nitro-plugin.js +2 -36
- package/dist/esm/nitro/nitro-plugin.js.map +1 -1
- package/dist/esm/plugin.d.ts +0 -622
- package/dist/esm/plugin.js +2 -1
- package/dist/esm/plugin.js.map +1 -1
- package/dist/esm/prerender.js +13 -22
- package/dist/esm/prerender.js.map +1 -1
- package/dist/esm/schema.d.ts +542 -2319
- package/dist/esm/schema.js +1 -15
- package/dist/esm/schema.js.map +1 -1
- package/dist/esm/start-server-routes-plugin/plugin.js +2 -6
- package/dist/esm/start-server-routes-plugin/plugin.js.map +1 -1
- package/package.json +5 -10
- package/src/nitro/nitro-plugin.ts +0 -40
- package/src/plugin.ts +1 -0
- package/src/prerender.ts +17 -29
- package/src/schema.ts +0 -18
- package/src/start-server-routes-plugin/plugin.ts +2 -10
package/dist/cjs/schema.d.cts
CHANGED
|
@@ -244,7 +244,6 @@ 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>;
|
|
248
247
|
autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
|
|
249
248
|
crawlLinks: z.ZodOptional<z.ZodBoolean>;
|
|
250
249
|
retryCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -469,7 +468,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
469
468
|
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
470
469
|
}, "strip", z.ZodTypeAny, {
|
|
471
470
|
enabled?: boolean | undefined;
|
|
472
|
-
outputPath?: string | undefined;
|
|
473
471
|
autoSubfolderIndex?: boolean | undefined;
|
|
474
472
|
crawlLinks?: boolean | undefined;
|
|
475
473
|
retryCount?: number | undefined;
|
|
@@ -506,7 +504,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
506
504
|
}, ...args: unknown[]) => any) | undefined;
|
|
507
505
|
}, {
|
|
508
506
|
enabled?: boolean | undefined;
|
|
509
|
-
outputPath?: string | undefined;
|
|
510
507
|
autoSubfolderIndex?: boolean | undefined;
|
|
511
508
|
crawlLinks?: boolean | undefined;
|
|
512
509
|
retryCount?: number | undefined;
|
|
@@ -546,7 +543,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
546
543
|
path: string;
|
|
547
544
|
prerender?: {
|
|
548
545
|
enabled?: boolean | undefined;
|
|
549
|
-
outputPath?: string | undefined;
|
|
550
546
|
autoSubfolderIndex?: boolean | undefined;
|
|
551
547
|
crawlLinks?: boolean | undefined;
|
|
552
548
|
retryCount?: number | undefined;
|
|
@@ -610,7 +606,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
610
606
|
path: string;
|
|
611
607
|
prerender?: {
|
|
612
608
|
enabled?: boolean | undefined;
|
|
613
|
-
outputPath?: string | undefined;
|
|
614
609
|
autoSubfolderIndex?: boolean | undefined;
|
|
615
610
|
crawlLinks?: boolean | undefined;
|
|
616
611
|
retryCount?: number | undefined;
|
|
@@ -673,7 +668,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
673
668
|
}>]>, "many">>>;
|
|
674
669
|
sitemap: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
675
670
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
676
|
-
outputPath: z.ZodOptional<z.ZodString>;
|
|
677
671
|
autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
|
|
678
672
|
crawlLinks: z.ZodOptional<z.ZodBoolean>;
|
|
679
673
|
retryCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -901,7 +895,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
901
895
|
}>, "strip", z.ZodTypeAny, {
|
|
902
896
|
host?: string | undefined;
|
|
903
897
|
enabled?: boolean | undefined;
|
|
904
|
-
outputPath?: string | undefined;
|
|
905
898
|
autoSubfolderIndex?: boolean | undefined;
|
|
906
899
|
crawlLinks?: boolean | undefined;
|
|
907
900
|
retryCount?: number | undefined;
|
|
@@ -939,7 +932,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
939
932
|
}, {
|
|
940
933
|
host?: string | undefined;
|
|
941
934
|
enabled?: boolean | undefined;
|
|
942
|
-
outputPath?: string | undefined;
|
|
943
935
|
autoSubfolderIndex?: boolean | undefined;
|
|
944
936
|
crawlLinks?: boolean | undefined;
|
|
945
937
|
retryCount?: number | undefined;
|
|
@@ -1085,7 +1077,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1085
1077
|
}, {
|
|
1086
1078
|
prerender: z.ZodOptional<z.ZodObject<{
|
|
1087
1079
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1088
|
-
outputPath: z.ZodOptional<z.ZodString>;
|
|
1089
1080
|
autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
|
|
1090
1081
|
crawlLinks: z.ZodOptional<z.ZodBoolean>;
|
|
1091
1082
|
retryCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1310,7 +1301,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1310
1301
|
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
1311
1302
|
}, "strip", z.ZodTypeAny, {
|
|
1312
1303
|
enabled?: boolean | undefined;
|
|
1313
|
-
outputPath?: string | undefined;
|
|
1314
1304
|
autoSubfolderIndex?: boolean | undefined;
|
|
1315
1305
|
crawlLinks?: boolean | undefined;
|
|
1316
1306
|
retryCount?: number | undefined;
|
|
@@ -1347,7 +1337,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1347
1337
|
}, ...args: unknown[]) => any) | undefined;
|
|
1348
1338
|
}, {
|
|
1349
1339
|
enabled?: boolean | undefined;
|
|
1350
|
-
outputPath?: string | undefined;
|
|
1351
1340
|
autoSubfolderIndex?: boolean | undefined;
|
|
1352
1341
|
crawlLinks?: boolean | undefined;
|
|
1353
1342
|
retryCount?: number | undefined;
|
|
@@ -1387,7 +1376,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1387
1376
|
path: string;
|
|
1388
1377
|
prerender?: {
|
|
1389
1378
|
enabled?: boolean | undefined;
|
|
1390
|
-
outputPath?: string | undefined;
|
|
1391
1379
|
autoSubfolderIndex?: boolean | undefined;
|
|
1392
1380
|
crawlLinks?: boolean | undefined;
|
|
1393
1381
|
retryCount?: number | undefined;
|
|
@@ -1451,7 +1439,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1451
1439
|
path: string;
|
|
1452
1440
|
prerender?: {
|
|
1453
1441
|
enabled?: boolean | undefined;
|
|
1454
|
-
outputPath?: string | undefined;
|
|
1455
1442
|
autoSubfolderIndex?: boolean | undefined;
|
|
1456
1443
|
crawlLinks?: boolean | undefined;
|
|
1457
1444
|
retryCount?: number | undefined;
|
|
@@ -1518,7 +1505,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1518
1505
|
path: string;
|
|
1519
1506
|
prerender?: {
|
|
1520
1507
|
enabled?: boolean | undefined;
|
|
1521
|
-
outputPath?: string | undefined;
|
|
1522
1508
|
autoSubfolderIndex?: boolean | undefined;
|
|
1523
1509
|
crawlLinks?: boolean | undefined;
|
|
1524
1510
|
retryCount?: number | undefined;
|
|
@@ -1587,7 +1573,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1587
1573
|
path: string;
|
|
1588
1574
|
prerender?: {
|
|
1589
1575
|
enabled?: boolean | undefined;
|
|
1590
|
-
outputPath?: string | undefined;
|
|
1591
1576
|
autoSubfolderIndex?: boolean | undefined;
|
|
1592
1577
|
crawlLinks?: boolean | undefined;
|
|
1593
1578
|
retryCount?: number | undefined;
|
|
@@ -1653,7 +1638,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1653
1638
|
failOnError?: boolean | undefined;
|
|
1654
1639
|
}>, z.ZodOptional<z.ZodObject<{
|
|
1655
1640
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
1656
|
-
outputPath: z.ZodOptional<z.ZodString>;
|
|
1657
1641
|
autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
|
|
1658
1642
|
crawlLinks: z.ZodOptional<z.ZodBoolean>;
|
|
1659
1643
|
retryCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1878,7 +1862,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1878
1862
|
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
1879
1863
|
}, "strip", z.ZodTypeAny, {
|
|
1880
1864
|
enabled?: boolean | undefined;
|
|
1881
|
-
outputPath?: string | undefined;
|
|
1882
1865
|
autoSubfolderIndex?: boolean | undefined;
|
|
1883
1866
|
crawlLinks?: boolean | undefined;
|
|
1884
1867
|
retryCount?: number | undefined;
|
|
@@ -1915,7 +1898,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1915
1898
|
}, ...args: unknown[]) => any) | undefined;
|
|
1916
1899
|
}, {
|
|
1917
1900
|
enabled?: boolean | undefined;
|
|
1918
|
-
outputPath?: string | undefined;
|
|
1919
1901
|
autoSubfolderIndex?: boolean | undefined;
|
|
1920
1902
|
crawlLinks?: boolean | undefined;
|
|
1921
1903
|
retryCount?: number | undefined;
|
|
@@ -1951,528 +1933,64 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
1951
1933
|
html: string;
|
|
1952
1934
|
}, ...args: unknown[]) => any) | undefined;
|
|
1953
1935
|
}>>>>;
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
name: string;
|
|
2013
|
-
language: string;
|
|
2014
|
-
};
|
|
2015
|
-
publicationDate: string | Date;
|
|
2016
|
-
}, {
|
|
2017
|
-
title: string;
|
|
2018
|
-
publication: {
|
|
2019
|
-
name: string;
|
|
2020
|
-
language: string;
|
|
2021
|
-
};
|
|
2022
|
-
publicationDate: string | Date;
|
|
2023
|
-
}>>;
|
|
2024
|
-
}, "strip", z.ZodTypeAny, {
|
|
2025
|
-
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
|
-
}, {
|
|
2047
|
-
lastmod?: string | Date | undefined;
|
|
2048
|
-
exclude?: boolean | undefined;
|
|
2049
|
-
priority?: number | undefined;
|
|
2050
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2051
|
-
alternateRefs?: {
|
|
2052
|
-
href: string;
|
|
2053
|
-
hreflang: string;
|
|
2054
|
-
}[] | undefined;
|
|
2055
|
-
images?: {
|
|
2056
|
-
loc: string;
|
|
2057
|
-
caption?: string | undefined;
|
|
2058
|
-
title?: string | undefined;
|
|
2059
|
-
}[] | undefined;
|
|
2060
|
-
news?: {
|
|
2061
|
-
title: string;
|
|
2062
|
-
publication: {
|
|
2063
|
-
name: string;
|
|
2064
|
-
language: string;
|
|
2065
|
-
};
|
|
2066
|
-
publicationDate: string | Date;
|
|
2067
|
-
} | undefined;
|
|
2068
|
-
}>>;
|
|
2069
|
-
fromCrawl: z.ZodOptional<z.ZodBoolean>;
|
|
2070
|
-
}, "strip", z.ZodTypeAny, {
|
|
2071
|
-
path: string;
|
|
2072
|
-
sitemap?: {
|
|
2073
|
-
lastmod?: string | Date | undefined;
|
|
2074
|
-
exclude?: boolean | undefined;
|
|
2075
|
-
priority?: number | undefined;
|
|
2076
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2077
|
-
alternateRefs?: {
|
|
2078
|
-
href: string;
|
|
2079
|
-
hreflang: string;
|
|
2080
|
-
}[] | undefined;
|
|
2081
|
-
images?: {
|
|
2082
|
-
loc: string;
|
|
2083
|
-
caption?: string | undefined;
|
|
2084
|
-
title?: string | undefined;
|
|
2085
|
-
}[] | undefined;
|
|
2086
|
-
news?: {
|
|
2087
|
-
title: string;
|
|
2088
|
-
publication: {
|
|
2089
|
-
name: string;
|
|
2090
|
-
language: string;
|
|
2091
|
-
};
|
|
2092
|
-
publicationDate: string | Date;
|
|
2093
|
-
} | undefined;
|
|
2094
|
-
} | undefined;
|
|
2095
|
-
fromCrawl?: boolean | undefined;
|
|
2096
|
-
}, {
|
|
2097
|
-
path: string;
|
|
2098
|
-
sitemap?: {
|
|
2099
|
-
lastmod?: string | Date | undefined;
|
|
2100
|
-
exclude?: boolean | undefined;
|
|
2101
|
-
priority?: number | undefined;
|
|
2102
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2103
|
-
alternateRefs?: {
|
|
2104
|
-
href: string;
|
|
2105
|
-
hreflang: string;
|
|
2106
|
-
}[] | undefined;
|
|
2107
|
-
images?: {
|
|
2108
|
-
loc: string;
|
|
2109
|
-
caption?: string | undefined;
|
|
2110
|
-
title?: string | undefined;
|
|
2111
|
-
}[] | undefined;
|
|
2112
|
-
news?: {
|
|
2113
|
-
title: string;
|
|
2114
|
-
publication: {
|
|
2115
|
-
name: string;
|
|
2116
|
-
language: string;
|
|
2117
|
-
};
|
|
2118
|
-
publicationDate: string | Date;
|
|
2119
|
-
} | undefined;
|
|
2120
|
-
} | undefined;
|
|
2121
|
-
fromCrawl?: boolean | undefined;
|
|
2122
|
-
}>;
|
|
2123
|
-
html: z.ZodString;
|
|
2124
|
-
}, "strip", z.ZodTypeAny, {
|
|
2125
|
-
page: {
|
|
2126
|
-
path: string;
|
|
2127
|
-
sitemap?: {
|
|
2128
|
-
lastmod?: string | Date | undefined;
|
|
2129
|
-
exclude?: boolean | undefined;
|
|
2130
|
-
priority?: number | undefined;
|
|
2131
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2132
|
-
alternateRefs?: {
|
|
2133
|
-
href: string;
|
|
2134
|
-
hreflang: string;
|
|
2135
|
-
}[] | undefined;
|
|
2136
|
-
images?: {
|
|
2137
|
-
loc: string;
|
|
2138
|
-
caption?: string | undefined;
|
|
2139
|
-
title?: string | undefined;
|
|
2140
|
-
}[] | undefined;
|
|
2141
|
-
news?: {
|
|
2142
|
-
title: string;
|
|
2143
|
-
publication: {
|
|
2144
|
-
name: string;
|
|
2145
|
-
language: string;
|
|
2146
|
-
};
|
|
2147
|
-
publicationDate: string | Date;
|
|
2148
|
-
} | undefined;
|
|
2149
|
-
} | undefined;
|
|
2150
|
-
fromCrawl?: boolean | undefined;
|
|
2151
|
-
};
|
|
2152
|
-
html: string;
|
|
2153
|
-
}, {
|
|
2154
|
-
page: {
|
|
2155
|
-
path: string;
|
|
2156
|
-
sitemap?: {
|
|
2157
|
-
lastmod?: string | Date | undefined;
|
|
2158
|
-
exclude?: boolean | undefined;
|
|
2159
|
-
priority?: number | undefined;
|
|
2160
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2161
|
-
alternateRefs?: {
|
|
2162
|
-
href: string;
|
|
2163
|
-
hreflang: string;
|
|
2164
|
-
}[] | undefined;
|
|
2165
|
-
images?: {
|
|
2166
|
-
loc: string;
|
|
2167
|
-
caption?: string | undefined;
|
|
2168
|
-
title?: string | undefined;
|
|
2169
|
-
}[] | undefined;
|
|
2170
|
-
news?: {
|
|
2171
|
-
title: string;
|
|
2172
|
-
publication: {
|
|
2173
|
-
name: string;
|
|
2174
|
-
language: string;
|
|
2175
|
-
};
|
|
2176
|
-
publicationDate: string | Date;
|
|
2177
|
-
} | undefined;
|
|
2178
|
-
} | undefined;
|
|
2179
|
-
fromCrawl?: boolean | undefined;
|
|
2180
|
-
};
|
|
2181
|
-
html: string;
|
|
2182
|
-
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
2183
|
-
}, "strip", z.ZodTypeAny, {
|
|
2184
|
-
enabled?: boolean | undefined;
|
|
2185
|
-
outputPath?: string | undefined;
|
|
2186
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
2187
|
-
crawlLinks?: boolean | undefined;
|
|
2188
|
-
retryCount?: number | undefined;
|
|
2189
|
-
retryDelay?: number | undefined;
|
|
2190
|
-
onSuccess?: ((args_0: {
|
|
2191
|
-
page: {
|
|
2192
|
-
path: string;
|
|
2193
|
-
sitemap?: {
|
|
2194
|
-
lastmod?: string | Date | undefined;
|
|
2195
|
-
exclude?: boolean | undefined;
|
|
2196
|
-
priority?: number | undefined;
|
|
2197
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2198
|
-
alternateRefs?: {
|
|
2199
|
-
href: string;
|
|
2200
|
-
hreflang: string;
|
|
2201
|
-
}[] | undefined;
|
|
2202
|
-
images?: {
|
|
2203
|
-
loc: string;
|
|
2204
|
-
caption?: string | undefined;
|
|
2205
|
-
title?: string | undefined;
|
|
2206
|
-
}[] | undefined;
|
|
2207
|
-
news?: {
|
|
2208
|
-
title: string;
|
|
2209
|
-
publication: {
|
|
2210
|
-
name: string;
|
|
2211
|
-
language: string;
|
|
2212
|
-
};
|
|
2213
|
-
publicationDate: string | Date;
|
|
2214
|
-
} | undefined;
|
|
2215
|
-
} | undefined;
|
|
2216
|
-
fromCrawl?: boolean | undefined;
|
|
2217
|
-
};
|
|
2218
|
-
html: string;
|
|
2219
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
2220
|
-
}, {
|
|
2221
|
-
enabled?: boolean | undefined;
|
|
2222
|
-
outputPath?: string | undefined;
|
|
2223
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
2224
|
-
crawlLinks?: boolean | undefined;
|
|
2225
|
-
retryCount?: number | undefined;
|
|
2226
|
-
retryDelay?: number | undefined;
|
|
2227
|
-
onSuccess?: ((args_0: {
|
|
2228
|
-
page: {
|
|
2229
|
-
path: string;
|
|
2230
|
-
sitemap?: {
|
|
2231
|
-
lastmod?: string | Date | undefined;
|
|
2232
|
-
exclude?: boolean | undefined;
|
|
2233
|
-
priority?: number | undefined;
|
|
2234
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2235
|
-
alternateRefs?: {
|
|
2236
|
-
href: string;
|
|
2237
|
-
hreflang: string;
|
|
2238
|
-
}[] | undefined;
|
|
2239
|
-
images?: {
|
|
2240
|
-
loc: string;
|
|
2241
|
-
caption?: string | undefined;
|
|
2242
|
-
title?: string | undefined;
|
|
2243
|
-
}[] | undefined;
|
|
2244
|
-
news?: {
|
|
2245
|
-
title: string;
|
|
2246
|
-
publication: {
|
|
2247
|
-
name: string;
|
|
2248
|
-
language: string;
|
|
2249
|
-
};
|
|
2250
|
-
publicationDate: string | Date;
|
|
2251
|
-
} | undefined;
|
|
2252
|
-
} | undefined;
|
|
2253
|
-
fromCrawl?: boolean | undefined;
|
|
2254
|
-
};
|
|
2255
|
-
html: string;
|
|
2256
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
2257
|
-
}>>>, {
|
|
2258
|
-
enabled: boolean;
|
|
2259
|
-
outputPath: string;
|
|
2260
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
2261
|
-
crawlLinks: boolean;
|
|
2262
|
-
retryCount: number;
|
|
2263
|
-
retryDelay?: number | undefined;
|
|
2264
|
-
onSuccess?: ((args_0: {
|
|
2265
|
-
page: {
|
|
2266
|
-
path: string;
|
|
2267
|
-
sitemap?: {
|
|
2268
|
-
lastmod?: string | Date | undefined;
|
|
2269
|
-
exclude?: boolean | undefined;
|
|
2270
|
-
priority?: number | undefined;
|
|
2271
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2272
|
-
alternateRefs?: {
|
|
2273
|
-
href: string;
|
|
2274
|
-
hreflang: string;
|
|
2275
|
-
}[] | undefined;
|
|
2276
|
-
images?: {
|
|
2277
|
-
loc: string;
|
|
2278
|
-
caption?: string | undefined;
|
|
2279
|
-
title?: string | undefined;
|
|
2280
|
-
}[] | undefined;
|
|
2281
|
-
news?: {
|
|
2282
|
-
title: string;
|
|
2283
|
-
publication: {
|
|
2284
|
-
name: string;
|
|
2285
|
-
language: string;
|
|
2286
|
-
};
|
|
2287
|
-
publicationDate: string | Date;
|
|
2288
|
-
} | undefined;
|
|
2289
|
-
} | undefined;
|
|
2290
|
-
fromCrawl?: boolean | undefined;
|
|
2291
|
-
};
|
|
2292
|
-
html: string;
|
|
2293
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
2294
|
-
}, {
|
|
2295
|
-
enabled?: boolean | undefined;
|
|
2296
|
-
outputPath?: string | undefined;
|
|
2297
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
2298
|
-
crawlLinks?: boolean | undefined;
|
|
2299
|
-
retryCount?: number | undefined;
|
|
2300
|
-
retryDelay?: number | undefined;
|
|
2301
|
-
onSuccess?: ((args_0: {
|
|
2302
|
-
page: {
|
|
2303
|
-
path: string;
|
|
2304
|
-
sitemap?: {
|
|
2305
|
-
lastmod?: string | Date | undefined;
|
|
2306
|
-
exclude?: boolean | undefined;
|
|
2307
|
-
priority?: number | undefined;
|
|
2308
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2309
|
-
alternateRefs?: {
|
|
2310
|
-
href: string;
|
|
2311
|
-
hreflang: string;
|
|
2312
|
-
}[] | undefined;
|
|
2313
|
-
images?: {
|
|
2314
|
-
loc: string;
|
|
2315
|
-
caption?: string | undefined;
|
|
2316
|
-
title?: string | undefined;
|
|
2317
|
-
}[] | undefined;
|
|
2318
|
-
news?: {
|
|
2319
|
-
title: string;
|
|
2320
|
-
publication: {
|
|
2321
|
-
name: string;
|
|
2322
|
-
language: string;
|
|
2323
|
-
};
|
|
2324
|
-
publicationDate: string | Date;
|
|
2325
|
-
} | undefined;
|
|
2326
|
-
} | undefined;
|
|
2327
|
-
fromCrawl?: boolean | undefined;
|
|
2328
|
-
};
|
|
2329
|
-
html: string;
|
|
2330
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
2331
|
-
} | undefined>;
|
|
2332
|
-
}, "strip", z.ZodTypeAny, {
|
|
2333
|
-
prerender: {
|
|
2334
|
-
enabled: boolean;
|
|
2335
|
-
outputPath: string;
|
|
2336
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
2337
|
-
crawlLinks: boolean;
|
|
2338
|
-
retryCount: number;
|
|
2339
|
-
retryDelay?: number | undefined;
|
|
2340
|
-
onSuccess?: ((args_0: {
|
|
2341
|
-
page: {
|
|
2342
|
-
path: string;
|
|
2343
|
-
sitemap?: {
|
|
2344
|
-
lastmod?: string | Date | undefined;
|
|
2345
|
-
exclude?: boolean | undefined;
|
|
2346
|
-
priority?: number | undefined;
|
|
2347
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2348
|
-
alternateRefs?: {
|
|
2349
|
-
href: string;
|
|
2350
|
-
hreflang: string;
|
|
2351
|
-
}[] | undefined;
|
|
2352
|
-
images?: {
|
|
2353
|
-
loc: string;
|
|
2354
|
-
caption?: string | undefined;
|
|
2355
|
-
title?: string | undefined;
|
|
2356
|
-
}[] | undefined;
|
|
2357
|
-
news?: {
|
|
2358
|
-
title: string;
|
|
2359
|
-
publication: {
|
|
2360
|
-
name: string;
|
|
2361
|
-
language: string;
|
|
2362
|
-
};
|
|
2363
|
-
publicationDate: string | Date;
|
|
2364
|
-
} | undefined;
|
|
2365
|
-
} | undefined;
|
|
2366
|
-
fromCrawl?: boolean | undefined;
|
|
2367
|
-
};
|
|
2368
|
-
html: string;
|
|
2369
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
2370
|
-
};
|
|
2371
|
-
enabled: boolean;
|
|
2372
|
-
maskPath: string;
|
|
2373
|
-
autoRedirect: boolean;
|
|
2374
|
-
}, {
|
|
2375
|
-
prerender?: {
|
|
2376
|
-
enabled?: boolean | undefined;
|
|
2377
|
-
outputPath?: string | undefined;
|
|
2378
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
2379
|
-
crawlLinks?: boolean | undefined;
|
|
2380
|
-
retryCount?: number | undefined;
|
|
2381
|
-
retryDelay?: number | undefined;
|
|
2382
|
-
onSuccess?: ((args_0: {
|
|
2383
|
-
page: {
|
|
2384
|
-
path: string;
|
|
2385
|
-
sitemap?: {
|
|
2386
|
-
lastmod?: string | Date | undefined;
|
|
2387
|
-
exclude?: boolean | undefined;
|
|
2388
|
-
priority?: number | undefined;
|
|
2389
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2390
|
-
alternateRefs?: {
|
|
2391
|
-
href: string;
|
|
2392
|
-
hreflang: string;
|
|
2393
|
-
}[] | undefined;
|
|
2394
|
-
images?: {
|
|
2395
|
-
loc: string;
|
|
2396
|
-
caption?: string | undefined;
|
|
2397
|
-
title?: string | undefined;
|
|
2398
|
-
}[] | undefined;
|
|
2399
|
-
news?: {
|
|
2400
|
-
title: string;
|
|
2401
|
-
publication: {
|
|
2402
|
-
name: string;
|
|
2403
|
-
language: string;
|
|
2404
|
-
};
|
|
2405
|
-
publicationDate: string | Date;
|
|
2406
|
-
} | undefined;
|
|
2407
|
-
} | undefined;
|
|
2408
|
-
fromCrawl?: boolean | undefined;
|
|
2409
|
-
};
|
|
2410
|
-
html: string;
|
|
2411
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
2412
|
-
} | undefined;
|
|
2413
|
-
enabled?: boolean | undefined;
|
|
2414
|
-
maskPath?: string | undefined;
|
|
2415
|
-
autoRedirect?: boolean | undefined;
|
|
2416
|
-
}>>;
|
|
2417
|
-
root: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2418
|
-
target: z.ZodOptional<z.ZodType<import('nitropack/presets').PresetNameInput | undefined, z.ZodTypeDef, import('nitropack/presets').PresetNameInput | undefined>>;
|
|
2419
|
-
}, "strip", z.ZodTypeAny, {
|
|
2420
|
-
client: {
|
|
2421
|
-
base: string;
|
|
2422
|
-
entry?: string | undefined;
|
|
2423
|
-
};
|
|
2424
|
-
server: {
|
|
2425
|
-
entry?: string | undefined;
|
|
2426
|
-
};
|
|
2427
|
-
root: string;
|
|
2428
|
-
tsr: {
|
|
2429
|
-
srcDirectory: string;
|
|
2430
|
-
target?: "react" | "solid" | undefined;
|
|
2431
|
-
virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
2432
|
-
routeFilePrefix?: string | undefined;
|
|
2433
|
-
routeFileIgnorePrefix?: string | undefined;
|
|
2434
|
-
routeFileIgnorePattern?: string | undefined;
|
|
2435
|
-
routesDirectory?: string | undefined;
|
|
2436
|
-
quoteStyle?: "single" | "double" | undefined;
|
|
2437
|
-
semicolons?: boolean | undefined;
|
|
2438
|
-
disableLogging?: boolean | undefined;
|
|
2439
|
-
routeTreeFileHeader?: string[] | undefined;
|
|
2440
|
-
indexToken?: string | undefined;
|
|
2441
|
-
routeToken?: string | undefined;
|
|
2442
|
-
pathParamsAllowedCharacters?: (";" | ":" | "@" | "&" | "=" | "+" | "$" | ",")[] | undefined;
|
|
2443
|
-
generatedRouteTree?: string | undefined;
|
|
2444
|
-
disableTypes?: boolean | undefined;
|
|
2445
|
-
verboseFileRoutes?: boolean | undefined;
|
|
2446
|
-
addExtensions?: boolean | undefined;
|
|
2447
|
-
disableManifestGeneration?: boolean | undefined;
|
|
2448
|
-
enableRouteTreeFormatting?: boolean | undefined;
|
|
2449
|
-
routeTreeFileFooter?: string[] | undefined;
|
|
2450
|
-
autoCodeSplitting?: boolean | undefined;
|
|
2451
|
-
customScaffolding?: {
|
|
2452
|
-
routeTemplate?: string | undefined;
|
|
2453
|
-
lazyRouteTemplate?: string | undefined;
|
|
2454
|
-
} | undefined;
|
|
2455
|
-
experimental?: {
|
|
2456
|
-
enableCodeSplitting?: boolean | undefined;
|
|
2457
|
-
} | undefined;
|
|
2458
|
-
};
|
|
2459
|
-
serverFns: {
|
|
2460
|
-
base: string;
|
|
2461
|
-
};
|
|
2462
|
-
public: {
|
|
2463
|
-
base: string;
|
|
2464
|
-
dir: string;
|
|
2465
|
-
};
|
|
2466
|
-
pages: (string | {
|
|
2467
|
-
path: string;
|
|
2468
|
-
prerender?: {
|
|
2469
|
-
enabled?: boolean | undefined;
|
|
2470
|
-
outputPath?: string | undefined;
|
|
2471
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
2472
|
-
crawlLinks?: boolean | undefined;
|
|
2473
|
-
retryCount?: number | undefined;
|
|
2474
|
-
retryDelay?: number | undefined;
|
|
2475
|
-
onSuccess?: ((args_0: {
|
|
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: {
|
|
2476
1994
|
page: {
|
|
2477
1995
|
path: string;
|
|
2478
1996
|
sitemap?: {
|
|
@@ -2534,7 +2052,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2534
2052
|
path: string;
|
|
2535
2053
|
prerender?: {
|
|
2536
2054
|
enabled?: boolean | undefined;
|
|
2537
|
-
outputPath?: string | undefined;
|
|
2538
2055
|
autoSubfolderIndex?: boolean | undefined;
|
|
2539
2056
|
crawlLinks?: boolean | undefined;
|
|
2540
2057
|
retryCount?: number | undefined;
|
|
@@ -2600,7 +2117,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2600
2117
|
failOnError?: boolean | undefined;
|
|
2601
2118
|
} & {
|
|
2602
2119
|
enabled?: boolean | undefined;
|
|
2603
|
-
outputPath?: string | undefined;
|
|
2604
2120
|
autoSubfolderIndex?: boolean | undefined;
|
|
2605
2121
|
crawlLinks?: boolean | undefined;
|
|
2606
2122
|
retryCount?: number | undefined;
|
|
@@ -2639,7 +2155,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2639
2155
|
sitemap?: {
|
|
2640
2156
|
host?: string | undefined;
|
|
2641
2157
|
enabled?: boolean | undefined;
|
|
2642
|
-
outputPath?: string | undefined;
|
|
2643
2158
|
autoSubfolderIndex?: boolean | undefined;
|
|
2644
2159
|
crawlLinks?: boolean | undefined;
|
|
2645
2160
|
retryCount?: number | undefined;
|
|
@@ -2655,68 +2170,25 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2655
2170
|
alternateRefs?: {
|
|
2656
2171
|
href: string;
|
|
2657
2172
|
hreflang: string;
|
|
2658
|
-
}[] | undefined;
|
|
2659
|
-
images?: {
|
|
2660
|
-
loc: string;
|
|
2661
|
-
caption?: string | undefined;
|
|
2662
|
-
title?: string | undefined;
|
|
2663
|
-
}[] | undefined;
|
|
2664
|
-
news?: {
|
|
2665
|
-
title: string;
|
|
2666
|
-
publication: {
|
|
2667
|
-
name: string;
|
|
2668
|
-
language: string;
|
|
2669
|
-
};
|
|
2670
|
-
publicationDate: string | Date;
|
|
2671
|
-
} | undefined;
|
|
2672
|
-
} | undefined;
|
|
2673
|
-
fromCrawl?: boolean | undefined;
|
|
2674
|
-
};
|
|
2675
|
-
html: string;
|
|
2676
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
2677
|
-
} | undefined;
|
|
2678
|
-
shell?: {
|
|
2679
|
-
prerender: {
|
|
2680
|
-
enabled: boolean;
|
|
2681
|
-
outputPath: string;
|
|
2682
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
2683
|
-
crawlLinks: boolean;
|
|
2684
|
-
retryCount: number;
|
|
2685
|
-
retryDelay?: number | undefined;
|
|
2686
|
-
onSuccess?: ((args_0: {
|
|
2687
|
-
page: {
|
|
2688
|
-
path: string;
|
|
2689
|
-
sitemap?: {
|
|
2690
|
-
lastmod?: string | Date | undefined;
|
|
2691
|
-
exclude?: boolean | undefined;
|
|
2692
|
-
priority?: number | undefined;
|
|
2693
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2694
|
-
alternateRefs?: {
|
|
2695
|
-
href: string;
|
|
2696
|
-
hreflang: string;
|
|
2697
|
-
}[] | undefined;
|
|
2698
|
-
images?: {
|
|
2699
|
-
loc: string;
|
|
2700
|
-
caption?: string | undefined;
|
|
2701
|
-
title?: string | undefined;
|
|
2702
|
-
}[] | undefined;
|
|
2703
|
-
news?: {
|
|
2704
|
-
title: string;
|
|
2705
|
-
publication: {
|
|
2706
|
-
name: string;
|
|
2707
|
-
language: string;
|
|
2708
|
-
};
|
|
2709
|
-
publicationDate: string | Date;
|
|
2710
|
-
} | undefined;
|
|
2173
|
+
}[] | undefined;
|
|
2174
|
+
images?: {
|
|
2175
|
+
loc: string;
|
|
2176
|
+
caption?: string | undefined;
|
|
2177
|
+
title?: string | undefined;
|
|
2178
|
+
}[] | undefined;
|
|
2179
|
+
news?: {
|
|
2180
|
+
title: string;
|
|
2181
|
+
publication: {
|
|
2182
|
+
name: string;
|
|
2183
|
+
language: string;
|
|
2184
|
+
};
|
|
2185
|
+
publicationDate: string | Date;
|
|
2711
2186
|
} | undefined;
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
-
};
|
|
2717
|
-
enabled: boolean;
|
|
2718
|
-
maskPath: string;
|
|
2719
|
-
autoRedirect: boolean;
|
|
2187
|
+
} | undefined;
|
|
2188
|
+
fromCrawl?: boolean | undefined;
|
|
2189
|
+
};
|
|
2190
|
+
html: string;
|
|
2191
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
2720
2192
|
} | undefined;
|
|
2721
2193
|
}, {
|
|
2722
2194
|
client?: {
|
|
@@ -2733,7 +2205,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2733
2205
|
path: string;
|
|
2734
2206
|
prerender?: {
|
|
2735
2207
|
enabled?: boolean | undefined;
|
|
2736
|
-
outputPath?: string | undefined;
|
|
2737
2208
|
autoSubfolderIndex?: boolean | undefined;
|
|
2738
2209
|
crawlLinks?: boolean | undefined;
|
|
2739
2210
|
retryCount?: number | undefined;
|
|
@@ -2799,7 +2270,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2799
2270
|
failOnError?: boolean | undefined;
|
|
2800
2271
|
} & {
|
|
2801
2272
|
enabled?: boolean | undefined;
|
|
2802
|
-
outputPath?: string | undefined;
|
|
2803
2273
|
autoSubfolderIndex?: boolean | undefined;
|
|
2804
2274
|
crawlLinks?: boolean | undefined;
|
|
2805
2275
|
retryCount?: number | undefined;
|
|
@@ -2876,7 +2346,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2876
2346
|
sitemap?: {
|
|
2877
2347
|
host?: string | undefined;
|
|
2878
2348
|
enabled?: boolean | undefined;
|
|
2879
|
-
outputPath?: string | undefined;
|
|
2880
2349
|
autoSubfolderIndex?: boolean | undefined;
|
|
2881
2350
|
crawlLinks?: boolean | undefined;
|
|
2882
2351
|
retryCount?: number | undefined;
|
|
@@ -2916,7 +2385,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2916
2385
|
path: string;
|
|
2917
2386
|
prerender?: {
|
|
2918
2387
|
enabled?: boolean | undefined;
|
|
2919
|
-
outputPath?: string | undefined;
|
|
2920
2388
|
autoSubfolderIndex?: boolean | undefined;
|
|
2921
2389
|
crawlLinks?: boolean | undefined;
|
|
2922
2390
|
retryCount?: number | undefined;
|
|
@@ -2977,49 +2445,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
2977
2445
|
} | undefined;
|
|
2978
2446
|
fromCrawl?: boolean | undefined;
|
|
2979
2447
|
})[] | undefined;
|
|
2980
|
-
shell?: {
|
|
2981
|
-
prerender?: {
|
|
2982
|
-
enabled?: boolean | undefined;
|
|
2983
|
-
outputPath?: string | undefined;
|
|
2984
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
2985
|
-
crawlLinks?: boolean | undefined;
|
|
2986
|
-
retryCount?: number | undefined;
|
|
2987
|
-
retryDelay?: number | undefined;
|
|
2988
|
-
onSuccess?: ((args_0: {
|
|
2989
|
-
page: {
|
|
2990
|
-
path: string;
|
|
2991
|
-
sitemap?: {
|
|
2992
|
-
lastmod?: string | Date | undefined;
|
|
2993
|
-
exclude?: boolean | undefined;
|
|
2994
|
-
priority?: number | undefined;
|
|
2995
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
2996
|
-
alternateRefs?: {
|
|
2997
|
-
href: string;
|
|
2998
|
-
hreflang: string;
|
|
2999
|
-
}[] | undefined;
|
|
3000
|
-
images?: {
|
|
3001
|
-
loc: string;
|
|
3002
|
-
caption?: string | undefined;
|
|
3003
|
-
title?: string | undefined;
|
|
3004
|
-
}[] | undefined;
|
|
3005
|
-
news?: {
|
|
3006
|
-
title: string;
|
|
3007
|
-
publication: {
|
|
3008
|
-
name: string;
|
|
3009
|
-
language: string;
|
|
3010
|
-
};
|
|
3011
|
-
publicationDate: string | Date;
|
|
3012
|
-
} | undefined;
|
|
3013
|
-
} | undefined;
|
|
3014
|
-
fromCrawl?: boolean | undefined;
|
|
3015
|
-
};
|
|
3016
|
-
html: string;
|
|
3017
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
3018
|
-
} | undefined;
|
|
3019
|
-
enabled?: boolean | undefined;
|
|
3020
|
-
maskPath?: string | undefined;
|
|
3021
|
-
autoRedirect?: boolean | undefined;
|
|
3022
|
-
} | undefined;
|
|
3023
2448
|
}>>>;
|
|
3024
2449
|
parse: (opts?: z.input<z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3025
2450
|
tsr: z.ZodDefault<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -3265,7 +2690,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
3265
2690
|
}, {
|
|
3266
2691
|
prerender: z.ZodOptional<z.ZodObject<{
|
|
3267
2692
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
3268
|
-
outputPath: z.ZodOptional<z.ZodString>;
|
|
3269
2693
|
autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
|
|
3270
2694
|
crawlLinks: z.ZodOptional<z.ZodBoolean>;
|
|
3271
2695
|
retryCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3490,7 +2914,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
3490
2914
|
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
3491
2915
|
}, "strip", z.ZodTypeAny, {
|
|
3492
2916
|
enabled?: boolean | undefined;
|
|
3493
|
-
outputPath?: string | undefined;
|
|
3494
2917
|
autoSubfolderIndex?: boolean | undefined;
|
|
3495
2918
|
crawlLinks?: boolean | undefined;
|
|
3496
2919
|
retryCount?: number | undefined;
|
|
@@ -3527,7 +2950,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
3527
2950
|
}, ...args: unknown[]) => any) | undefined;
|
|
3528
2951
|
}, {
|
|
3529
2952
|
enabled?: boolean | undefined;
|
|
3530
|
-
outputPath?: string | undefined;
|
|
3531
2953
|
autoSubfolderIndex?: boolean | undefined;
|
|
3532
2954
|
crawlLinks?: boolean | undefined;
|
|
3533
2955
|
retryCount?: number | undefined;
|
|
@@ -3567,7 +2989,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
3567
2989
|
path: string;
|
|
3568
2990
|
prerender?: {
|
|
3569
2991
|
enabled?: boolean | undefined;
|
|
3570
|
-
outputPath?: string | undefined;
|
|
3571
2992
|
autoSubfolderIndex?: boolean | undefined;
|
|
3572
2993
|
crawlLinks?: boolean | undefined;
|
|
3573
2994
|
retryCount?: number | undefined;
|
|
@@ -3631,7 +3052,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
3631
3052
|
path: string;
|
|
3632
3053
|
prerender?: {
|
|
3633
3054
|
enabled?: boolean | undefined;
|
|
3634
|
-
outputPath?: string | undefined;
|
|
3635
3055
|
autoSubfolderIndex?: boolean | undefined;
|
|
3636
3056
|
crawlLinks?: boolean | undefined;
|
|
3637
3057
|
retryCount?: number | undefined;
|
|
@@ -3694,7 +3114,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
3694
3114
|
}>]>, "many">>>;
|
|
3695
3115
|
sitemap: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
3696
3116
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
3697
|
-
outputPath: z.ZodOptional<z.ZodString>;
|
|
3698
3117
|
autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
|
|
3699
3118
|
crawlLinks: z.ZodOptional<z.ZodBoolean>;
|
|
3700
3119
|
retryCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3922,7 +3341,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
3922
3341
|
}>, "strip", z.ZodTypeAny, {
|
|
3923
3342
|
host?: string | undefined;
|
|
3924
3343
|
enabled?: boolean | undefined;
|
|
3925
|
-
outputPath?: string | undefined;
|
|
3926
3344
|
autoSubfolderIndex?: boolean | undefined;
|
|
3927
3345
|
crawlLinks?: boolean | undefined;
|
|
3928
3346
|
retryCount?: number | undefined;
|
|
@@ -3960,7 +3378,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
3960
3378
|
}, {
|
|
3961
3379
|
host?: string | undefined;
|
|
3962
3380
|
enabled?: boolean | undefined;
|
|
3963
|
-
outputPath?: string | undefined;
|
|
3964
3381
|
autoSubfolderIndex?: boolean | undefined;
|
|
3965
3382
|
crawlLinks?: boolean | undefined;
|
|
3966
3383
|
retryCount?: number | undefined;
|
|
@@ -4106,7 +3523,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4106
3523
|
}, {
|
|
4107
3524
|
prerender: z.ZodOptional<z.ZodObject<{
|
|
4108
3525
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4109
|
-
outputPath: z.ZodOptional<z.ZodString>;
|
|
4110
3526
|
autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
|
|
4111
3527
|
crawlLinks: z.ZodOptional<z.ZodBoolean>;
|
|
4112
3528
|
retryCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4331,7 +3747,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4331
3747
|
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
4332
3748
|
}, "strip", z.ZodTypeAny, {
|
|
4333
3749
|
enabled?: boolean | undefined;
|
|
4334
|
-
outputPath?: string | undefined;
|
|
4335
3750
|
autoSubfolderIndex?: boolean | undefined;
|
|
4336
3751
|
crawlLinks?: boolean | undefined;
|
|
4337
3752
|
retryCount?: number | undefined;
|
|
@@ -4368,7 +3783,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4368
3783
|
}, ...args: unknown[]) => any) | undefined;
|
|
4369
3784
|
}, {
|
|
4370
3785
|
enabled?: boolean | undefined;
|
|
4371
|
-
outputPath?: string | undefined;
|
|
4372
3786
|
autoSubfolderIndex?: boolean | undefined;
|
|
4373
3787
|
crawlLinks?: boolean | undefined;
|
|
4374
3788
|
retryCount?: number | undefined;
|
|
@@ -4408,7 +3822,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4408
3822
|
path: string;
|
|
4409
3823
|
prerender?: {
|
|
4410
3824
|
enabled?: boolean | undefined;
|
|
4411
|
-
outputPath?: string | undefined;
|
|
4412
3825
|
autoSubfolderIndex?: boolean | undefined;
|
|
4413
3826
|
crawlLinks?: boolean | undefined;
|
|
4414
3827
|
retryCount?: number | undefined;
|
|
@@ -4472,7 +3885,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4472
3885
|
path: string;
|
|
4473
3886
|
prerender?: {
|
|
4474
3887
|
enabled?: boolean | undefined;
|
|
4475
|
-
outputPath?: string | undefined;
|
|
4476
3888
|
autoSubfolderIndex?: boolean | undefined;
|
|
4477
3889
|
crawlLinks?: boolean | undefined;
|
|
4478
3890
|
retryCount?: number | undefined;
|
|
@@ -4539,7 +3951,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4539
3951
|
path: string;
|
|
4540
3952
|
prerender?: {
|
|
4541
3953
|
enabled?: boolean | undefined;
|
|
4542
|
-
outputPath?: string | undefined;
|
|
4543
3954
|
autoSubfolderIndex?: boolean | undefined;
|
|
4544
3955
|
crawlLinks?: boolean | undefined;
|
|
4545
3956
|
retryCount?: number | undefined;
|
|
@@ -4608,7 +4019,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4608
4019
|
path: string;
|
|
4609
4020
|
prerender?: {
|
|
4610
4021
|
enabled?: boolean | undefined;
|
|
4611
|
-
outputPath?: string | undefined;
|
|
4612
4022
|
autoSubfolderIndex?: boolean | undefined;
|
|
4613
4023
|
crawlLinks?: boolean | undefined;
|
|
4614
4024
|
retryCount?: number | undefined;
|
|
@@ -4674,7 +4084,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4674
4084
|
failOnError?: boolean | undefined;
|
|
4675
4085
|
}>, z.ZodOptional<z.ZodObject<{
|
|
4676
4086
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4677
|
-
outputPath: z.ZodOptional<z.ZodString>;
|
|
4678
4087
|
autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
|
|
4679
4088
|
crawlLinks: z.ZodOptional<z.ZodBoolean>;
|
|
4680
4089
|
retryCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4682,269 +4091,63 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4682
4091
|
onSuccess: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
4683
4092
|
page: z.ZodObject<{
|
|
4684
4093
|
path: z.ZodString;
|
|
4685
|
-
sitemap: z.ZodOptional<z.ZodObject<{
|
|
4686
|
-
exclude: z.ZodOptional<z.ZodBoolean>;
|
|
4687
|
-
priority: z.ZodOptional<z.ZodNumber>;
|
|
4688
|
-
changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
|
|
4689
|
-
lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
|
|
4690
|
-
alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4691
|
-
href: z.ZodString;
|
|
4692
|
-
hreflang: z.ZodString;
|
|
4693
|
-
}, "strip", z.ZodTypeAny, {
|
|
4694
|
-
href: string;
|
|
4695
|
-
hreflang: string;
|
|
4696
|
-
}, {
|
|
4697
|
-
href: string;
|
|
4698
|
-
hreflang: string;
|
|
4699
|
-
}>, "many">>;
|
|
4700
|
-
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4701
|
-
loc: z.ZodString;
|
|
4702
|
-
caption: z.ZodOptional<z.ZodString>;
|
|
4703
|
-
title: z.ZodOptional<z.ZodString>;
|
|
4704
|
-
}, "strip", z.ZodTypeAny, {
|
|
4705
|
-
loc: string;
|
|
4706
|
-
caption?: string | undefined;
|
|
4707
|
-
title?: string | undefined;
|
|
4708
|
-
}, {
|
|
4709
|
-
loc: string;
|
|
4710
|
-
caption?: string | undefined;
|
|
4711
|
-
title?: string | undefined;
|
|
4712
|
-
}>, "many">>;
|
|
4713
|
-
news: z.ZodOptional<z.ZodObject<{
|
|
4714
|
-
publication: z.ZodObject<{
|
|
4715
|
-
name: z.ZodString;
|
|
4716
|
-
language: z.ZodString;
|
|
4717
|
-
}, "strip", z.ZodTypeAny, {
|
|
4718
|
-
name: string;
|
|
4719
|
-
language: string;
|
|
4720
|
-
}, {
|
|
4721
|
-
name: string;
|
|
4722
|
-
language: string;
|
|
4723
|
-
}>;
|
|
4724
|
-
publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
4725
|
-
title: z.ZodString;
|
|
4726
|
-
}, "strip", z.ZodTypeAny, {
|
|
4727
|
-
title: string;
|
|
4728
|
-
publication: {
|
|
4729
|
-
name: string;
|
|
4730
|
-
language: string;
|
|
4731
|
-
};
|
|
4732
|
-
publicationDate: string | Date;
|
|
4733
|
-
}, {
|
|
4734
|
-
title: string;
|
|
4735
|
-
publication: {
|
|
4736
|
-
name: string;
|
|
4737
|
-
language: string;
|
|
4738
|
-
};
|
|
4739
|
-
publicationDate: string | Date;
|
|
4740
|
-
}>>;
|
|
4741
|
-
}, "strip", z.ZodTypeAny, {
|
|
4742
|
-
lastmod?: string | Date | undefined;
|
|
4743
|
-
exclude?: boolean | undefined;
|
|
4744
|
-
priority?: number | undefined;
|
|
4745
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
4746
|
-
alternateRefs?: {
|
|
4747
|
-
href: string;
|
|
4748
|
-
hreflang: string;
|
|
4749
|
-
}[] | undefined;
|
|
4750
|
-
images?: {
|
|
4751
|
-
loc: string;
|
|
4752
|
-
caption?: string | undefined;
|
|
4753
|
-
title?: string | undefined;
|
|
4754
|
-
}[] | undefined;
|
|
4755
|
-
news?: {
|
|
4756
|
-
title: string;
|
|
4757
|
-
publication: {
|
|
4758
|
-
name: string;
|
|
4759
|
-
language: string;
|
|
4760
|
-
};
|
|
4761
|
-
publicationDate: string | Date;
|
|
4762
|
-
} | undefined;
|
|
4763
|
-
}, {
|
|
4764
|
-
lastmod?: string | Date | undefined;
|
|
4765
|
-
exclude?: boolean | undefined;
|
|
4766
|
-
priority?: number | undefined;
|
|
4767
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
4768
|
-
alternateRefs?: {
|
|
4769
|
-
href: string;
|
|
4770
|
-
hreflang: string;
|
|
4771
|
-
}[] | undefined;
|
|
4772
|
-
images?: {
|
|
4773
|
-
loc: string;
|
|
4774
|
-
caption?: string | undefined;
|
|
4775
|
-
title?: string | undefined;
|
|
4776
|
-
}[] | undefined;
|
|
4777
|
-
news?: {
|
|
4778
|
-
title: string;
|
|
4779
|
-
publication: {
|
|
4780
|
-
name: string;
|
|
4781
|
-
language: string;
|
|
4782
|
-
};
|
|
4783
|
-
publicationDate: string | Date;
|
|
4784
|
-
} | undefined;
|
|
4785
|
-
}>>;
|
|
4786
|
-
fromCrawl: z.ZodOptional<z.ZodBoolean>;
|
|
4787
|
-
}, "strip", z.ZodTypeAny, {
|
|
4788
|
-
path: string;
|
|
4789
|
-
sitemap?: {
|
|
4790
|
-
lastmod?: string | Date | undefined;
|
|
4791
|
-
exclude?: boolean | undefined;
|
|
4792
|
-
priority?: number | undefined;
|
|
4793
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
4794
|
-
alternateRefs?: {
|
|
4795
|
-
href: string;
|
|
4796
|
-
hreflang: string;
|
|
4797
|
-
}[] | undefined;
|
|
4798
|
-
images?: {
|
|
4799
|
-
loc: string;
|
|
4800
|
-
caption?: string | undefined;
|
|
4801
|
-
title?: string | undefined;
|
|
4802
|
-
}[] | undefined;
|
|
4803
|
-
news?: {
|
|
4804
|
-
title: string;
|
|
4805
|
-
publication: {
|
|
4806
|
-
name: string;
|
|
4807
|
-
language: string;
|
|
4808
|
-
};
|
|
4809
|
-
publicationDate: string | Date;
|
|
4810
|
-
} | undefined;
|
|
4811
|
-
} | undefined;
|
|
4812
|
-
fromCrawl?: boolean | undefined;
|
|
4813
|
-
}, {
|
|
4814
|
-
path: string;
|
|
4815
|
-
sitemap?: {
|
|
4816
|
-
lastmod?: string | Date | undefined;
|
|
4817
|
-
exclude?: boolean | undefined;
|
|
4818
|
-
priority?: number | undefined;
|
|
4819
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
4820
|
-
alternateRefs?: {
|
|
4821
|
-
href: string;
|
|
4822
|
-
hreflang: string;
|
|
4823
|
-
}[] | undefined;
|
|
4824
|
-
images?: {
|
|
4825
|
-
loc: string;
|
|
4826
|
-
caption?: string | undefined;
|
|
4827
|
-
title?: string | undefined;
|
|
4828
|
-
}[] | undefined;
|
|
4829
|
-
news?: {
|
|
4830
|
-
title: string;
|
|
4831
|
-
publication: {
|
|
4832
|
-
name: string;
|
|
4833
|
-
language: string;
|
|
4834
|
-
};
|
|
4835
|
-
publicationDate: string | Date;
|
|
4836
|
-
} | undefined;
|
|
4837
|
-
} | undefined;
|
|
4838
|
-
fromCrawl?: boolean | undefined;
|
|
4839
|
-
}>;
|
|
4840
|
-
html: z.ZodString;
|
|
4841
|
-
}, "strip", z.ZodTypeAny, {
|
|
4842
|
-
page: {
|
|
4843
|
-
path: string;
|
|
4844
|
-
sitemap?: {
|
|
4845
|
-
lastmod?: string | Date | undefined;
|
|
4846
|
-
exclude?: boolean | undefined;
|
|
4847
|
-
priority?: number | undefined;
|
|
4848
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
4849
|
-
alternateRefs?: {
|
|
4850
|
-
href: string;
|
|
4851
|
-
hreflang: string;
|
|
4852
|
-
}[] | undefined;
|
|
4853
|
-
images?: {
|
|
4854
|
-
loc: string;
|
|
4855
|
-
caption?: string | undefined;
|
|
4856
|
-
title?: string | undefined;
|
|
4857
|
-
}[] | undefined;
|
|
4858
|
-
news?: {
|
|
4859
|
-
title: string;
|
|
4860
|
-
publication: {
|
|
4861
|
-
name: string;
|
|
4862
|
-
language: string;
|
|
4863
|
-
};
|
|
4864
|
-
publicationDate: string | Date;
|
|
4865
|
-
} | undefined;
|
|
4866
|
-
} | undefined;
|
|
4867
|
-
fromCrawl?: boolean | undefined;
|
|
4868
|
-
};
|
|
4869
|
-
html: string;
|
|
4870
|
-
}, {
|
|
4871
|
-
page: {
|
|
4872
|
-
path: string;
|
|
4873
|
-
sitemap?: {
|
|
4874
|
-
lastmod?: string | Date | undefined;
|
|
4875
|
-
exclude?: boolean | undefined;
|
|
4876
|
-
priority?: number | undefined;
|
|
4877
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
4878
|
-
alternateRefs?: {
|
|
4094
|
+
sitemap: z.ZodOptional<z.ZodObject<{
|
|
4095
|
+
exclude: z.ZodOptional<z.ZodBoolean>;
|
|
4096
|
+
priority: z.ZodOptional<z.ZodNumber>;
|
|
4097
|
+
changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
|
|
4098
|
+
lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
|
|
4099
|
+
alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4100
|
+
href: z.ZodString;
|
|
4101
|
+
hreflang: z.ZodString;
|
|
4102
|
+
}, "strip", z.ZodTypeAny, {
|
|
4879
4103
|
href: string;
|
|
4880
4104
|
hreflang: string;
|
|
4881
|
-
}
|
|
4882
|
-
|
|
4105
|
+
}, {
|
|
4106
|
+
href: string;
|
|
4107
|
+
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, {
|
|
4883
4114
|
loc: string;
|
|
4884
4115
|
caption?: string | undefined;
|
|
4885
4116
|
title?: string | undefined;
|
|
4886
|
-
}
|
|
4887
|
-
|
|
4117
|
+
}, {
|
|
4118
|
+
loc: string;
|
|
4119
|
+
caption?: string | undefined;
|
|
4120
|
+
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
|
+
}, {
|
|
4130
|
+
name: string;
|
|
4131
|
+
language: string;
|
|
4132
|
+
}>;
|
|
4133
|
+
publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
4134
|
+
title: z.ZodString;
|
|
4135
|
+
}, "strip", z.ZodTypeAny, {
|
|
4888
4136
|
title: string;
|
|
4889
4137
|
publication: {
|
|
4890
4138
|
name: string;
|
|
4891
4139
|
language: string;
|
|
4892
4140
|
};
|
|
4893
4141
|
publicationDate: string | Date;
|
|
4894
|
-
}
|
|
4895
|
-
} | undefined;
|
|
4896
|
-
fromCrawl?: boolean | undefined;
|
|
4897
|
-
};
|
|
4898
|
-
html: string;
|
|
4899
|
-
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
4900
|
-
}, "strip", z.ZodTypeAny, {
|
|
4901
|
-
enabled?: boolean | undefined;
|
|
4902
|
-
outputPath?: string | undefined;
|
|
4903
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
4904
|
-
crawlLinks?: boolean | undefined;
|
|
4905
|
-
retryCount?: number | undefined;
|
|
4906
|
-
retryDelay?: number | undefined;
|
|
4907
|
-
onSuccess?: ((args_0: {
|
|
4908
|
-
page: {
|
|
4909
|
-
path: string;
|
|
4910
|
-
sitemap?: {
|
|
4911
|
-
lastmod?: string | Date | undefined;
|
|
4912
|
-
exclude?: boolean | undefined;
|
|
4913
|
-
priority?: number | undefined;
|
|
4914
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
4915
|
-
alternateRefs?: {
|
|
4916
|
-
href: string;
|
|
4917
|
-
hreflang: string;
|
|
4918
|
-
}[] | undefined;
|
|
4919
|
-
images?: {
|
|
4920
|
-
loc: string;
|
|
4921
|
-
caption?: string | undefined;
|
|
4922
|
-
title?: string | undefined;
|
|
4923
|
-
}[] | undefined;
|
|
4924
|
-
news?: {
|
|
4142
|
+
}, {
|
|
4925
4143
|
title: string;
|
|
4926
4144
|
publication: {
|
|
4927
4145
|
name: string;
|
|
4928
4146
|
language: string;
|
|
4929
4147
|
};
|
|
4930
4148
|
publicationDate: string | Date;
|
|
4931
|
-
}
|
|
4932
|
-
}
|
|
4933
|
-
fromCrawl?: boolean | undefined;
|
|
4934
|
-
};
|
|
4935
|
-
html: string;
|
|
4936
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
4937
|
-
}, {
|
|
4938
|
-
enabled?: boolean | undefined;
|
|
4939
|
-
outputPath?: string | undefined;
|
|
4940
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
4941
|
-
crawlLinks?: boolean | undefined;
|
|
4942
|
-
retryCount?: number | undefined;
|
|
4943
|
-
retryDelay?: number | undefined;
|
|
4944
|
-
onSuccess?: ((args_0: {
|
|
4945
|
-
page: {
|
|
4946
|
-
path: string;
|
|
4947
|
-
sitemap?: {
|
|
4149
|
+
}>>;
|
|
4150
|
+
}, "strip", z.ZodTypeAny, {
|
|
4948
4151
|
lastmod?: string | Date | undefined;
|
|
4949
4152
|
exclude?: boolean | undefined;
|
|
4950
4153
|
priority?: number | undefined;
|
|
@@ -4966,475 +4169,216 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
4966
4169
|
};
|
|
4967
4170
|
publicationDate: string | Date;
|
|
4968
4171
|
} | undefined;
|
|
4969
|
-
} | undefined;
|
|
4970
|
-
fromCrawl?: boolean | undefined;
|
|
4971
|
-
};
|
|
4972
|
-
html: string;
|
|
4973
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
4974
|
-
}>>>>;
|
|
4975
|
-
shell: z.ZodOptional<z.ZodObject<{
|
|
4976
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
4977
|
-
maskPath: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
4978
|
-
autoRedirect: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
4979
|
-
prerender: z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
4980
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
4981
|
-
outputPath: z.ZodOptional<z.ZodString>;
|
|
4982
|
-
autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
|
|
4983
|
-
crawlLinks: z.ZodOptional<z.ZodBoolean>;
|
|
4984
|
-
retryCount: z.ZodOptional<z.ZodNumber>;
|
|
4985
|
-
retryDelay: z.ZodOptional<z.ZodNumber>;
|
|
4986
|
-
onSuccess: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
4987
|
-
page: z.ZodObject<{
|
|
4988
|
-
path: z.ZodString;
|
|
4989
|
-
sitemap: z.ZodOptional<z.ZodObject<{
|
|
4990
|
-
exclude: z.ZodOptional<z.ZodBoolean>;
|
|
4991
|
-
priority: z.ZodOptional<z.ZodNumber>;
|
|
4992
|
-
changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
|
|
4993
|
-
lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
|
|
4994
|
-
alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4995
|
-
href: z.ZodString;
|
|
4996
|
-
hreflang: z.ZodString;
|
|
4997
|
-
}, "strip", z.ZodTypeAny, {
|
|
4998
|
-
href: string;
|
|
4999
|
-
hreflang: string;
|
|
5000
|
-
}, {
|
|
5001
|
-
href: string;
|
|
5002
|
-
hreflang: string;
|
|
5003
|
-
}>, "many">>;
|
|
5004
|
-
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5005
|
-
loc: z.ZodString;
|
|
5006
|
-
caption: z.ZodOptional<z.ZodString>;
|
|
5007
|
-
title: z.ZodOptional<z.ZodString>;
|
|
5008
|
-
}, "strip", z.ZodTypeAny, {
|
|
5009
|
-
loc: string;
|
|
5010
|
-
caption?: string | undefined;
|
|
5011
|
-
title?: string | undefined;
|
|
5012
|
-
}, {
|
|
5013
|
-
loc: string;
|
|
5014
|
-
caption?: string | undefined;
|
|
5015
|
-
title?: string | undefined;
|
|
5016
|
-
}>, "many">>;
|
|
5017
|
-
news: z.ZodOptional<z.ZodObject<{
|
|
5018
|
-
publication: z.ZodObject<{
|
|
5019
|
-
name: z.ZodString;
|
|
5020
|
-
language: z.ZodString;
|
|
5021
|
-
}, "strip", z.ZodTypeAny, {
|
|
5022
|
-
name: string;
|
|
5023
|
-
language: string;
|
|
5024
|
-
}, {
|
|
5025
|
-
name: string;
|
|
5026
|
-
language: string;
|
|
5027
|
-
}>;
|
|
5028
|
-
publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
5029
|
-
title: z.ZodString;
|
|
5030
|
-
}, "strip", z.ZodTypeAny, {
|
|
5031
|
-
title: string;
|
|
5032
|
-
publication: {
|
|
5033
|
-
name: string;
|
|
5034
|
-
language: string;
|
|
5035
|
-
};
|
|
5036
|
-
publicationDate: string | Date;
|
|
5037
|
-
}, {
|
|
5038
|
-
title: string;
|
|
5039
|
-
publication: {
|
|
5040
|
-
name: string;
|
|
5041
|
-
language: string;
|
|
5042
|
-
};
|
|
5043
|
-
publicationDate: string | Date;
|
|
5044
|
-
}>>;
|
|
5045
|
-
}, "strip", z.ZodTypeAny, {
|
|
5046
|
-
lastmod?: string | Date | undefined;
|
|
5047
|
-
exclude?: boolean | undefined;
|
|
5048
|
-
priority?: number | undefined;
|
|
5049
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
5050
|
-
alternateRefs?: {
|
|
5051
|
-
href: string;
|
|
5052
|
-
hreflang: string;
|
|
5053
|
-
}[] | undefined;
|
|
5054
|
-
images?: {
|
|
5055
|
-
loc: string;
|
|
5056
|
-
caption?: string | undefined;
|
|
5057
|
-
title?: string | undefined;
|
|
5058
|
-
}[] | undefined;
|
|
5059
|
-
news?: {
|
|
5060
|
-
title: string;
|
|
5061
|
-
publication: {
|
|
5062
|
-
name: string;
|
|
5063
|
-
language: string;
|
|
5064
|
-
};
|
|
5065
|
-
publicationDate: string | Date;
|
|
5066
|
-
} | undefined;
|
|
5067
|
-
}, {
|
|
5068
|
-
lastmod?: string | Date | undefined;
|
|
5069
|
-
exclude?: boolean | undefined;
|
|
5070
|
-
priority?: number | undefined;
|
|
5071
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
5072
|
-
alternateRefs?: {
|
|
5073
|
-
href: string;
|
|
5074
|
-
hreflang: string;
|
|
5075
|
-
}[] | undefined;
|
|
5076
|
-
images?: {
|
|
5077
|
-
loc: string;
|
|
5078
|
-
caption?: string | undefined;
|
|
5079
|
-
title?: string | undefined;
|
|
5080
|
-
}[] | undefined;
|
|
5081
|
-
news?: {
|
|
5082
|
-
title: string;
|
|
5083
|
-
publication: {
|
|
5084
|
-
name: string;
|
|
5085
|
-
language: string;
|
|
5086
|
-
};
|
|
5087
|
-
publicationDate: string | Date;
|
|
5088
|
-
} | undefined;
|
|
5089
|
-
}>>;
|
|
5090
|
-
fromCrawl: z.ZodOptional<z.ZodBoolean>;
|
|
5091
|
-
}, "strip", z.ZodTypeAny, {
|
|
5092
|
-
path: string;
|
|
5093
|
-
sitemap?: {
|
|
5094
|
-
lastmod?: string | Date | undefined;
|
|
5095
|
-
exclude?: boolean | undefined;
|
|
5096
|
-
priority?: number | undefined;
|
|
5097
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
5098
|
-
alternateRefs?: {
|
|
5099
|
-
href: string;
|
|
5100
|
-
hreflang: string;
|
|
5101
|
-
}[] | undefined;
|
|
5102
|
-
images?: {
|
|
5103
|
-
loc: string;
|
|
5104
|
-
caption?: string | undefined;
|
|
5105
|
-
title?: string | undefined;
|
|
5106
|
-
}[] | undefined;
|
|
5107
|
-
news?: {
|
|
5108
|
-
title: string;
|
|
5109
|
-
publication: {
|
|
5110
|
-
name: string;
|
|
5111
|
-
language: string;
|
|
5112
|
-
};
|
|
5113
|
-
publicationDate: string | Date;
|
|
5114
|
-
} | undefined;
|
|
5115
|
-
} | undefined;
|
|
5116
|
-
fromCrawl?: boolean | undefined;
|
|
5117
4172
|
}, {
|
|
5118
|
-
|
|
5119
|
-
|
|
5120
|
-
|
|
5121
|
-
|
|
5122
|
-
|
|
5123
|
-
|
|
5124
|
-
|
|
5125
|
-
|
|
5126
|
-
|
|
5127
|
-
|
|
5128
|
-
|
|
5129
|
-
|
|
5130
|
-
|
|
5131
|
-
|
|
5132
|
-
|
|
5133
|
-
|
|
5134
|
-
|
|
5135
|
-
|
|
5136
|
-
|
|
5137
|
-
|
|
5138
|
-
};
|
|
5139
|
-
publicationDate: string | Date;
|
|
5140
|
-
} | undefined;
|
|
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;
|
|
5141
4193
|
} | undefined;
|
|
5142
|
-
|
|
5143
|
-
|
|
5144
|
-
html: z.ZodString;
|
|
4194
|
+
}>>;
|
|
4195
|
+
fromCrawl: z.ZodOptional<z.ZodBoolean>;
|
|
5145
4196
|
}, "strip", z.ZodTypeAny, {
|
|
5146
|
-
|
|
5147
|
-
|
|
5148
|
-
|
|
5149
|
-
|
|
5150
|
-
|
|
5151
|
-
|
|
5152
|
-
|
|
5153
|
-
|
|
5154
|
-
|
|
5155
|
-
|
|
5156
|
-
|
|
5157
|
-
|
|
5158
|
-
|
|
5159
|
-
|
|
5160
|
-
|
|
5161
|
-
|
|
5162
|
-
|
|
5163
|
-
|
|
5164
|
-
|
|
5165
|
-
|
|
5166
|
-
|
|
5167
|
-
|
|
5168
|
-
publicationDate: string | Date;
|
|
5169
|
-
} | undefined;
|
|
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;
|
|
5170
4219
|
} | undefined;
|
|
5171
|
-
|
|
5172
|
-
|
|
5173
|
-
html: string;
|
|
4220
|
+
} | undefined;
|
|
4221
|
+
fromCrawl?: boolean | undefined;
|
|
5174
4222
|
}, {
|
|
5175
|
-
|
|
5176
|
-
|
|
5177
|
-
|
|
5178
|
-
|
|
5179
|
-
|
|
5180
|
-
|
|
5181
|
-
|
|
5182
|
-
|
|
5183
|
-
|
|
5184
|
-
|
|
5185
|
-
|
|
5186
|
-
|
|
5187
|
-
|
|
5188
|
-
|
|
5189
|
-
|
|
5190
|
-
|
|
5191
|
-
|
|
5192
|
-
|
|
5193
|
-
|
|
5194
|
-
|
|
5195
|
-
|
|
5196
|
-
|
|
5197
|
-
publicationDate: string | Date;
|
|
5198
|
-
} | undefined;
|
|
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;
|
|
5199
4245
|
} | undefined;
|
|
5200
|
-
|
|
5201
|
-
|
|
5202
|
-
|
|
5203
|
-
|
|
4246
|
+
} | undefined;
|
|
4247
|
+
fromCrawl?: boolean | undefined;
|
|
4248
|
+
}>;
|
|
4249
|
+
html: z.ZodString;
|
|
5204
4250
|
}, "strip", z.ZodTypeAny, {
|
|
5205
|
-
|
|
5206
|
-
|
|
5207
|
-
|
|
5208
|
-
|
|
5209
|
-
|
|
5210
|
-
|
|
5211
|
-
|
|
5212
|
-
|
|
5213
|
-
|
|
5214
|
-
|
|
5215
|
-
|
|
5216
|
-
|
|
5217
|
-
|
|
5218
|
-
|
|
5219
|
-
|
|
5220
|
-
|
|
5221
|
-
|
|
5222
|
-
|
|
5223
|
-
|
|
5224
|
-
|
|
5225
|
-
|
|
5226
|
-
|
|
5227
|
-
|
|
5228
|
-
news?: {
|
|
5229
|
-
title: string;
|
|
5230
|
-
publication: {
|
|
5231
|
-
name: string;
|
|
5232
|
-
language: string;
|
|
5233
|
-
};
|
|
5234
|
-
publicationDate: string | Date;
|
|
5235
|
-
} | undefined;
|
|
5236
|
-
} | undefined;
|
|
5237
|
-
fromCrawl?: boolean | undefined;
|
|
5238
|
-
};
|
|
5239
|
-
html: string;
|
|
5240
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
5241
|
-
}, {
|
|
5242
|
-
enabled?: boolean | undefined;
|
|
5243
|
-
outputPath?: string | undefined;
|
|
5244
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
5245
|
-
crawlLinks?: boolean | undefined;
|
|
5246
|
-
retryCount?: number | undefined;
|
|
5247
|
-
retryDelay?: number | undefined;
|
|
5248
|
-
onSuccess?: ((args_0: {
|
|
5249
|
-
page: {
|
|
5250
|
-
path: string;
|
|
5251
|
-
sitemap?: {
|
|
5252
|
-
lastmod?: string | Date | undefined;
|
|
5253
|
-
exclude?: boolean | undefined;
|
|
5254
|
-
priority?: number | undefined;
|
|
5255
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
5256
|
-
alternateRefs?: {
|
|
5257
|
-
href: string;
|
|
5258
|
-
hreflang: string;
|
|
5259
|
-
}[] | undefined;
|
|
5260
|
-
images?: {
|
|
5261
|
-
loc: string;
|
|
5262
|
-
caption?: string | undefined;
|
|
5263
|
-
title?: string | undefined;
|
|
5264
|
-
}[] | undefined;
|
|
5265
|
-
news?: {
|
|
5266
|
-
title: string;
|
|
5267
|
-
publication: {
|
|
5268
|
-
name: string;
|
|
5269
|
-
language: string;
|
|
5270
|
-
};
|
|
5271
|
-
publicationDate: string | Date;
|
|
5272
|
-
} | undefined;
|
|
5273
|
-
} | undefined;
|
|
5274
|
-
fromCrawl?: boolean | undefined;
|
|
5275
|
-
};
|
|
5276
|
-
html: string;
|
|
5277
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
5278
|
-
}>>>, {
|
|
5279
|
-
enabled: boolean;
|
|
5280
|
-
outputPath: string;
|
|
5281
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
5282
|
-
crawlLinks: boolean;
|
|
5283
|
-
retryCount: number;
|
|
5284
|
-
retryDelay?: number | undefined;
|
|
5285
|
-
onSuccess?: ((args_0: {
|
|
5286
|
-
page: {
|
|
5287
|
-
path: string;
|
|
5288
|
-
sitemap?: {
|
|
5289
|
-
lastmod?: string | Date | undefined;
|
|
5290
|
-
exclude?: boolean | undefined;
|
|
5291
|
-
priority?: number | undefined;
|
|
5292
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
5293
|
-
alternateRefs?: {
|
|
5294
|
-
href: string;
|
|
5295
|
-
hreflang: string;
|
|
5296
|
-
}[] | undefined;
|
|
5297
|
-
images?: {
|
|
5298
|
-
loc: string;
|
|
5299
|
-
caption?: string | undefined;
|
|
5300
|
-
title?: string | undefined;
|
|
5301
|
-
}[] | undefined;
|
|
5302
|
-
news?: {
|
|
5303
|
-
title: string;
|
|
5304
|
-
publication: {
|
|
5305
|
-
name: string;
|
|
5306
|
-
language: string;
|
|
5307
|
-
};
|
|
5308
|
-
publicationDate: string | Date;
|
|
5309
|
-
} | undefined;
|
|
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;
|
|
5310
4274
|
} | undefined;
|
|
5311
|
-
|
|
5312
|
-
|
|
5313
|
-
|
|
5314
|
-
|
|
4275
|
+
} | undefined;
|
|
4276
|
+
fromCrawl?: boolean | undefined;
|
|
4277
|
+
};
|
|
4278
|
+
html: string;
|
|
5315
4279
|
}, {
|
|
5316
|
-
|
|
5317
|
-
|
|
5318
|
-
|
|
5319
|
-
|
|
5320
|
-
|
|
5321
|
-
|
|
5322
|
-
|
|
5323
|
-
|
|
5324
|
-
|
|
5325
|
-
|
|
5326
|
-
|
|
5327
|
-
|
|
5328
|
-
|
|
5329
|
-
|
|
5330
|
-
|
|
5331
|
-
|
|
5332
|
-
|
|
5333
|
-
|
|
5334
|
-
|
|
5335
|
-
|
|
5336
|
-
|
|
5337
|
-
|
|
5338
|
-
|
|
5339
|
-
news?: {
|
|
5340
|
-
title: string;
|
|
5341
|
-
publication: {
|
|
5342
|
-
name: string;
|
|
5343
|
-
language: string;
|
|
5344
|
-
};
|
|
5345
|
-
publicationDate: string | Date;
|
|
5346
|
-
} | undefined;
|
|
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;
|
|
5347
4303
|
} | undefined;
|
|
5348
|
-
|
|
5349
|
-
|
|
5350
|
-
|
|
5351
|
-
|
|
5352
|
-
}
|
|
4304
|
+
} | undefined;
|
|
4305
|
+
fromCrawl?: boolean | undefined;
|
|
4306
|
+
};
|
|
4307
|
+
html: string;
|
|
4308
|
+
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
5353
4309
|
}, "strip", z.ZodTypeAny, {
|
|
5354
|
-
|
|
5355
|
-
|
|
5356
|
-
|
|
5357
|
-
|
|
5358
|
-
|
|
5359
|
-
|
|
5360
|
-
|
|
5361
|
-
|
|
5362
|
-
|
|
5363
|
-
|
|
5364
|
-
|
|
5365
|
-
|
|
5366
|
-
|
|
5367
|
-
|
|
5368
|
-
|
|
5369
|
-
|
|
5370
|
-
|
|
5371
|
-
|
|
5372
|
-
|
|
5373
|
-
|
|
5374
|
-
|
|
5375
|
-
|
|
5376
|
-
|
|
5377
|
-
|
|
5378
|
-
|
|
5379
|
-
|
|
5380
|
-
|
|
5381
|
-
|
|
5382
|
-
|
|
5383
|
-
};
|
|
5384
|
-
publicationDate: string | Date;
|
|
5385
|
-
} | undefined;
|
|
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;
|
|
5386
4339
|
} | undefined;
|
|
5387
|
-
|
|
5388
|
-
|
|
5389
|
-
|
|
5390
|
-
|
|
5391
|
-
};
|
|
5392
|
-
enabled: boolean;
|
|
5393
|
-
maskPath: string;
|
|
5394
|
-
autoRedirect: boolean;
|
|
4340
|
+
} | undefined;
|
|
4341
|
+
fromCrawl?: boolean | undefined;
|
|
4342
|
+
};
|
|
4343
|
+
html: string;
|
|
4344
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
5395
4345
|
}, {
|
|
5396
|
-
prerender?: {
|
|
5397
|
-
enabled?: boolean | undefined;
|
|
5398
|
-
outputPath?: string | undefined;
|
|
5399
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
5400
|
-
crawlLinks?: boolean | undefined;
|
|
5401
|
-
retryCount?: number | undefined;
|
|
5402
|
-
retryDelay?: number | undefined;
|
|
5403
|
-
onSuccess?: ((args_0: {
|
|
5404
|
-
page: {
|
|
5405
|
-
path: string;
|
|
5406
|
-
sitemap?: {
|
|
5407
|
-
lastmod?: string | Date | undefined;
|
|
5408
|
-
exclude?: boolean | undefined;
|
|
5409
|
-
priority?: number | undefined;
|
|
5410
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
5411
|
-
alternateRefs?: {
|
|
5412
|
-
href: string;
|
|
5413
|
-
hreflang: string;
|
|
5414
|
-
}[] | undefined;
|
|
5415
|
-
images?: {
|
|
5416
|
-
loc: string;
|
|
5417
|
-
caption?: string | undefined;
|
|
5418
|
-
title?: string | undefined;
|
|
5419
|
-
}[] | undefined;
|
|
5420
|
-
news?: {
|
|
5421
|
-
title: string;
|
|
5422
|
-
publication: {
|
|
5423
|
-
name: string;
|
|
5424
|
-
language: string;
|
|
5425
|
-
};
|
|
5426
|
-
publicationDate: string | Date;
|
|
5427
|
-
} | undefined;
|
|
5428
|
-
} | undefined;
|
|
5429
|
-
fromCrawl?: boolean | undefined;
|
|
5430
|
-
};
|
|
5431
|
-
html: string;
|
|
5432
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
5433
|
-
} | undefined;
|
|
5434
4346
|
enabled?: boolean | undefined;
|
|
5435
|
-
|
|
5436
|
-
|
|
5437
|
-
|
|
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;
|
|
4375
|
+
} | undefined;
|
|
4376
|
+
} | undefined;
|
|
4377
|
+
fromCrawl?: boolean | undefined;
|
|
4378
|
+
};
|
|
4379
|
+
html: string;
|
|
4380
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
4381
|
+
}>>>>;
|
|
5438
4382
|
root: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5439
4383
|
target: z.ZodOptional<z.ZodType<import('nitropack/presets').PresetNameInput | undefined, z.ZodTypeDef, import('nitropack/presets').PresetNameInput | undefined>>;
|
|
5440
4384
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5488,7 +4432,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5488
4432
|
path: string;
|
|
5489
4433
|
prerender?: {
|
|
5490
4434
|
enabled?: boolean | undefined;
|
|
5491
|
-
outputPath?: string | undefined;
|
|
5492
4435
|
autoSubfolderIndex?: boolean | undefined;
|
|
5493
4436
|
crawlLinks?: boolean | undefined;
|
|
5494
4437
|
retryCount?: number | undefined;
|
|
@@ -5555,7 +4498,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5555
4498
|
path: string;
|
|
5556
4499
|
prerender?: {
|
|
5557
4500
|
enabled?: boolean | undefined;
|
|
5558
|
-
outputPath?: string | undefined;
|
|
5559
4501
|
autoSubfolderIndex?: boolean | undefined;
|
|
5560
4502
|
crawlLinks?: boolean | undefined;
|
|
5561
4503
|
retryCount?: number | undefined;
|
|
@@ -5621,7 +4563,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5621
4563
|
failOnError?: boolean | undefined;
|
|
5622
4564
|
} & {
|
|
5623
4565
|
enabled?: boolean | undefined;
|
|
5624
|
-
outputPath?: string | undefined;
|
|
5625
4566
|
autoSubfolderIndex?: boolean | undefined;
|
|
5626
4567
|
crawlLinks?: boolean | undefined;
|
|
5627
4568
|
retryCount?: number | undefined;
|
|
@@ -5660,7 +4601,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5660
4601
|
sitemap?: {
|
|
5661
4602
|
host?: string | undefined;
|
|
5662
4603
|
enabled?: boolean | undefined;
|
|
5663
|
-
outputPath?: string | undefined;
|
|
5664
4604
|
autoSubfolderIndex?: boolean | undefined;
|
|
5665
4605
|
crawlLinks?: boolean | undefined;
|
|
5666
4606
|
retryCount?: number | undefined;
|
|
@@ -5670,74 +4610,31 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5670
4610
|
path: string;
|
|
5671
4611
|
sitemap?: {
|
|
5672
4612
|
lastmod?: string | Date | undefined;
|
|
5673
|
-
exclude?: boolean | undefined;
|
|
5674
|
-
priority?: number | undefined;
|
|
5675
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
5676
|
-
alternateRefs?: {
|
|
5677
|
-
href: string;
|
|
5678
|
-
hreflang: string;
|
|
5679
|
-
}[] | undefined;
|
|
5680
|
-
images?: {
|
|
5681
|
-
loc: string;
|
|
5682
|
-
caption?: string | undefined;
|
|
5683
|
-
title?: string | undefined;
|
|
5684
|
-
}[] | undefined;
|
|
5685
|
-
news?: {
|
|
5686
|
-
title: string;
|
|
5687
|
-
publication: {
|
|
5688
|
-
name: string;
|
|
5689
|
-
language: string;
|
|
5690
|
-
};
|
|
5691
|
-
publicationDate: string | Date;
|
|
5692
|
-
} | undefined;
|
|
5693
|
-
} | undefined;
|
|
5694
|
-
fromCrawl?: boolean | undefined;
|
|
5695
|
-
};
|
|
5696
|
-
html: string;
|
|
5697
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
5698
|
-
} | undefined;
|
|
5699
|
-
shell?: {
|
|
5700
|
-
prerender: {
|
|
5701
|
-
enabled: boolean;
|
|
5702
|
-
outputPath: string;
|
|
5703
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
5704
|
-
crawlLinks: boolean;
|
|
5705
|
-
retryCount: number;
|
|
5706
|
-
retryDelay?: number | undefined;
|
|
5707
|
-
onSuccess?: ((args_0: {
|
|
5708
|
-
page: {
|
|
5709
|
-
path: string;
|
|
5710
|
-
sitemap?: {
|
|
5711
|
-
lastmod?: string | Date | undefined;
|
|
5712
|
-
exclude?: boolean | undefined;
|
|
5713
|
-
priority?: number | undefined;
|
|
5714
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
5715
|
-
alternateRefs?: {
|
|
5716
|
-
href: string;
|
|
5717
|
-
hreflang: string;
|
|
5718
|
-
}[] | undefined;
|
|
5719
|
-
images?: {
|
|
5720
|
-
loc: string;
|
|
5721
|
-
caption?: string | undefined;
|
|
5722
|
-
title?: string | undefined;
|
|
5723
|
-
}[] | undefined;
|
|
5724
|
-
news?: {
|
|
5725
|
-
title: string;
|
|
5726
|
-
publication: {
|
|
5727
|
-
name: string;
|
|
5728
|
-
language: string;
|
|
5729
|
-
};
|
|
5730
|
-
publicationDate: string | Date;
|
|
5731
|
-
} | undefined;
|
|
4613
|
+
exclude?: boolean | undefined;
|
|
4614
|
+
priority?: number | undefined;
|
|
4615
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
4616
|
+
alternateRefs?: {
|
|
4617
|
+
href: string;
|
|
4618
|
+
hreflang: string;
|
|
4619
|
+
}[] | undefined;
|
|
4620
|
+
images?: {
|
|
4621
|
+
loc: string;
|
|
4622
|
+
caption?: string | undefined;
|
|
4623
|
+
title?: string | undefined;
|
|
4624
|
+
}[] | undefined;
|
|
4625
|
+
news?: {
|
|
4626
|
+
title: string;
|
|
4627
|
+
publication: {
|
|
4628
|
+
name: string;
|
|
4629
|
+
language: string;
|
|
4630
|
+
};
|
|
4631
|
+
publicationDate: string | Date;
|
|
5732
4632
|
} | undefined;
|
|
5733
|
-
|
|
5734
|
-
|
|
5735
|
-
|
|
5736
|
-
|
|
5737
|
-
};
|
|
5738
|
-
enabled: boolean;
|
|
5739
|
-
maskPath: string;
|
|
5740
|
-
autoRedirect: boolean;
|
|
4633
|
+
} | undefined;
|
|
4634
|
+
fromCrawl?: boolean | undefined;
|
|
4635
|
+
};
|
|
4636
|
+
html: string;
|
|
4637
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
5741
4638
|
} | undefined;
|
|
5742
4639
|
}, {
|
|
5743
4640
|
client?: {
|
|
@@ -5754,7 +4651,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5754
4651
|
path: string;
|
|
5755
4652
|
prerender?: {
|
|
5756
4653
|
enabled?: boolean | undefined;
|
|
5757
|
-
outputPath?: string | undefined;
|
|
5758
4654
|
autoSubfolderIndex?: boolean | undefined;
|
|
5759
4655
|
crawlLinks?: boolean | undefined;
|
|
5760
4656
|
retryCount?: number | undefined;
|
|
@@ -5820,7 +4716,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5820
4716
|
failOnError?: boolean | undefined;
|
|
5821
4717
|
} & {
|
|
5822
4718
|
enabled?: boolean | undefined;
|
|
5823
|
-
outputPath?: string | undefined;
|
|
5824
4719
|
autoSubfolderIndex?: boolean | undefined;
|
|
5825
4720
|
crawlLinks?: boolean | undefined;
|
|
5826
4721
|
retryCount?: number | undefined;
|
|
@@ -5897,7 +4792,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5897
4792
|
sitemap?: {
|
|
5898
4793
|
host?: string | undefined;
|
|
5899
4794
|
enabled?: boolean | undefined;
|
|
5900
|
-
outputPath?: string | undefined;
|
|
5901
4795
|
autoSubfolderIndex?: boolean | undefined;
|
|
5902
4796
|
crawlLinks?: boolean | undefined;
|
|
5903
4797
|
retryCount?: number | undefined;
|
|
@@ -5937,7 +4831,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5937
4831
|
path: string;
|
|
5938
4832
|
prerender?: {
|
|
5939
4833
|
enabled?: boolean | undefined;
|
|
5940
|
-
outputPath?: string | undefined;
|
|
5941
4834
|
autoSubfolderIndex?: boolean | undefined;
|
|
5942
4835
|
crawlLinks?: boolean | undefined;
|
|
5943
4836
|
retryCount?: number | undefined;
|
|
@@ -5998,49 +4891,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
5998
4891
|
} | undefined;
|
|
5999
4892
|
fromCrawl?: boolean | undefined;
|
|
6000
4893
|
})[] | undefined;
|
|
6001
|
-
shell?: {
|
|
6002
|
-
prerender?: {
|
|
6003
|
-
enabled?: boolean | undefined;
|
|
6004
|
-
outputPath?: string | undefined;
|
|
6005
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
6006
|
-
crawlLinks?: boolean | undefined;
|
|
6007
|
-
retryCount?: number | undefined;
|
|
6008
|
-
retryDelay?: number | undefined;
|
|
6009
|
-
onSuccess?: ((args_0: {
|
|
6010
|
-
page: {
|
|
6011
|
-
path: string;
|
|
6012
|
-
sitemap?: {
|
|
6013
|
-
lastmod?: string | Date | undefined;
|
|
6014
|
-
exclude?: boolean | undefined;
|
|
6015
|
-
priority?: number | undefined;
|
|
6016
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
6017
|
-
alternateRefs?: {
|
|
6018
|
-
href: string;
|
|
6019
|
-
hreflang: string;
|
|
6020
|
-
}[] | undefined;
|
|
6021
|
-
images?: {
|
|
6022
|
-
loc: string;
|
|
6023
|
-
caption?: string | undefined;
|
|
6024
|
-
title?: string | undefined;
|
|
6025
|
-
}[] | undefined;
|
|
6026
|
-
news?: {
|
|
6027
|
-
title: string;
|
|
6028
|
-
publication: {
|
|
6029
|
-
name: string;
|
|
6030
|
-
language: string;
|
|
6031
|
-
};
|
|
6032
|
-
publicationDate: string | Date;
|
|
6033
|
-
} | undefined;
|
|
6034
|
-
} | undefined;
|
|
6035
|
-
fromCrawl?: boolean | undefined;
|
|
6036
|
-
};
|
|
6037
|
-
html: string;
|
|
6038
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
6039
|
-
} | undefined;
|
|
6040
|
-
enabled?: boolean | undefined;
|
|
6041
|
-
maskPath?: string | undefined;
|
|
6042
|
-
autoRedirect?: boolean | undefined;
|
|
6043
|
-
} | undefined;
|
|
6044
4894
|
}>>>>) => {
|
|
6045
4895
|
tsr: {
|
|
6046
4896
|
target: "react" | "solid";
|
|
@@ -6094,7 +4944,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
6094
4944
|
path: string;
|
|
6095
4945
|
prerender?: {
|
|
6096
4946
|
enabled?: boolean | undefined;
|
|
6097
|
-
outputPath?: string | undefined;
|
|
6098
4947
|
autoSubfolderIndex?: boolean | undefined;
|
|
6099
4948
|
crawlLinks?: boolean | undefined;
|
|
6100
4949
|
retryCount?: number | undefined;
|
|
@@ -6161,7 +5010,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
6161
5010
|
path: string;
|
|
6162
5011
|
prerender?: {
|
|
6163
5012
|
enabled?: boolean | undefined;
|
|
6164
|
-
outputPath?: string | undefined;
|
|
6165
5013
|
autoSubfolderIndex?: boolean | undefined;
|
|
6166
5014
|
crawlLinks?: boolean | undefined;
|
|
6167
5015
|
retryCount?: number | undefined;
|
|
@@ -6227,7 +5075,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
6227
5075
|
failOnError?: boolean | undefined;
|
|
6228
5076
|
} & {
|
|
6229
5077
|
enabled?: boolean | undefined;
|
|
6230
|
-
outputPath?: string | undefined;
|
|
6231
5078
|
autoSubfolderIndex?: boolean | undefined;
|
|
6232
5079
|
crawlLinks?: boolean | undefined;
|
|
6233
5080
|
retryCount?: number | undefined;
|
|
@@ -6266,7 +5113,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
6266
5113
|
sitemap?: {
|
|
6267
5114
|
host?: string | undefined;
|
|
6268
5115
|
enabled?: boolean | undefined;
|
|
6269
|
-
outputPath?: string | undefined;
|
|
6270
5116
|
autoSubfolderIndex?: boolean | undefined;
|
|
6271
5117
|
crawlLinks?: boolean | undefined;
|
|
6272
5118
|
retryCount?: number | undefined;
|
|
@@ -6302,49 +5148,6 @@ export declare function createTanStackConfig<TFrameworkPlugin extends Record<str
|
|
|
6302
5148
|
html: string;
|
|
6303
5149
|
}, ...args: unknown[]) => any) | undefined;
|
|
6304
5150
|
} | undefined;
|
|
6305
|
-
shell?: {
|
|
6306
|
-
prerender: {
|
|
6307
|
-
enabled: boolean;
|
|
6308
|
-
outputPath: string;
|
|
6309
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
6310
|
-
crawlLinks: boolean;
|
|
6311
|
-
retryCount: number;
|
|
6312
|
-
retryDelay?: number | undefined;
|
|
6313
|
-
onSuccess?: ((args_0: {
|
|
6314
|
-
page: {
|
|
6315
|
-
path: string;
|
|
6316
|
-
sitemap?: {
|
|
6317
|
-
lastmod?: string | Date | undefined;
|
|
6318
|
-
exclude?: boolean | undefined;
|
|
6319
|
-
priority?: number | undefined;
|
|
6320
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
6321
|
-
alternateRefs?: {
|
|
6322
|
-
href: string;
|
|
6323
|
-
hreflang: string;
|
|
6324
|
-
}[] | undefined;
|
|
6325
|
-
images?: {
|
|
6326
|
-
loc: string;
|
|
6327
|
-
caption?: string | undefined;
|
|
6328
|
-
title?: string | undefined;
|
|
6329
|
-
}[] | undefined;
|
|
6330
|
-
news?: {
|
|
6331
|
-
title: string;
|
|
6332
|
-
publication: {
|
|
6333
|
-
name: string;
|
|
6334
|
-
language: string;
|
|
6335
|
-
};
|
|
6336
|
-
publicationDate: string | Date;
|
|
6337
|
-
} | undefined;
|
|
6338
|
-
} | undefined;
|
|
6339
|
-
fromCrawl?: boolean | undefined;
|
|
6340
|
-
};
|
|
6341
|
-
html: string;
|
|
6342
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
6343
|
-
};
|
|
6344
|
-
enabled: boolean;
|
|
6345
|
-
maskPath: string;
|
|
6346
|
-
autoRedirect: boolean;
|
|
6347
|
-
} | undefined;
|
|
6348
5151
|
};
|
|
6349
5152
|
};
|
|
6350
5153
|
export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Record<string, unknown>): z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
@@ -6591,7 +5394,6 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
6591
5394
|
}, {
|
|
6592
5395
|
prerender: z.ZodOptional<z.ZodObject<{
|
|
6593
5396
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
6594
|
-
outputPath: z.ZodOptional<z.ZodString>;
|
|
6595
5397
|
autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
|
|
6596
5398
|
crawlLinks: z.ZodOptional<z.ZodBoolean>;
|
|
6597
5399
|
retryCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6816,7 +5618,6 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
6816
5618
|
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
6817
5619
|
}, "strip", z.ZodTypeAny, {
|
|
6818
5620
|
enabled?: boolean | undefined;
|
|
6819
|
-
outputPath?: string | undefined;
|
|
6820
5621
|
autoSubfolderIndex?: boolean | undefined;
|
|
6821
5622
|
crawlLinks?: boolean | undefined;
|
|
6822
5623
|
retryCount?: number | undefined;
|
|
@@ -6853,7 +5654,6 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
6853
5654
|
}, ...args: unknown[]) => any) | undefined;
|
|
6854
5655
|
}, {
|
|
6855
5656
|
enabled?: boolean | undefined;
|
|
6856
|
-
outputPath?: string | undefined;
|
|
6857
5657
|
autoSubfolderIndex?: boolean | undefined;
|
|
6858
5658
|
crawlLinks?: boolean | undefined;
|
|
6859
5659
|
retryCount?: number | undefined;
|
|
@@ -6893,7 +5693,6 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
6893
5693
|
path: string;
|
|
6894
5694
|
prerender?: {
|
|
6895
5695
|
enabled?: boolean | undefined;
|
|
6896
|
-
outputPath?: string | undefined;
|
|
6897
5696
|
autoSubfolderIndex?: boolean | undefined;
|
|
6898
5697
|
crawlLinks?: boolean | undefined;
|
|
6899
5698
|
retryCount?: number | undefined;
|
|
@@ -6957,7 +5756,6 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
6957
5756
|
path: string;
|
|
6958
5757
|
prerender?: {
|
|
6959
5758
|
enabled?: boolean | undefined;
|
|
6960
|
-
outputPath?: string | undefined;
|
|
6961
5759
|
autoSubfolderIndex?: boolean | undefined;
|
|
6962
5760
|
crawlLinks?: boolean | undefined;
|
|
6963
5761
|
retryCount?: number | undefined;
|
|
@@ -7020,7 +5818,6 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7020
5818
|
}>]>, "many">>>;
|
|
7021
5819
|
sitemap: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
7022
5820
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
7023
|
-
outputPath: z.ZodOptional<z.ZodString>;
|
|
7024
5821
|
autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
|
|
7025
5822
|
crawlLinks: z.ZodOptional<z.ZodBoolean>;
|
|
7026
5823
|
retryCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7248,7 +6045,6 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7248
6045
|
}>, "strip", z.ZodTypeAny, {
|
|
7249
6046
|
host?: string | undefined;
|
|
7250
6047
|
enabled?: boolean | undefined;
|
|
7251
|
-
outputPath?: string | undefined;
|
|
7252
6048
|
autoSubfolderIndex?: boolean | undefined;
|
|
7253
6049
|
crawlLinks?: boolean | undefined;
|
|
7254
6050
|
retryCount?: number | undefined;
|
|
@@ -7286,7 +6082,6 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7286
6082
|
}, {
|
|
7287
6083
|
host?: string | undefined;
|
|
7288
6084
|
enabled?: boolean | undefined;
|
|
7289
|
-
outputPath?: string | undefined;
|
|
7290
6085
|
autoSubfolderIndex?: boolean | undefined;
|
|
7291
6086
|
crawlLinks?: boolean | undefined;
|
|
7292
6087
|
retryCount?: number | undefined;
|
|
@@ -7432,7 +6227,6 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7432
6227
|
}, {
|
|
7433
6228
|
prerender: z.ZodOptional<z.ZodObject<{
|
|
7434
6229
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
7435
|
-
outputPath: z.ZodOptional<z.ZodString>;
|
|
7436
6230
|
autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
|
|
7437
6231
|
crawlLinks: z.ZodOptional<z.ZodBoolean>;
|
|
7438
6232
|
retryCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7657,7 +6451,6 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7657
6451
|
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
7658
6452
|
}, "strip", z.ZodTypeAny, {
|
|
7659
6453
|
enabled?: boolean | undefined;
|
|
7660
|
-
outputPath?: string | undefined;
|
|
7661
6454
|
autoSubfolderIndex?: boolean | undefined;
|
|
7662
6455
|
crawlLinks?: boolean | undefined;
|
|
7663
6456
|
retryCount?: number | undefined;
|
|
@@ -7694,7 +6487,6 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7694
6487
|
}, ...args: unknown[]) => any) | undefined;
|
|
7695
6488
|
}, {
|
|
7696
6489
|
enabled?: boolean | undefined;
|
|
7697
|
-
outputPath?: string | undefined;
|
|
7698
6490
|
autoSubfolderIndex?: boolean | undefined;
|
|
7699
6491
|
crawlLinks?: boolean | undefined;
|
|
7700
6492
|
retryCount?: number | undefined;
|
|
@@ -7734,7 +6526,6 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7734
6526
|
path: string;
|
|
7735
6527
|
prerender?: {
|
|
7736
6528
|
enabled?: boolean | undefined;
|
|
7737
|
-
outputPath?: string | undefined;
|
|
7738
6529
|
autoSubfolderIndex?: boolean | undefined;
|
|
7739
6530
|
crawlLinks?: boolean | undefined;
|
|
7740
6531
|
retryCount?: number | undefined;
|
|
@@ -7798,7 +6589,6 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7798
6589
|
path: string;
|
|
7799
6590
|
prerender?: {
|
|
7800
6591
|
enabled?: boolean | undefined;
|
|
7801
|
-
outputPath?: string | undefined;
|
|
7802
6592
|
autoSubfolderIndex?: boolean | undefined;
|
|
7803
6593
|
crawlLinks?: boolean | undefined;
|
|
7804
6594
|
retryCount?: number | undefined;
|
|
@@ -7865,7 +6655,6 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7865
6655
|
path: string;
|
|
7866
6656
|
prerender?: {
|
|
7867
6657
|
enabled?: boolean | undefined;
|
|
7868
|
-
outputPath?: string | undefined;
|
|
7869
6658
|
autoSubfolderIndex?: boolean | undefined;
|
|
7870
6659
|
crawlLinks?: boolean | undefined;
|
|
7871
6660
|
retryCount?: number | undefined;
|
|
@@ -7934,7 +6723,6 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
7934
6723
|
path: string;
|
|
7935
6724
|
prerender?: {
|
|
7936
6725
|
enabled?: boolean | undefined;
|
|
7937
|
-
outputPath?: string | undefined;
|
|
7938
6726
|
autoSubfolderIndex?: boolean | undefined;
|
|
7939
6727
|
crawlLinks?: boolean | undefined;
|
|
7940
6728
|
retryCount?: number | undefined;
|
|
@@ -8000,7 +6788,6 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8000
6788
|
failOnError?: boolean | undefined;
|
|
8001
6789
|
}>, z.ZodOptional<z.ZodObject<{
|
|
8002
6790
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
8003
|
-
outputPath: z.ZodOptional<z.ZodString>;
|
|
8004
6791
|
autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
|
|
8005
6792
|
crawlLinks: z.ZodOptional<z.ZodBoolean>;
|
|
8006
6793
|
retryCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8023,217 +6810,48 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8023
6810
|
href: string;
|
|
8024
6811
|
hreflang: string;
|
|
8025
6812
|
}>, "many">>;
|
|
8026
|
-
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8027
|
-
loc: z.ZodString;
|
|
8028
|
-
caption: z.ZodOptional<z.ZodString>;
|
|
8029
|
-
title: z.ZodOptional<z.ZodString>;
|
|
8030
|
-
}, "strip", z.ZodTypeAny, {
|
|
8031
|
-
loc: string;
|
|
8032
|
-
caption?: string | undefined;
|
|
8033
|
-
title?: string | undefined;
|
|
8034
|
-
}, {
|
|
8035
|
-
loc: string;
|
|
8036
|
-
caption?: string | undefined;
|
|
8037
|
-
title?: string | undefined;
|
|
8038
|
-
}>, "many">>;
|
|
8039
|
-
news: z.ZodOptional<z.ZodObject<{
|
|
8040
|
-
publication: z.ZodObject<{
|
|
8041
|
-
name: z.ZodString;
|
|
8042
|
-
language: z.ZodString;
|
|
8043
|
-
}, "strip", z.ZodTypeAny, {
|
|
8044
|
-
name: string;
|
|
8045
|
-
language: string;
|
|
8046
|
-
}, {
|
|
8047
|
-
name: string;
|
|
8048
|
-
language: string;
|
|
8049
|
-
}>;
|
|
8050
|
-
publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
8051
|
-
title: z.ZodString;
|
|
8052
|
-
}, "strip", z.ZodTypeAny, {
|
|
8053
|
-
title: string;
|
|
8054
|
-
publication: {
|
|
8055
|
-
name: string;
|
|
8056
|
-
language: string;
|
|
8057
|
-
};
|
|
8058
|
-
publicationDate: string | Date;
|
|
8059
|
-
}, {
|
|
8060
|
-
title: string;
|
|
8061
|
-
publication: {
|
|
8062
|
-
name: string;
|
|
8063
|
-
language: string;
|
|
8064
|
-
};
|
|
8065
|
-
publicationDate: string | Date;
|
|
8066
|
-
}>>;
|
|
8067
|
-
}, "strip", z.ZodTypeAny, {
|
|
8068
|
-
lastmod?: string | Date | undefined;
|
|
8069
|
-
exclude?: boolean | undefined;
|
|
8070
|
-
priority?: number | undefined;
|
|
8071
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
8072
|
-
alternateRefs?: {
|
|
8073
|
-
href: string;
|
|
8074
|
-
hreflang: string;
|
|
8075
|
-
}[] | undefined;
|
|
8076
|
-
images?: {
|
|
8077
|
-
loc: string;
|
|
8078
|
-
caption?: string | undefined;
|
|
8079
|
-
title?: string | undefined;
|
|
8080
|
-
}[] | undefined;
|
|
8081
|
-
news?: {
|
|
8082
|
-
title: string;
|
|
8083
|
-
publication: {
|
|
8084
|
-
name: string;
|
|
8085
|
-
language: string;
|
|
8086
|
-
};
|
|
8087
|
-
publicationDate: string | Date;
|
|
8088
|
-
} | undefined;
|
|
8089
|
-
}, {
|
|
8090
|
-
lastmod?: string | Date | undefined;
|
|
8091
|
-
exclude?: boolean | undefined;
|
|
8092
|
-
priority?: number | undefined;
|
|
8093
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
8094
|
-
alternateRefs?: {
|
|
8095
|
-
href: string;
|
|
8096
|
-
hreflang: string;
|
|
8097
|
-
}[] | undefined;
|
|
8098
|
-
images?: {
|
|
8099
|
-
loc: string;
|
|
8100
|
-
caption?: string | undefined;
|
|
8101
|
-
title?: string | undefined;
|
|
8102
|
-
}[] | undefined;
|
|
8103
|
-
news?: {
|
|
8104
|
-
title: string;
|
|
8105
|
-
publication: {
|
|
8106
|
-
name: string;
|
|
8107
|
-
language: string;
|
|
8108
|
-
};
|
|
8109
|
-
publicationDate: string | Date;
|
|
8110
|
-
} | undefined;
|
|
8111
|
-
}>>;
|
|
8112
|
-
fromCrawl: z.ZodOptional<z.ZodBoolean>;
|
|
8113
|
-
}, "strip", z.ZodTypeAny, {
|
|
8114
|
-
path: string;
|
|
8115
|
-
sitemap?: {
|
|
8116
|
-
lastmod?: string | Date | undefined;
|
|
8117
|
-
exclude?: boolean | undefined;
|
|
8118
|
-
priority?: number | undefined;
|
|
8119
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
8120
|
-
alternateRefs?: {
|
|
8121
|
-
href: string;
|
|
8122
|
-
hreflang: string;
|
|
8123
|
-
}[] | undefined;
|
|
8124
|
-
images?: {
|
|
8125
|
-
loc: string;
|
|
8126
|
-
caption?: string | undefined;
|
|
8127
|
-
title?: string | undefined;
|
|
8128
|
-
}[] | undefined;
|
|
8129
|
-
news?: {
|
|
8130
|
-
title: string;
|
|
8131
|
-
publication: {
|
|
8132
|
-
name: string;
|
|
8133
|
-
language: string;
|
|
8134
|
-
};
|
|
8135
|
-
publicationDate: string | Date;
|
|
8136
|
-
} | undefined;
|
|
8137
|
-
} | undefined;
|
|
8138
|
-
fromCrawl?: boolean | undefined;
|
|
8139
|
-
}, {
|
|
8140
|
-
path: string;
|
|
8141
|
-
sitemap?: {
|
|
8142
|
-
lastmod?: string | Date | undefined;
|
|
8143
|
-
exclude?: boolean | undefined;
|
|
8144
|
-
priority?: number | undefined;
|
|
8145
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
8146
|
-
alternateRefs?: {
|
|
8147
|
-
href: string;
|
|
8148
|
-
hreflang: string;
|
|
8149
|
-
}[] | undefined;
|
|
8150
|
-
images?: {
|
|
8151
|
-
loc: string;
|
|
8152
|
-
caption?: string | undefined;
|
|
8153
|
-
title?: string | undefined;
|
|
8154
|
-
}[] | undefined;
|
|
8155
|
-
news?: {
|
|
8156
|
-
title: string;
|
|
8157
|
-
publication: {
|
|
8158
|
-
name: string;
|
|
8159
|
-
language: string;
|
|
8160
|
-
};
|
|
8161
|
-
publicationDate: string | Date;
|
|
8162
|
-
} | undefined;
|
|
8163
|
-
} | undefined;
|
|
8164
|
-
fromCrawl?: boolean | undefined;
|
|
8165
|
-
}>;
|
|
8166
|
-
html: z.ZodString;
|
|
8167
|
-
}, "strip", z.ZodTypeAny, {
|
|
8168
|
-
page: {
|
|
8169
|
-
path: string;
|
|
8170
|
-
sitemap?: {
|
|
8171
|
-
lastmod?: string | Date | undefined;
|
|
8172
|
-
exclude?: boolean | undefined;
|
|
8173
|
-
priority?: number | undefined;
|
|
8174
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
8175
|
-
alternateRefs?: {
|
|
8176
|
-
href: string;
|
|
8177
|
-
hreflang: string;
|
|
8178
|
-
}[] | undefined;
|
|
8179
|
-
images?: {
|
|
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, {
|
|
8180
6818
|
loc: string;
|
|
8181
6819
|
caption?: string | undefined;
|
|
8182
6820
|
title?: string | undefined;
|
|
8183
|
-
}
|
|
8184
|
-
|
|
6821
|
+
}, {
|
|
6822
|
+
loc: string;
|
|
6823
|
+
caption?: string | undefined;
|
|
6824
|
+
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, {
|
|
8185
6840
|
title: string;
|
|
8186
6841
|
publication: {
|
|
8187
6842
|
name: string;
|
|
8188
6843
|
language: string;
|
|
8189
6844
|
};
|
|
8190
6845
|
publicationDate: string | Date;
|
|
8191
|
-
}
|
|
8192
|
-
} | undefined;
|
|
8193
|
-
fromCrawl?: boolean | undefined;
|
|
8194
|
-
};
|
|
8195
|
-
html: string;
|
|
8196
|
-
}, {
|
|
8197
|
-
page: {
|
|
8198
|
-
path: string;
|
|
8199
|
-
sitemap?: {
|
|
8200
|
-
lastmod?: string | Date | undefined;
|
|
8201
|
-
exclude?: boolean | undefined;
|
|
8202
|
-
priority?: number | undefined;
|
|
8203
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
8204
|
-
alternateRefs?: {
|
|
8205
|
-
href: string;
|
|
8206
|
-
hreflang: string;
|
|
8207
|
-
}[] | undefined;
|
|
8208
|
-
images?: {
|
|
8209
|
-
loc: string;
|
|
8210
|
-
caption?: string | undefined;
|
|
8211
|
-
title?: string | undefined;
|
|
8212
|
-
}[] | undefined;
|
|
8213
|
-
news?: {
|
|
6846
|
+
}, {
|
|
8214
6847
|
title: string;
|
|
8215
6848
|
publication: {
|
|
8216
6849
|
name: string;
|
|
8217
6850
|
language: string;
|
|
8218
6851
|
};
|
|
8219
6852
|
publicationDate: string | Date;
|
|
8220
|
-
}
|
|
8221
|
-
}
|
|
8222
|
-
fromCrawl?: boolean | undefined;
|
|
8223
|
-
};
|
|
8224
|
-
html: string;
|
|
8225
|
-
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
8226
|
-
}, "strip", z.ZodTypeAny, {
|
|
8227
|
-
enabled?: boolean | undefined;
|
|
8228
|
-
outputPath?: string | undefined;
|
|
8229
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
8230
|
-
crawlLinks?: boolean | undefined;
|
|
8231
|
-
retryCount?: number | undefined;
|
|
8232
|
-
retryDelay?: number | undefined;
|
|
8233
|
-
onSuccess?: ((args_0: {
|
|
8234
|
-
page: {
|
|
8235
|
-
path: string;
|
|
8236
|
-
sitemap?: {
|
|
6853
|
+
}>>;
|
|
6854
|
+
}, "strip", z.ZodTypeAny, {
|
|
8237
6855
|
lastmod?: string | Date | undefined;
|
|
8238
6856
|
exclude?: boolean | undefined;
|
|
8239
6857
|
priority?: number | undefined;
|
|
@@ -8255,22 +6873,7 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8255
6873
|
};
|
|
8256
6874
|
publicationDate: string | Date;
|
|
8257
6875
|
} | undefined;
|
|
8258
|
-
}
|
|
8259
|
-
fromCrawl?: boolean | undefined;
|
|
8260
|
-
};
|
|
8261
|
-
html: string;
|
|
8262
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
8263
|
-
}, {
|
|
8264
|
-
enabled?: boolean | undefined;
|
|
8265
|
-
outputPath?: string | undefined;
|
|
8266
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
8267
|
-
crawlLinks?: boolean | undefined;
|
|
8268
|
-
retryCount?: number | undefined;
|
|
8269
|
-
retryDelay?: number | undefined;
|
|
8270
|
-
onSuccess?: ((args_0: {
|
|
8271
|
-
page: {
|
|
8272
|
-
path: string;
|
|
8273
|
-
sitemap?: {
|
|
6876
|
+
}, {
|
|
8274
6877
|
lastmod?: string | Date | undefined;
|
|
8275
6878
|
exclude?: boolean | undefined;
|
|
8276
6879
|
priority?: number | undefined;
|
|
@@ -8292,475 +6895,194 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8292
6895
|
};
|
|
8293
6896
|
publicationDate: string | Date;
|
|
8294
6897
|
} | undefined;
|
|
8295
|
-
}
|
|
8296
|
-
fromCrawl
|
|
8297
|
-
};
|
|
8298
|
-
html: string;
|
|
8299
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
8300
|
-
}>>>>;
|
|
8301
|
-
shell: z.ZodOptional<z.ZodObject<{
|
|
8302
|
-
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8303
|
-
maskPath: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
8304
|
-
autoRedirect: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8305
|
-
prerender: z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
8306
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
8307
|
-
outputPath: z.ZodOptional<z.ZodString>;
|
|
8308
|
-
autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
|
|
8309
|
-
crawlLinks: z.ZodOptional<z.ZodBoolean>;
|
|
8310
|
-
retryCount: z.ZodOptional<z.ZodNumber>;
|
|
8311
|
-
retryDelay: z.ZodOptional<z.ZodNumber>;
|
|
8312
|
-
onSuccess: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
8313
|
-
page: z.ZodObject<{
|
|
8314
|
-
path: z.ZodString;
|
|
8315
|
-
sitemap: z.ZodOptional<z.ZodObject<{
|
|
8316
|
-
exclude: z.ZodOptional<z.ZodBoolean>;
|
|
8317
|
-
priority: z.ZodOptional<z.ZodNumber>;
|
|
8318
|
-
changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
|
|
8319
|
-
lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
|
|
8320
|
-
alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8321
|
-
href: z.ZodString;
|
|
8322
|
-
hreflang: z.ZodString;
|
|
8323
|
-
}, "strip", z.ZodTypeAny, {
|
|
8324
|
-
href: string;
|
|
8325
|
-
hreflang: string;
|
|
8326
|
-
}, {
|
|
8327
|
-
href: string;
|
|
8328
|
-
hreflang: string;
|
|
8329
|
-
}>, "many">>;
|
|
8330
|
-
images: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8331
|
-
loc: z.ZodString;
|
|
8332
|
-
caption: z.ZodOptional<z.ZodString>;
|
|
8333
|
-
title: z.ZodOptional<z.ZodString>;
|
|
8334
|
-
}, "strip", z.ZodTypeAny, {
|
|
8335
|
-
loc: string;
|
|
8336
|
-
caption?: string | undefined;
|
|
8337
|
-
title?: string | undefined;
|
|
8338
|
-
}, {
|
|
8339
|
-
loc: string;
|
|
8340
|
-
caption?: string | undefined;
|
|
8341
|
-
title?: string | undefined;
|
|
8342
|
-
}>, "many">>;
|
|
8343
|
-
news: z.ZodOptional<z.ZodObject<{
|
|
8344
|
-
publication: z.ZodObject<{
|
|
8345
|
-
name: z.ZodString;
|
|
8346
|
-
language: z.ZodString;
|
|
8347
|
-
}, "strip", z.ZodTypeAny, {
|
|
8348
|
-
name: string;
|
|
8349
|
-
language: string;
|
|
8350
|
-
}, {
|
|
8351
|
-
name: string;
|
|
8352
|
-
language: string;
|
|
8353
|
-
}>;
|
|
8354
|
-
publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
8355
|
-
title: z.ZodString;
|
|
8356
|
-
}, "strip", z.ZodTypeAny, {
|
|
8357
|
-
title: string;
|
|
8358
|
-
publication: {
|
|
8359
|
-
name: string;
|
|
8360
|
-
language: string;
|
|
8361
|
-
};
|
|
8362
|
-
publicationDate: string | Date;
|
|
8363
|
-
}, {
|
|
8364
|
-
title: string;
|
|
8365
|
-
publication: {
|
|
8366
|
-
name: string;
|
|
8367
|
-
language: string;
|
|
8368
|
-
};
|
|
8369
|
-
publicationDate: string | Date;
|
|
8370
|
-
}>>;
|
|
8371
|
-
}, "strip", z.ZodTypeAny, {
|
|
8372
|
-
lastmod?: string | Date | undefined;
|
|
8373
|
-
exclude?: boolean | undefined;
|
|
8374
|
-
priority?: number | undefined;
|
|
8375
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
8376
|
-
alternateRefs?: {
|
|
8377
|
-
href: string;
|
|
8378
|
-
hreflang: string;
|
|
8379
|
-
}[] | undefined;
|
|
8380
|
-
images?: {
|
|
8381
|
-
loc: string;
|
|
8382
|
-
caption?: string | undefined;
|
|
8383
|
-
title?: string | undefined;
|
|
8384
|
-
}[] | undefined;
|
|
8385
|
-
news?: {
|
|
8386
|
-
title: string;
|
|
8387
|
-
publication: {
|
|
8388
|
-
name: string;
|
|
8389
|
-
language: string;
|
|
8390
|
-
};
|
|
8391
|
-
publicationDate: string | Date;
|
|
8392
|
-
} | undefined;
|
|
8393
|
-
}, {
|
|
8394
|
-
lastmod?: string | Date | undefined;
|
|
8395
|
-
exclude?: boolean | undefined;
|
|
8396
|
-
priority?: number | undefined;
|
|
8397
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
8398
|
-
alternateRefs?: {
|
|
8399
|
-
href: string;
|
|
8400
|
-
hreflang: string;
|
|
8401
|
-
}[] | undefined;
|
|
8402
|
-
images?: {
|
|
8403
|
-
loc: string;
|
|
8404
|
-
caption?: string | undefined;
|
|
8405
|
-
title?: string | undefined;
|
|
8406
|
-
}[] | undefined;
|
|
8407
|
-
news?: {
|
|
8408
|
-
title: string;
|
|
8409
|
-
publication: {
|
|
8410
|
-
name: string;
|
|
8411
|
-
language: string;
|
|
8412
|
-
};
|
|
8413
|
-
publicationDate: string | Date;
|
|
8414
|
-
} | undefined;
|
|
8415
|
-
}>>;
|
|
8416
|
-
fromCrawl: z.ZodOptional<z.ZodBoolean>;
|
|
8417
|
-
}, "strip", z.ZodTypeAny, {
|
|
8418
|
-
path: string;
|
|
8419
|
-
sitemap?: {
|
|
8420
|
-
lastmod?: string | Date | undefined;
|
|
8421
|
-
exclude?: boolean | undefined;
|
|
8422
|
-
priority?: number | undefined;
|
|
8423
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
8424
|
-
alternateRefs?: {
|
|
8425
|
-
href: string;
|
|
8426
|
-
hreflang: string;
|
|
8427
|
-
}[] | undefined;
|
|
8428
|
-
images?: {
|
|
8429
|
-
loc: string;
|
|
8430
|
-
caption?: string | undefined;
|
|
8431
|
-
title?: string | undefined;
|
|
8432
|
-
}[] | undefined;
|
|
8433
|
-
news?: {
|
|
8434
|
-
title: string;
|
|
8435
|
-
publication: {
|
|
8436
|
-
name: string;
|
|
8437
|
-
language: string;
|
|
8438
|
-
};
|
|
8439
|
-
publicationDate: string | Date;
|
|
8440
|
-
} | undefined;
|
|
8441
|
-
} | undefined;
|
|
8442
|
-
fromCrawl?: boolean | undefined;
|
|
8443
|
-
}, {
|
|
8444
|
-
path: string;
|
|
8445
|
-
sitemap?: {
|
|
8446
|
-
lastmod?: string | Date | undefined;
|
|
8447
|
-
exclude?: boolean | undefined;
|
|
8448
|
-
priority?: number | undefined;
|
|
8449
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
8450
|
-
alternateRefs?: {
|
|
8451
|
-
href: string;
|
|
8452
|
-
hreflang: string;
|
|
8453
|
-
}[] | undefined;
|
|
8454
|
-
images?: {
|
|
8455
|
-
loc: string;
|
|
8456
|
-
caption?: string | undefined;
|
|
8457
|
-
title?: string | undefined;
|
|
8458
|
-
}[] | undefined;
|
|
8459
|
-
news?: {
|
|
8460
|
-
title: string;
|
|
8461
|
-
publication: {
|
|
8462
|
-
name: string;
|
|
8463
|
-
language: string;
|
|
8464
|
-
};
|
|
8465
|
-
publicationDate: string | Date;
|
|
8466
|
-
} | undefined;
|
|
8467
|
-
} | undefined;
|
|
8468
|
-
fromCrawl?: boolean | undefined;
|
|
8469
|
-
}>;
|
|
8470
|
-
html: z.ZodString;
|
|
6898
|
+
}>>;
|
|
6899
|
+
fromCrawl: z.ZodOptional<z.ZodBoolean>;
|
|
8471
6900
|
}, "strip", z.ZodTypeAny, {
|
|
8472
|
-
|
|
8473
|
-
|
|
8474
|
-
|
|
8475
|
-
|
|
8476
|
-
|
|
8477
|
-
|
|
8478
|
-
|
|
8479
|
-
|
|
8480
|
-
|
|
8481
|
-
|
|
8482
|
-
|
|
8483
|
-
|
|
8484
|
-
|
|
8485
|
-
|
|
8486
|
-
|
|
8487
|
-
|
|
8488
|
-
|
|
8489
|
-
|
|
8490
|
-
|
|
8491
|
-
|
|
8492
|
-
|
|
8493
|
-
|
|
8494
|
-
publicationDate: string | Date;
|
|
8495
|
-
} | undefined;
|
|
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;
|
|
8496
6923
|
} | undefined;
|
|
8497
|
-
|
|
8498
|
-
|
|
8499
|
-
html: string;
|
|
6924
|
+
} | undefined;
|
|
6925
|
+
fromCrawl?: boolean | undefined;
|
|
8500
6926
|
}, {
|
|
8501
|
-
|
|
8502
|
-
|
|
8503
|
-
|
|
8504
|
-
|
|
8505
|
-
|
|
8506
|
-
|
|
8507
|
-
|
|
8508
|
-
|
|
8509
|
-
|
|
8510
|
-
|
|
8511
|
-
|
|
8512
|
-
|
|
8513
|
-
|
|
8514
|
-
|
|
8515
|
-
|
|
8516
|
-
|
|
8517
|
-
|
|
8518
|
-
|
|
8519
|
-
|
|
8520
|
-
|
|
8521
|
-
|
|
8522
|
-
|
|
8523
|
-
publicationDate: string | Date;
|
|
8524
|
-
} | undefined;
|
|
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;
|
|
8525
6949
|
} | undefined;
|
|
8526
|
-
|
|
8527
|
-
|
|
8528
|
-
|
|
8529
|
-
|
|
6950
|
+
} | undefined;
|
|
6951
|
+
fromCrawl?: boolean | undefined;
|
|
6952
|
+
}>;
|
|
6953
|
+
html: z.ZodString;
|
|
8530
6954
|
}, "strip", z.ZodTypeAny, {
|
|
8531
|
-
|
|
8532
|
-
|
|
8533
|
-
|
|
8534
|
-
|
|
8535
|
-
|
|
8536
|
-
|
|
8537
|
-
|
|
8538
|
-
|
|
8539
|
-
|
|
8540
|
-
|
|
8541
|
-
|
|
8542
|
-
|
|
8543
|
-
|
|
8544
|
-
|
|
8545
|
-
|
|
8546
|
-
|
|
8547
|
-
|
|
8548
|
-
|
|
8549
|
-
|
|
8550
|
-
|
|
8551
|
-
|
|
8552
|
-
|
|
8553
|
-
|
|
8554
|
-
news?: {
|
|
8555
|
-
title: string;
|
|
8556
|
-
publication: {
|
|
8557
|
-
name: string;
|
|
8558
|
-
language: string;
|
|
8559
|
-
};
|
|
8560
|
-
publicationDate: string | Date;
|
|
8561
|
-
} | undefined;
|
|
8562
|
-
} | undefined;
|
|
8563
|
-
fromCrawl?: boolean | undefined;
|
|
8564
|
-
};
|
|
8565
|
-
html: string;
|
|
8566
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
8567
|
-
}, {
|
|
8568
|
-
enabled?: boolean | undefined;
|
|
8569
|
-
outputPath?: string | undefined;
|
|
8570
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
8571
|
-
crawlLinks?: boolean | undefined;
|
|
8572
|
-
retryCount?: number | undefined;
|
|
8573
|
-
retryDelay?: number | undefined;
|
|
8574
|
-
onSuccess?: ((args_0: {
|
|
8575
|
-
page: {
|
|
8576
|
-
path: string;
|
|
8577
|
-
sitemap?: {
|
|
8578
|
-
lastmod?: string | Date | undefined;
|
|
8579
|
-
exclude?: boolean | undefined;
|
|
8580
|
-
priority?: number | undefined;
|
|
8581
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
8582
|
-
alternateRefs?: {
|
|
8583
|
-
href: string;
|
|
8584
|
-
hreflang: string;
|
|
8585
|
-
}[] | undefined;
|
|
8586
|
-
images?: {
|
|
8587
|
-
loc: string;
|
|
8588
|
-
caption?: string | undefined;
|
|
8589
|
-
title?: string | undefined;
|
|
8590
|
-
}[] | undefined;
|
|
8591
|
-
news?: {
|
|
8592
|
-
title: string;
|
|
8593
|
-
publication: {
|
|
8594
|
-
name: string;
|
|
8595
|
-
language: string;
|
|
8596
|
-
};
|
|
8597
|
-
publicationDate: string | Date;
|
|
8598
|
-
} | undefined;
|
|
8599
|
-
} | undefined;
|
|
8600
|
-
fromCrawl?: boolean | undefined;
|
|
8601
|
-
};
|
|
8602
|
-
html: string;
|
|
8603
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
8604
|
-
}>>>, {
|
|
8605
|
-
enabled: boolean;
|
|
8606
|
-
outputPath: string;
|
|
8607
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
8608
|
-
crawlLinks: boolean;
|
|
8609
|
-
retryCount: number;
|
|
8610
|
-
retryDelay?: number | undefined;
|
|
8611
|
-
onSuccess?: ((args_0: {
|
|
8612
|
-
page: {
|
|
8613
|
-
path: string;
|
|
8614
|
-
sitemap?: {
|
|
8615
|
-
lastmod?: string | Date | undefined;
|
|
8616
|
-
exclude?: boolean | undefined;
|
|
8617
|
-
priority?: number | undefined;
|
|
8618
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
8619
|
-
alternateRefs?: {
|
|
8620
|
-
href: string;
|
|
8621
|
-
hreflang: string;
|
|
8622
|
-
}[] | undefined;
|
|
8623
|
-
images?: {
|
|
8624
|
-
loc: string;
|
|
8625
|
-
caption?: string | undefined;
|
|
8626
|
-
title?: string | undefined;
|
|
8627
|
-
}[] | undefined;
|
|
8628
|
-
news?: {
|
|
8629
|
-
title: string;
|
|
8630
|
-
publication: {
|
|
8631
|
-
name: string;
|
|
8632
|
-
language: string;
|
|
8633
|
-
};
|
|
8634
|
-
publicationDate: string | Date;
|
|
8635
|
-
} | undefined;
|
|
8636
|
-
} | undefined;
|
|
8637
|
-
fromCrawl?: boolean | undefined;
|
|
8638
|
-
};
|
|
8639
|
-
html: string;
|
|
8640
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
8641
|
-
}, {
|
|
8642
|
-
enabled?: boolean | undefined;
|
|
8643
|
-
outputPath?: string | undefined;
|
|
8644
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
8645
|
-
crawlLinks?: boolean | undefined;
|
|
8646
|
-
retryCount?: number | undefined;
|
|
8647
|
-
retryDelay?: number | undefined;
|
|
8648
|
-
onSuccess?: ((args_0: {
|
|
8649
|
-
page: {
|
|
8650
|
-
path: string;
|
|
8651
|
-
sitemap?: {
|
|
8652
|
-
lastmod?: string | Date | undefined;
|
|
8653
|
-
exclude?: boolean | undefined;
|
|
8654
|
-
priority?: number | undefined;
|
|
8655
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
8656
|
-
alternateRefs?: {
|
|
8657
|
-
href: string;
|
|
8658
|
-
hreflang: string;
|
|
8659
|
-
}[] | undefined;
|
|
8660
|
-
images?: {
|
|
8661
|
-
loc: string;
|
|
8662
|
-
caption?: string | undefined;
|
|
8663
|
-
title?: string | undefined;
|
|
8664
|
-
}[] | undefined;
|
|
8665
|
-
news?: {
|
|
8666
|
-
title: string;
|
|
8667
|
-
publication: {
|
|
8668
|
-
name: string;
|
|
8669
|
-
language: string;
|
|
8670
|
-
};
|
|
8671
|
-
publicationDate: string | Date;
|
|
8672
|
-
} | undefined;
|
|
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;
|
|
8673
6978
|
} | undefined;
|
|
8674
|
-
|
|
8675
|
-
|
|
8676
|
-
|
|
8677
|
-
|
|
8678
|
-
}
|
|
6979
|
+
} | undefined;
|
|
6980
|
+
fromCrawl?: boolean | undefined;
|
|
6981
|
+
};
|
|
6982
|
+
html: string;
|
|
6983
|
+
}, {
|
|
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;
|
|
7007
|
+
} | undefined;
|
|
7008
|
+
} | undefined;
|
|
7009
|
+
fromCrawl?: boolean | undefined;
|
|
7010
|
+
};
|
|
7011
|
+
html: string;
|
|
7012
|
+
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
8679
7013
|
}, "strip", z.ZodTypeAny, {
|
|
8680
|
-
|
|
8681
|
-
|
|
8682
|
-
|
|
8683
|
-
|
|
8684
|
-
|
|
8685
|
-
|
|
8686
|
-
|
|
8687
|
-
|
|
8688
|
-
|
|
8689
|
-
|
|
8690
|
-
|
|
8691
|
-
|
|
8692
|
-
|
|
8693
|
-
|
|
8694
|
-
|
|
8695
|
-
|
|
8696
|
-
|
|
8697
|
-
|
|
8698
|
-
|
|
8699
|
-
|
|
8700
|
-
|
|
8701
|
-
|
|
8702
|
-
|
|
8703
|
-
|
|
8704
|
-
|
|
8705
|
-
|
|
8706
|
-
|
|
8707
|
-
|
|
8708
|
-
|
|
8709
|
-
};
|
|
8710
|
-
publicationDate: string | Date;
|
|
8711
|
-
} | undefined;
|
|
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;
|
|
8712
7043
|
} | undefined;
|
|
8713
|
-
|
|
8714
|
-
|
|
8715
|
-
|
|
8716
|
-
|
|
8717
|
-
};
|
|
8718
|
-
enabled: boolean;
|
|
8719
|
-
maskPath: string;
|
|
8720
|
-
autoRedirect: boolean;
|
|
7044
|
+
} | undefined;
|
|
7045
|
+
fromCrawl?: boolean | undefined;
|
|
7046
|
+
};
|
|
7047
|
+
html: string;
|
|
7048
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
8721
7049
|
}, {
|
|
8722
|
-
prerender?: {
|
|
8723
|
-
enabled?: boolean | undefined;
|
|
8724
|
-
outputPath?: string | undefined;
|
|
8725
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
8726
|
-
crawlLinks?: boolean | undefined;
|
|
8727
|
-
retryCount?: number | undefined;
|
|
8728
|
-
retryDelay?: number | undefined;
|
|
8729
|
-
onSuccess?: ((args_0: {
|
|
8730
|
-
page: {
|
|
8731
|
-
path: string;
|
|
8732
|
-
sitemap?: {
|
|
8733
|
-
lastmod?: string | Date | undefined;
|
|
8734
|
-
exclude?: boolean | undefined;
|
|
8735
|
-
priority?: number | undefined;
|
|
8736
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
8737
|
-
alternateRefs?: {
|
|
8738
|
-
href: string;
|
|
8739
|
-
hreflang: string;
|
|
8740
|
-
}[] | undefined;
|
|
8741
|
-
images?: {
|
|
8742
|
-
loc: string;
|
|
8743
|
-
caption?: string | undefined;
|
|
8744
|
-
title?: string | undefined;
|
|
8745
|
-
}[] | undefined;
|
|
8746
|
-
news?: {
|
|
8747
|
-
title: string;
|
|
8748
|
-
publication: {
|
|
8749
|
-
name: string;
|
|
8750
|
-
language: string;
|
|
8751
|
-
};
|
|
8752
|
-
publicationDate: string | Date;
|
|
8753
|
-
} | undefined;
|
|
8754
|
-
} | undefined;
|
|
8755
|
-
fromCrawl?: boolean | undefined;
|
|
8756
|
-
};
|
|
8757
|
-
html: string;
|
|
8758
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
8759
|
-
} | undefined;
|
|
8760
7050
|
enabled?: boolean | undefined;
|
|
8761
|
-
|
|
8762
|
-
|
|
8763
|
-
|
|
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;
|
|
7079
|
+
} | undefined;
|
|
7080
|
+
} | undefined;
|
|
7081
|
+
fromCrawl?: boolean | undefined;
|
|
7082
|
+
};
|
|
7083
|
+
html: string;
|
|
7084
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
7085
|
+
}>>>>;
|
|
8764
7086
|
root: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
8765
7087
|
target: z.ZodOptional<z.ZodType<import('nitropack/presets').PresetNameInput | undefined, z.ZodTypeDef, import('nitropack/presets').PresetNameInput | undefined>>;
|
|
8766
7088
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8814,7 +7136,6 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8814
7136
|
path: string;
|
|
8815
7137
|
prerender?: {
|
|
8816
7138
|
enabled?: boolean | undefined;
|
|
8817
|
-
outputPath?: string | undefined;
|
|
8818
7139
|
autoSubfolderIndex?: boolean | undefined;
|
|
8819
7140
|
crawlLinks?: boolean | undefined;
|
|
8820
7141
|
retryCount?: number | undefined;
|
|
@@ -8881,7 +7202,6 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8881
7202
|
path: string;
|
|
8882
7203
|
prerender?: {
|
|
8883
7204
|
enabled?: boolean | undefined;
|
|
8884
|
-
outputPath?: string | undefined;
|
|
8885
7205
|
autoSubfolderIndex?: boolean | undefined;
|
|
8886
7206
|
crawlLinks?: boolean | undefined;
|
|
8887
7207
|
retryCount?: number | undefined;
|
|
@@ -8947,7 +7267,6 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8947
7267
|
failOnError?: boolean | undefined;
|
|
8948
7268
|
} & {
|
|
8949
7269
|
enabled?: boolean | undefined;
|
|
8950
|
-
outputPath?: string | undefined;
|
|
8951
7270
|
autoSubfolderIndex?: boolean | undefined;
|
|
8952
7271
|
crawlLinks?: boolean | undefined;
|
|
8953
7272
|
retryCount?: number | undefined;
|
|
@@ -8986,7 +7305,6 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
8986
7305
|
sitemap?: {
|
|
8987
7306
|
host?: string | undefined;
|
|
8988
7307
|
enabled?: boolean | undefined;
|
|
8989
|
-
outputPath?: string | undefined;
|
|
8990
7308
|
autoSubfolderIndex?: boolean | undefined;
|
|
8991
7309
|
crawlLinks?: boolean | undefined;
|
|
8992
7310
|
retryCount?: number | undefined;
|
|
@@ -9022,49 +7340,6 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
9022
7340
|
html: string;
|
|
9023
7341
|
}, ...args: unknown[]) => any) | undefined;
|
|
9024
7342
|
} | undefined;
|
|
9025
|
-
shell?: {
|
|
9026
|
-
prerender: {
|
|
9027
|
-
enabled: boolean;
|
|
9028
|
-
outputPath: string;
|
|
9029
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
9030
|
-
crawlLinks: boolean;
|
|
9031
|
-
retryCount: number;
|
|
9032
|
-
retryDelay?: number | undefined;
|
|
9033
|
-
onSuccess?: ((args_0: {
|
|
9034
|
-
page: {
|
|
9035
|
-
path: string;
|
|
9036
|
-
sitemap?: {
|
|
9037
|
-
lastmod?: string | Date | undefined;
|
|
9038
|
-
exclude?: boolean | undefined;
|
|
9039
|
-
priority?: number | undefined;
|
|
9040
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
9041
|
-
alternateRefs?: {
|
|
9042
|
-
href: string;
|
|
9043
|
-
hreflang: string;
|
|
9044
|
-
}[] | undefined;
|
|
9045
|
-
images?: {
|
|
9046
|
-
loc: string;
|
|
9047
|
-
caption?: string | undefined;
|
|
9048
|
-
title?: string | undefined;
|
|
9049
|
-
}[] | undefined;
|
|
9050
|
-
news?: {
|
|
9051
|
-
title: string;
|
|
9052
|
-
publication: {
|
|
9053
|
-
name: string;
|
|
9054
|
-
language: string;
|
|
9055
|
-
};
|
|
9056
|
-
publicationDate: string | Date;
|
|
9057
|
-
} | undefined;
|
|
9058
|
-
} | undefined;
|
|
9059
|
-
fromCrawl?: boolean | undefined;
|
|
9060
|
-
};
|
|
9061
|
-
html: string;
|
|
9062
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
9063
|
-
};
|
|
9064
|
-
enabled: boolean;
|
|
9065
|
-
maskPath: string;
|
|
9066
|
-
autoRedirect: boolean;
|
|
9067
|
-
} | undefined;
|
|
9068
7343
|
}, {
|
|
9069
7344
|
client?: {
|
|
9070
7345
|
entry?: string | undefined;
|
|
@@ -9080,7 +7355,6 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
9080
7355
|
path: string;
|
|
9081
7356
|
prerender?: {
|
|
9082
7357
|
enabled?: boolean | undefined;
|
|
9083
|
-
outputPath?: string | undefined;
|
|
9084
7358
|
autoSubfolderIndex?: boolean | undefined;
|
|
9085
7359
|
crawlLinks?: boolean | undefined;
|
|
9086
7360
|
retryCount?: number | undefined;
|
|
@@ -9146,7 +7420,6 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
9146
7420
|
failOnError?: boolean | undefined;
|
|
9147
7421
|
} & {
|
|
9148
7422
|
enabled?: boolean | undefined;
|
|
9149
|
-
outputPath?: string | undefined;
|
|
9150
7423
|
autoSubfolderIndex?: boolean | undefined;
|
|
9151
7424
|
crawlLinks?: boolean | undefined;
|
|
9152
7425
|
retryCount?: number | undefined;
|
|
@@ -9223,7 +7496,6 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
9223
7496
|
sitemap?: {
|
|
9224
7497
|
host?: string | undefined;
|
|
9225
7498
|
enabled?: boolean | undefined;
|
|
9226
|
-
outputPath?: string | undefined;
|
|
9227
7499
|
autoSubfolderIndex?: boolean | undefined;
|
|
9228
7500
|
crawlLinks?: boolean | undefined;
|
|
9229
7501
|
retryCount?: number | undefined;
|
|
@@ -9263,7 +7535,6 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
9263
7535
|
path: string;
|
|
9264
7536
|
prerender?: {
|
|
9265
7537
|
enabled?: boolean | undefined;
|
|
9266
|
-
outputPath?: string | undefined;
|
|
9267
7538
|
autoSubfolderIndex?: boolean | undefined;
|
|
9268
7539
|
crawlLinks?: boolean | undefined;
|
|
9269
7540
|
retryCount?: number | undefined;
|
|
@@ -9324,49 +7595,6 @@ export declare function createTanStackStartOptionsSchema(frameworkPlugin?: Recor
|
|
|
9324
7595
|
} | undefined;
|
|
9325
7596
|
fromCrawl?: boolean | undefined;
|
|
9326
7597
|
})[] | undefined;
|
|
9327
|
-
shell?: {
|
|
9328
|
-
prerender?: {
|
|
9329
|
-
enabled?: boolean | undefined;
|
|
9330
|
-
outputPath?: string | undefined;
|
|
9331
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
9332
|
-
crawlLinks?: boolean | undefined;
|
|
9333
|
-
retryCount?: number | undefined;
|
|
9334
|
-
retryDelay?: number | undefined;
|
|
9335
|
-
onSuccess?: ((args_0: {
|
|
9336
|
-
page: {
|
|
9337
|
-
path: string;
|
|
9338
|
-
sitemap?: {
|
|
9339
|
-
lastmod?: string | Date | undefined;
|
|
9340
|
-
exclude?: boolean | undefined;
|
|
9341
|
-
priority?: number | undefined;
|
|
9342
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
9343
|
-
alternateRefs?: {
|
|
9344
|
-
href: string;
|
|
9345
|
-
hreflang: string;
|
|
9346
|
-
}[] | undefined;
|
|
9347
|
-
images?: {
|
|
9348
|
-
loc: string;
|
|
9349
|
-
caption?: string | undefined;
|
|
9350
|
-
title?: string | undefined;
|
|
9351
|
-
}[] | undefined;
|
|
9352
|
-
news?: {
|
|
9353
|
-
title: string;
|
|
9354
|
-
publication: {
|
|
9355
|
-
name: string;
|
|
9356
|
-
language: string;
|
|
9357
|
-
};
|
|
9358
|
-
publicationDate: string | Date;
|
|
9359
|
-
} | undefined;
|
|
9360
|
-
} | undefined;
|
|
9361
|
-
fromCrawl?: boolean | undefined;
|
|
9362
|
-
};
|
|
9363
|
-
html: string;
|
|
9364
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
9365
|
-
} | undefined;
|
|
9366
|
-
enabled?: boolean | undefined;
|
|
9367
|
-
maskPath?: string | undefined;
|
|
9368
|
-
autoRedirect?: boolean | undefined;
|
|
9369
|
-
} | undefined;
|
|
9370
7598
|
}>>>;
|
|
9371
7599
|
export declare const pageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
9372
7600
|
path: z.ZodString;
|
|
@@ -9475,7 +7703,6 @@ export declare const pageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9475
7703
|
}, {
|
|
9476
7704
|
prerender: z.ZodOptional<z.ZodObject<{
|
|
9477
7705
|
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
9478
|
-
outputPath: z.ZodOptional<z.ZodString>;
|
|
9479
7706
|
autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
|
|
9480
7707
|
crawlLinks: z.ZodOptional<z.ZodBoolean>;
|
|
9481
7708
|
retryCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -9700,7 +7927,6 @@ export declare const pageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9700
7927
|
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
9701
7928
|
}, "strip", z.ZodTypeAny, {
|
|
9702
7929
|
enabled?: boolean | undefined;
|
|
9703
|
-
outputPath?: string | undefined;
|
|
9704
7930
|
autoSubfolderIndex?: boolean | undefined;
|
|
9705
7931
|
crawlLinks?: boolean | undefined;
|
|
9706
7932
|
retryCount?: number | undefined;
|
|
@@ -9737,7 +7963,6 @@ export declare const pageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9737
7963
|
}, ...args: unknown[]) => any) | undefined;
|
|
9738
7964
|
}, {
|
|
9739
7965
|
enabled?: boolean | undefined;
|
|
9740
|
-
outputPath?: string | undefined;
|
|
9741
7966
|
autoSubfolderIndex?: boolean | undefined;
|
|
9742
7967
|
crawlLinks?: boolean | undefined;
|
|
9743
7968
|
retryCount?: number | undefined;
|
|
@@ -9777,7 +8002,6 @@ export declare const pageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9777
8002
|
path: string;
|
|
9778
8003
|
prerender?: {
|
|
9779
8004
|
enabled?: boolean | undefined;
|
|
9780
|
-
outputPath?: string | undefined;
|
|
9781
8005
|
autoSubfolderIndex?: boolean | undefined;
|
|
9782
8006
|
crawlLinks?: boolean | undefined;
|
|
9783
8007
|
retryCount?: number | undefined;
|
|
@@ -9841,7 +8065,6 @@ export declare const pageSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9841
8065
|
path: string;
|
|
9842
8066
|
prerender?: {
|
|
9843
8067
|
enabled?: boolean | undefined;
|
|
9844
|
-
outputPath?: string | undefined;
|
|
9845
8068
|
autoSubfolderIndex?: boolean | undefined;
|
|
9846
8069
|
crawlLinks?: boolean | undefined;
|
|
9847
8070
|
retryCount?: number | undefined;
|