@tanstack/start-plugin-core 1.20.3-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (111) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +12 -0
  3. package/dist/cjs/compilers.cjs +402 -0
  4. package/dist/cjs/compilers.cjs.map +1 -0
  5. package/dist/cjs/compilers.d.cts +21 -0
  6. package/dist/cjs/extractHtmlScripts.cjs +35 -0
  7. package/dist/cjs/extractHtmlScripts.cjs.map +1 -0
  8. package/dist/cjs/extractHtmlScripts.d.cts +4 -0
  9. package/dist/cjs/index.cjs +15 -0
  10. package/dist/cjs/index.cjs.map +1 -0
  11. package/dist/cjs/index.d.cts +7 -0
  12. package/dist/cjs/nitro/build-nitro.cjs +18 -0
  13. package/dist/cjs/nitro/build-nitro.cjs.map +1 -0
  14. package/dist/cjs/nitro/build-nitro.d.cts +2 -0
  15. package/dist/cjs/nitro/build-sitemap.cjs +54 -0
  16. package/dist/cjs/nitro/build-sitemap.cjs.map +1 -0
  17. package/dist/cjs/nitro/build-sitemap.d.cts +9 -0
  18. package/dist/cjs/nitro/dev-server-plugin.cjs +128 -0
  19. package/dist/cjs/nitro/dev-server-plugin.cjs.map +1 -0
  20. package/dist/cjs/nitro/dev-server-plugin.d.cts +5 -0
  21. package/dist/cjs/nitro/nitro-plugin.cjs +128 -0
  22. package/dist/cjs/nitro/nitro-plugin.cjs.map +1 -0
  23. package/dist/cjs/nitro/nitro-plugin.d.cts +3 -0
  24. package/dist/cjs/plugin.cjs +117 -0
  25. package/dist/cjs/plugin.cjs.map +1 -0
  26. package/dist/cjs/plugin.d.cts +2713 -0
  27. package/dist/cjs/prerender.cjs +171 -0
  28. package/dist/cjs/prerender.cjs.map +1 -0
  29. package/dist/cjs/prerender.d.cts +8 -0
  30. package/dist/cjs/queue.cjs +131 -0
  31. package/dist/cjs/queue.cjs.map +1 -0
  32. package/dist/cjs/queue.d.cts +32 -0
  33. package/dist/cjs/routesManifestPlugin.cjs +165 -0
  34. package/dist/cjs/routesManifestPlugin.cjs.map +1 -0
  35. package/dist/cjs/routesManifestPlugin.d.cts +3 -0
  36. package/dist/cjs/schema.cjs +136 -0
  37. package/dist/cjs/schema.cjs.map +1 -0
  38. package/dist/cjs/schema.d.cts +8128 -0
  39. package/dist/cjs/start-compiler-plugin.cjs +72 -0
  40. package/dist/cjs/start-compiler-plugin.cjs.map +1 -0
  41. package/dist/cjs/start-compiler-plugin.d.cts +13 -0
  42. package/dist/cjs/start-server-routes-plugin/config.d.cts +49 -0
  43. package/dist/cjs/start-server-routes-plugin/plugin.cjs +608 -0
  44. package/dist/cjs/start-server-routes-plugin/plugin.cjs.map +1 -0
  45. package/dist/cjs/start-server-routes-plugin/plugin.d.cts +3 -0
  46. package/dist/cjs/start-server-routes-plugin/template.cjs +111 -0
  47. package/dist/cjs/start-server-routes-plugin/template.cjs.map +1 -0
  48. package/dist/cjs/start-server-routes-plugin/template.d.cts +34 -0
  49. package/dist/esm/compilers.d.ts +21 -0
  50. package/dist/esm/compilers.js +384 -0
  51. package/dist/esm/compilers.js.map +1 -0
  52. package/dist/esm/extractHtmlScripts.d.ts +4 -0
  53. package/dist/esm/extractHtmlScripts.js +18 -0
  54. package/dist/esm/extractHtmlScripts.js.map +1 -0
  55. package/dist/esm/index.d.ts +7 -0
  56. package/dist/esm/index.js +15 -0
  57. package/dist/esm/index.js.map +1 -0
  58. package/dist/esm/nitro/build-nitro.d.ts +2 -0
  59. package/dist/esm/nitro/build-nitro.js +18 -0
  60. package/dist/esm/nitro/build-nitro.js.map +1 -0
  61. package/dist/esm/nitro/build-sitemap.d.ts +9 -0
  62. package/dist/esm/nitro/build-sitemap.js +54 -0
  63. package/dist/esm/nitro/build-sitemap.js.map +1 -0
  64. package/dist/esm/nitro/dev-server-plugin.d.ts +5 -0
  65. package/dist/esm/nitro/dev-server-plugin.js +128 -0
  66. package/dist/esm/nitro/dev-server-plugin.js.map +1 -0
  67. package/dist/esm/nitro/nitro-plugin.d.ts +3 -0
  68. package/dist/esm/nitro/nitro-plugin.js +128 -0
  69. package/dist/esm/nitro/nitro-plugin.js.map +1 -0
  70. package/dist/esm/plugin.d.ts +2713 -0
  71. package/dist/esm/plugin.js +117 -0
  72. package/dist/esm/plugin.js.map +1 -0
  73. package/dist/esm/prerender.d.ts +8 -0
  74. package/dist/esm/prerender.js +171 -0
  75. package/dist/esm/prerender.js.map +1 -0
  76. package/dist/esm/queue.d.ts +32 -0
  77. package/dist/esm/queue.js +131 -0
  78. package/dist/esm/queue.js.map +1 -0
  79. package/dist/esm/routesManifestPlugin.d.ts +3 -0
  80. package/dist/esm/routesManifestPlugin.js +165 -0
  81. package/dist/esm/routesManifestPlugin.js.map +1 -0
  82. package/dist/esm/schema.d.ts +8128 -0
  83. package/dist/esm/schema.js +136 -0
  84. package/dist/esm/schema.js.map +1 -0
  85. package/dist/esm/start-compiler-plugin.d.ts +13 -0
  86. package/dist/esm/start-compiler-plugin.js +72 -0
  87. package/dist/esm/start-compiler-plugin.js.map +1 -0
  88. package/dist/esm/start-server-routes-plugin/config.d.ts +49 -0
  89. package/dist/esm/start-server-routes-plugin/plugin.d.ts +3 -0
  90. package/dist/esm/start-server-routes-plugin/plugin.js +608 -0
  91. package/dist/esm/start-server-routes-plugin/plugin.js.map +1 -0
  92. package/dist/esm/start-server-routes-plugin/template.d.ts +34 -0
  93. package/dist/esm/start-server-routes-plugin/template.js +111 -0
  94. package/dist/esm/start-server-routes-plugin/template.js.map +1 -0
  95. package/package.json +72 -0
  96. package/src/compilers.ts +759 -0
  97. package/src/extractHtmlScripts.ts +19 -0
  98. package/src/index.ts +15 -0
  99. package/src/nitro/build-nitro.ts +27 -0
  100. package/src/nitro/build-sitemap.ts +79 -0
  101. package/src/nitro/dev-server-plugin.ts +159 -0
  102. package/src/nitro/nitro-plugin.ts +161 -0
  103. package/src/plugin.ts +145 -0
  104. package/src/prerender.ts +245 -0
  105. package/src/queue.ts +153 -0
  106. package/src/routesManifestPlugin.ts +216 -0
  107. package/src/schema.ts +193 -0
  108. package/src/start-compiler-plugin.ts +111 -0
  109. package/src/start-server-routes-plugin/config.ts +8 -0
  110. package/src/start-server-routes-plugin/plugin.ts +890 -0
  111. package/src/start-server-routes-plugin/template.ts +164 -0
@@ -0,0 +1,2713 @@
1
+ import { PluginOption } from 'vite';
2
+ import { z } from 'zod';
3
+ import { CompileStartFrameworkOptions } from './compilers.cjs';
4
+ declare const TanStackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject<{
5
+ tsr: z.ZodDefault<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
6
+ target: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodEnum<["react", "solid"]>>>>;
7
+ virtualRouteConfig: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodType<import('@tanstack/virtual-file-routes').VirtualRootRoute, z.ZodTypeDef, import('@tanstack/virtual-file-routes').VirtualRootRoute>, z.ZodString]>>>;
8
+ routeFilePrefix: z.ZodOptional<z.ZodOptional<z.ZodString>>;
9
+ routeFileIgnorePrefix: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodString>>>;
10
+ routeFileIgnorePattern: z.ZodOptional<z.ZodOptional<z.ZodString>>;
11
+ routesDirectory: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodString>>>;
12
+ quoteStyle: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodEnum<["single", "double"]>>>>;
13
+ semicolons: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>;
14
+ disableLogging: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>;
15
+ routeTreeFileHeader: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
16
+ indexToken: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodString>>>;
17
+ routeToken: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodString>>>;
18
+ pathParamsAllowedCharacters: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodEnum<[";", ":", "@", "&", "=", "+", "$", ","]>, "many">>>;
19
+ generatedRouteTree: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodString>>>;
20
+ disableTypes: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>;
21
+ verboseFileRoutes: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
22
+ addExtensions: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>;
23
+ disableManifestGeneration: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>;
24
+ enableRouteTreeFormatting: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>;
25
+ routeTreeFileFooter: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
26
+ autoCodeSplitting: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
27
+ customScaffolding: z.ZodOptional<z.ZodOptional<z.ZodObject<{
28
+ routeTemplate: z.ZodOptional<z.ZodString>;
29
+ lazyRouteTemplate: z.ZodOptional<z.ZodString>;
30
+ }, "strip", z.ZodTypeAny, {
31
+ routeTemplate?: string | undefined;
32
+ lazyRouteTemplate?: string | undefined;
33
+ }, {
34
+ routeTemplate?: string | undefined;
35
+ lazyRouteTemplate?: string | undefined;
36
+ }>>>;
37
+ experimental: z.ZodOptional<z.ZodOptional<z.ZodObject<{
38
+ enableCodeSplitting: z.ZodOptional<z.ZodBoolean>;
39
+ }, "strip", z.ZodTypeAny, {
40
+ enableCodeSplitting?: boolean | undefined;
41
+ }, {
42
+ enableCodeSplitting?: boolean | undefined;
43
+ }>>>;
44
+ }, {
45
+ srcDirectory: z.ZodDefault<z.ZodOptional<z.ZodString>>;
46
+ }>, "strip", z.ZodTypeAny, {
47
+ srcDirectory: string;
48
+ target?: "react" | "solid" | undefined;
49
+ virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
50
+ routeFilePrefix?: string | undefined;
51
+ routeFileIgnorePrefix?: string | undefined;
52
+ routeFileIgnorePattern?: string | undefined;
53
+ routesDirectory?: string | undefined;
54
+ quoteStyle?: "single" | "double" | undefined;
55
+ semicolons?: boolean | undefined;
56
+ disableLogging?: boolean | undefined;
57
+ routeTreeFileHeader?: string[] | undefined;
58
+ indexToken?: string | undefined;
59
+ routeToken?: string | undefined;
60
+ pathParamsAllowedCharacters?: (";" | ":" | "@" | "&" | "=" | "+" | "$" | ",")[] | undefined;
61
+ generatedRouteTree?: string | undefined;
62
+ disableTypes?: boolean | undefined;
63
+ verboseFileRoutes?: boolean | undefined;
64
+ addExtensions?: boolean | undefined;
65
+ disableManifestGeneration?: boolean | undefined;
66
+ enableRouteTreeFormatting?: boolean | undefined;
67
+ routeTreeFileFooter?: string[] | undefined;
68
+ autoCodeSplitting?: boolean | undefined;
69
+ customScaffolding?: {
70
+ routeTemplate?: string | undefined;
71
+ lazyRouteTemplate?: string | undefined;
72
+ } | undefined;
73
+ experimental?: {
74
+ enableCodeSplitting?: boolean | undefined;
75
+ } | undefined;
76
+ }, {
77
+ target?: "react" | "solid" | undefined;
78
+ virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
79
+ routeFilePrefix?: string | undefined;
80
+ routeFileIgnorePrefix?: string | undefined;
81
+ routeFileIgnorePattern?: string | undefined;
82
+ routesDirectory?: string | undefined;
83
+ quoteStyle?: "single" | "double" | undefined;
84
+ semicolons?: boolean | undefined;
85
+ disableLogging?: boolean | undefined;
86
+ routeTreeFileHeader?: string[] | undefined;
87
+ indexToken?: string | undefined;
88
+ routeToken?: string | undefined;
89
+ pathParamsAllowedCharacters?: (";" | ":" | "@" | "&" | "=" | "+" | "$" | ",")[] | undefined;
90
+ generatedRouteTree?: string | undefined;
91
+ disableTypes?: boolean | undefined;
92
+ verboseFileRoutes?: boolean | undefined;
93
+ addExtensions?: boolean | undefined;
94
+ disableManifestGeneration?: boolean | undefined;
95
+ enableRouteTreeFormatting?: boolean | undefined;
96
+ routeTreeFileFooter?: string[] | undefined;
97
+ autoCodeSplitting?: boolean | undefined;
98
+ customScaffolding?: {
99
+ routeTemplate?: string | undefined;
100
+ lazyRouteTemplate?: string | undefined;
101
+ } | undefined;
102
+ experimental?: {
103
+ enableCodeSplitting?: boolean | undefined;
104
+ } | undefined;
105
+ srcDirectory?: string | undefined;
106
+ }>>>;
107
+ client: z.ZodDefault<z.ZodOptional<z.ZodObject<{
108
+ entry: z.ZodOptional<z.ZodString>;
109
+ base: z.ZodDefault<z.ZodOptional<z.ZodString>>;
110
+ }, "strip", z.ZodTypeAny, {
111
+ base: string;
112
+ entry?: string | undefined;
113
+ }, {
114
+ entry?: string | undefined;
115
+ base?: string | undefined;
116
+ }>>>;
117
+ server: z.ZodDefault<z.ZodOptional<z.ZodObject<{
118
+ entry: z.ZodOptional<z.ZodString>;
119
+ }, "strip", z.ZodTypeAny, {
120
+ entry?: string | undefined;
121
+ }, {
122
+ entry?: string | undefined;
123
+ }>>>;
124
+ serverFns: z.ZodDefault<z.ZodOptional<z.ZodObject<{
125
+ base: z.ZodDefault<z.ZodOptional<z.ZodString>>;
126
+ }, "strip", z.ZodTypeAny, {
127
+ base: string;
128
+ }, {
129
+ base?: string | undefined;
130
+ }>>>;
131
+ public: z.ZodDefault<z.ZodOptional<z.ZodObject<{
132
+ dir: z.ZodDefault<z.ZodOptional<z.ZodString>>;
133
+ base: z.ZodDefault<z.ZodOptional<z.ZodString>>;
134
+ }, "strip", z.ZodTypeAny, {
135
+ base: string;
136
+ dir: string;
137
+ }, {
138
+ base?: string | undefined;
139
+ dir?: string | undefined;
140
+ }>>>;
141
+ pages: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodObject<z.objectUtil.extendShape<{
142
+ path: z.ZodString;
143
+ sitemap: z.ZodOptional<z.ZodObject<{
144
+ exclude: z.ZodOptional<z.ZodBoolean>;
145
+ priority: z.ZodOptional<z.ZodNumber>;
146
+ changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
147
+ lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
148
+ alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
149
+ href: z.ZodString;
150
+ hreflang: z.ZodString;
151
+ }, "strip", z.ZodTypeAny, {
152
+ href: string;
153
+ hreflang: string;
154
+ }, {
155
+ href: string;
156
+ hreflang: string;
157
+ }>, "many">>;
158
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
159
+ loc: z.ZodString;
160
+ caption: z.ZodOptional<z.ZodString>;
161
+ title: z.ZodOptional<z.ZodString>;
162
+ }, "strip", z.ZodTypeAny, {
163
+ loc: string;
164
+ caption?: string | undefined;
165
+ title?: string | undefined;
166
+ }, {
167
+ loc: string;
168
+ caption?: string | undefined;
169
+ title?: string | undefined;
170
+ }>, "many">>;
171
+ news: z.ZodOptional<z.ZodObject<{
172
+ publication: z.ZodObject<{
173
+ name: z.ZodString;
174
+ language: z.ZodString;
175
+ }, "strip", z.ZodTypeAny, {
176
+ name: string;
177
+ language: string;
178
+ }, {
179
+ name: string;
180
+ language: string;
181
+ }>;
182
+ publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
183
+ title: z.ZodString;
184
+ }, "strip", z.ZodTypeAny, {
185
+ title: string;
186
+ publication: {
187
+ name: string;
188
+ language: string;
189
+ };
190
+ publicationDate: string | Date;
191
+ }, {
192
+ title: string;
193
+ publication: {
194
+ name: string;
195
+ language: string;
196
+ };
197
+ publicationDate: string | Date;
198
+ }>>;
199
+ }, "strip", z.ZodTypeAny, {
200
+ lastmod?: string | Date | undefined;
201
+ exclude?: boolean | undefined;
202
+ priority?: number | undefined;
203
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
204
+ alternateRefs?: {
205
+ href: string;
206
+ hreflang: string;
207
+ }[] | undefined;
208
+ images?: {
209
+ loc: string;
210
+ caption?: string | undefined;
211
+ title?: string | undefined;
212
+ }[] | undefined;
213
+ news?: {
214
+ title: string;
215
+ publication: {
216
+ name: string;
217
+ language: string;
218
+ };
219
+ publicationDate: string | Date;
220
+ } | undefined;
221
+ }, {
222
+ lastmod?: string | Date | undefined;
223
+ exclude?: boolean | undefined;
224
+ priority?: number | undefined;
225
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
226
+ alternateRefs?: {
227
+ href: string;
228
+ hreflang: string;
229
+ }[] | undefined;
230
+ images?: {
231
+ loc: string;
232
+ caption?: string | undefined;
233
+ title?: string | undefined;
234
+ }[] | undefined;
235
+ news?: {
236
+ title: string;
237
+ publication: {
238
+ name: string;
239
+ language: string;
240
+ };
241
+ publicationDate: string | Date;
242
+ } | undefined;
243
+ }>>;
244
+ fromCrawl: z.ZodOptional<z.ZodBoolean>;
245
+ }, {
246
+ prerender: z.ZodOptional<z.ZodObject<{
247
+ enabled: z.ZodOptional<z.ZodBoolean>;
248
+ autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
249
+ crawlLinks: z.ZodOptional<z.ZodBoolean>;
250
+ retryCount: z.ZodOptional<z.ZodNumber>;
251
+ retryDelay: z.ZodOptional<z.ZodNumber>;
252
+ onSuccess: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
253
+ page: z.ZodObject<{
254
+ path: z.ZodString;
255
+ sitemap: z.ZodOptional<z.ZodObject<{
256
+ exclude: z.ZodOptional<z.ZodBoolean>;
257
+ priority: z.ZodOptional<z.ZodNumber>;
258
+ changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
259
+ lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
260
+ alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
261
+ href: z.ZodString;
262
+ hreflang: z.ZodString;
263
+ }, "strip", z.ZodTypeAny, {
264
+ href: string;
265
+ hreflang: string;
266
+ }, {
267
+ href: string;
268
+ hreflang: string;
269
+ }>, "many">>;
270
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
271
+ loc: z.ZodString;
272
+ caption: z.ZodOptional<z.ZodString>;
273
+ title: z.ZodOptional<z.ZodString>;
274
+ }, "strip", z.ZodTypeAny, {
275
+ loc: string;
276
+ caption?: string | undefined;
277
+ title?: string | undefined;
278
+ }, {
279
+ loc: string;
280
+ caption?: string | undefined;
281
+ title?: string | undefined;
282
+ }>, "many">>;
283
+ news: z.ZodOptional<z.ZodObject<{
284
+ publication: z.ZodObject<{
285
+ name: z.ZodString;
286
+ language: z.ZodString;
287
+ }, "strip", z.ZodTypeAny, {
288
+ name: string;
289
+ language: string;
290
+ }, {
291
+ name: string;
292
+ language: string;
293
+ }>;
294
+ publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
295
+ title: z.ZodString;
296
+ }, "strip", z.ZodTypeAny, {
297
+ title: string;
298
+ publication: {
299
+ name: string;
300
+ language: string;
301
+ };
302
+ publicationDate: string | Date;
303
+ }, {
304
+ title: string;
305
+ publication: {
306
+ name: string;
307
+ language: string;
308
+ };
309
+ publicationDate: string | Date;
310
+ }>>;
311
+ }, "strip", z.ZodTypeAny, {
312
+ lastmod?: string | Date | undefined;
313
+ exclude?: boolean | undefined;
314
+ priority?: number | undefined;
315
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
316
+ alternateRefs?: {
317
+ href: string;
318
+ hreflang: string;
319
+ }[] | undefined;
320
+ images?: {
321
+ loc: string;
322
+ caption?: string | undefined;
323
+ title?: string | undefined;
324
+ }[] | undefined;
325
+ news?: {
326
+ title: string;
327
+ publication: {
328
+ name: string;
329
+ language: string;
330
+ };
331
+ publicationDate: string | Date;
332
+ } | undefined;
333
+ }, {
334
+ lastmod?: string | Date | undefined;
335
+ exclude?: boolean | undefined;
336
+ priority?: number | undefined;
337
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
338
+ alternateRefs?: {
339
+ href: string;
340
+ hreflang: string;
341
+ }[] | undefined;
342
+ images?: {
343
+ loc: string;
344
+ caption?: string | undefined;
345
+ title?: string | undefined;
346
+ }[] | undefined;
347
+ news?: {
348
+ title: string;
349
+ publication: {
350
+ name: string;
351
+ language: string;
352
+ };
353
+ publicationDate: string | Date;
354
+ } | undefined;
355
+ }>>;
356
+ fromCrawl: z.ZodOptional<z.ZodBoolean>;
357
+ }, "strip", z.ZodTypeAny, {
358
+ path: string;
359
+ sitemap?: {
360
+ lastmod?: string | Date | undefined;
361
+ exclude?: boolean | undefined;
362
+ priority?: number | undefined;
363
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
364
+ alternateRefs?: {
365
+ href: string;
366
+ hreflang: string;
367
+ }[] | undefined;
368
+ images?: {
369
+ loc: string;
370
+ caption?: string | undefined;
371
+ title?: string | undefined;
372
+ }[] | undefined;
373
+ news?: {
374
+ title: string;
375
+ publication: {
376
+ name: string;
377
+ language: string;
378
+ };
379
+ publicationDate: string | Date;
380
+ } | undefined;
381
+ } | undefined;
382
+ fromCrawl?: boolean | undefined;
383
+ }, {
384
+ path: string;
385
+ sitemap?: {
386
+ lastmod?: string | Date | undefined;
387
+ exclude?: boolean | undefined;
388
+ priority?: number | undefined;
389
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
390
+ alternateRefs?: {
391
+ href: string;
392
+ hreflang: string;
393
+ }[] | undefined;
394
+ images?: {
395
+ loc: string;
396
+ caption?: string | undefined;
397
+ title?: string | undefined;
398
+ }[] | undefined;
399
+ news?: {
400
+ title: string;
401
+ publication: {
402
+ name: string;
403
+ language: string;
404
+ };
405
+ publicationDate: string | Date;
406
+ } | undefined;
407
+ } | undefined;
408
+ fromCrawl?: boolean | undefined;
409
+ }>;
410
+ html: z.ZodString;
411
+ }, "strip", z.ZodTypeAny, {
412
+ page: {
413
+ path: string;
414
+ sitemap?: {
415
+ lastmod?: string | Date | undefined;
416
+ exclude?: boolean | undefined;
417
+ priority?: number | undefined;
418
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
419
+ alternateRefs?: {
420
+ href: string;
421
+ hreflang: string;
422
+ }[] | undefined;
423
+ images?: {
424
+ loc: string;
425
+ caption?: string | undefined;
426
+ title?: string | undefined;
427
+ }[] | undefined;
428
+ news?: {
429
+ title: string;
430
+ publication: {
431
+ name: string;
432
+ language: string;
433
+ };
434
+ publicationDate: string | Date;
435
+ } | undefined;
436
+ } | undefined;
437
+ fromCrawl?: boolean | undefined;
438
+ };
439
+ html: string;
440
+ }, {
441
+ page: {
442
+ path: string;
443
+ sitemap?: {
444
+ lastmod?: string | Date | undefined;
445
+ exclude?: boolean | undefined;
446
+ priority?: number | undefined;
447
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
448
+ alternateRefs?: {
449
+ href: string;
450
+ hreflang: string;
451
+ }[] | undefined;
452
+ images?: {
453
+ loc: string;
454
+ caption?: string | undefined;
455
+ title?: string | undefined;
456
+ }[] | undefined;
457
+ news?: {
458
+ title: string;
459
+ publication: {
460
+ name: string;
461
+ language: string;
462
+ };
463
+ publicationDate: string | Date;
464
+ } | undefined;
465
+ } | undefined;
466
+ fromCrawl?: boolean | undefined;
467
+ };
468
+ html: string;
469
+ }>], z.ZodUnknown>, z.ZodAny>>;
470
+ }, "strip", z.ZodTypeAny, {
471
+ enabled?: boolean | undefined;
472
+ autoSubfolderIndex?: boolean | undefined;
473
+ crawlLinks?: boolean | undefined;
474
+ retryCount?: number | undefined;
475
+ retryDelay?: number | undefined;
476
+ onSuccess?: ((args_0: {
477
+ page: {
478
+ path: string;
479
+ sitemap?: {
480
+ lastmod?: string | Date | undefined;
481
+ exclude?: boolean | undefined;
482
+ priority?: number | undefined;
483
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
484
+ alternateRefs?: {
485
+ href: string;
486
+ hreflang: string;
487
+ }[] | undefined;
488
+ images?: {
489
+ loc: string;
490
+ caption?: string | undefined;
491
+ title?: string | undefined;
492
+ }[] | undefined;
493
+ news?: {
494
+ title: string;
495
+ publication: {
496
+ name: string;
497
+ language: string;
498
+ };
499
+ publicationDate: string | Date;
500
+ } | undefined;
501
+ } | undefined;
502
+ fromCrawl?: boolean | undefined;
503
+ };
504
+ html: string;
505
+ }, ...args: unknown[]) => any) | undefined;
506
+ }, {
507
+ enabled?: boolean | undefined;
508
+ autoSubfolderIndex?: boolean | undefined;
509
+ crawlLinks?: boolean | undefined;
510
+ retryCount?: number | undefined;
511
+ retryDelay?: number | undefined;
512
+ onSuccess?: ((args_0: {
513
+ page: {
514
+ path: string;
515
+ sitemap?: {
516
+ lastmod?: string | Date | undefined;
517
+ exclude?: boolean | undefined;
518
+ priority?: number | undefined;
519
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
520
+ alternateRefs?: {
521
+ href: string;
522
+ hreflang: string;
523
+ }[] | undefined;
524
+ images?: {
525
+ loc: string;
526
+ caption?: string | undefined;
527
+ title?: string | undefined;
528
+ }[] | undefined;
529
+ news?: {
530
+ title: string;
531
+ publication: {
532
+ name: string;
533
+ language: string;
534
+ };
535
+ publicationDate: string | Date;
536
+ } | undefined;
537
+ } | undefined;
538
+ fromCrawl?: boolean | undefined;
539
+ };
540
+ html: string;
541
+ }, ...args: unknown[]) => any) | undefined;
542
+ }>>;
543
+ }>, "strip", z.ZodTypeAny, {
544
+ path: string;
545
+ prerender?: {
546
+ enabled?: boolean | undefined;
547
+ autoSubfolderIndex?: boolean | undefined;
548
+ crawlLinks?: boolean | undefined;
549
+ retryCount?: number | undefined;
550
+ retryDelay?: number | undefined;
551
+ onSuccess?: ((args_0: {
552
+ page: {
553
+ path: string;
554
+ sitemap?: {
555
+ lastmod?: string | Date | undefined;
556
+ exclude?: boolean | undefined;
557
+ priority?: number | undefined;
558
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
559
+ alternateRefs?: {
560
+ href: string;
561
+ hreflang: string;
562
+ }[] | undefined;
563
+ images?: {
564
+ loc: string;
565
+ caption?: string | undefined;
566
+ title?: string | undefined;
567
+ }[] | undefined;
568
+ news?: {
569
+ title: string;
570
+ publication: {
571
+ name: string;
572
+ language: string;
573
+ };
574
+ publicationDate: string | Date;
575
+ } | undefined;
576
+ } | undefined;
577
+ fromCrawl?: boolean | undefined;
578
+ };
579
+ html: string;
580
+ }, ...args: unknown[]) => any) | undefined;
581
+ } | undefined;
582
+ sitemap?: {
583
+ lastmod?: string | Date | undefined;
584
+ exclude?: boolean | undefined;
585
+ priority?: number | undefined;
586
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
587
+ alternateRefs?: {
588
+ href: string;
589
+ hreflang: string;
590
+ }[] | undefined;
591
+ images?: {
592
+ loc: string;
593
+ caption?: string | undefined;
594
+ title?: string | undefined;
595
+ }[] | undefined;
596
+ news?: {
597
+ title: string;
598
+ publication: {
599
+ name: string;
600
+ language: string;
601
+ };
602
+ publicationDate: string | Date;
603
+ } | undefined;
604
+ } | undefined;
605
+ fromCrawl?: boolean | undefined;
606
+ }, {
607
+ path: string;
608
+ prerender?: {
609
+ enabled?: boolean | undefined;
610
+ autoSubfolderIndex?: boolean | undefined;
611
+ crawlLinks?: boolean | undefined;
612
+ retryCount?: number | undefined;
613
+ retryDelay?: number | undefined;
614
+ onSuccess?: ((args_0: {
615
+ page: {
616
+ path: string;
617
+ sitemap?: {
618
+ lastmod?: string | Date | undefined;
619
+ exclude?: boolean | undefined;
620
+ priority?: number | undefined;
621
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
622
+ alternateRefs?: {
623
+ href: string;
624
+ hreflang: string;
625
+ }[] | undefined;
626
+ images?: {
627
+ loc: string;
628
+ caption?: string | undefined;
629
+ title?: string | undefined;
630
+ }[] | undefined;
631
+ news?: {
632
+ title: string;
633
+ publication: {
634
+ name: string;
635
+ language: string;
636
+ };
637
+ publicationDate: string | Date;
638
+ } | undefined;
639
+ } | undefined;
640
+ fromCrawl?: boolean | undefined;
641
+ };
642
+ html: string;
643
+ }, ...args: unknown[]) => any) | undefined;
644
+ } | undefined;
645
+ sitemap?: {
646
+ lastmod?: string | Date | undefined;
647
+ exclude?: boolean | undefined;
648
+ priority?: number | undefined;
649
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
650
+ alternateRefs?: {
651
+ href: string;
652
+ hreflang: string;
653
+ }[] | undefined;
654
+ images?: {
655
+ loc: string;
656
+ caption?: string | undefined;
657
+ title?: string | undefined;
658
+ }[] | undefined;
659
+ news?: {
660
+ title: string;
661
+ publication: {
662
+ name: string;
663
+ language: string;
664
+ };
665
+ publicationDate: string | Date;
666
+ } | undefined;
667
+ } | undefined;
668
+ fromCrawl?: boolean | undefined;
669
+ }>]>, "many">>>;
670
+ sitemap: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
671
+ enabled: z.ZodOptional<z.ZodBoolean>;
672
+ autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
673
+ crawlLinks: z.ZodOptional<z.ZodBoolean>;
674
+ retryCount: z.ZodOptional<z.ZodNumber>;
675
+ retryDelay: z.ZodOptional<z.ZodNumber>;
676
+ onSuccess: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
677
+ page: z.ZodObject<{
678
+ path: z.ZodString;
679
+ sitemap: z.ZodOptional<z.ZodObject<{
680
+ exclude: z.ZodOptional<z.ZodBoolean>;
681
+ priority: z.ZodOptional<z.ZodNumber>;
682
+ changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
683
+ lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
684
+ alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
685
+ href: z.ZodString;
686
+ hreflang: z.ZodString;
687
+ }, "strip", z.ZodTypeAny, {
688
+ href: string;
689
+ hreflang: string;
690
+ }, {
691
+ href: string;
692
+ hreflang: string;
693
+ }>, "many">>;
694
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
695
+ loc: z.ZodString;
696
+ caption: z.ZodOptional<z.ZodString>;
697
+ title: z.ZodOptional<z.ZodString>;
698
+ }, "strip", z.ZodTypeAny, {
699
+ loc: string;
700
+ caption?: string | undefined;
701
+ title?: string | undefined;
702
+ }, {
703
+ loc: string;
704
+ caption?: string | undefined;
705
+ title?: string | undefined;
706
+ }>, "many">>;
707
+ news: z.ZodOptional<z.ZodObject<{
708
+ publication: z.ZodObject<{
709
+ name: z.ZodString;
710
+ language: z.ZodString;
711
+ }, "strip", z.ZodTypeAny, {
712
+ name: string;
713
+ language: string;
714
+ }, {
715
+ name: string;
716
+ language: string;
717
+ }>;
718
+ publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
719
+ title: z.ZodString;
720
+ }, "strip", z.ZodTypeAny, {
721
+ title: string;
722
+ publication: {
723
+ name: string;
724
+ language: string;
725
+ };
726
+ publicationDate: string | Date;
727
+ }, {
728
+ title: string;
729
+ publication: {
730
+ name: string;
731
+ language: string;
732
+ };
733
+ publicationDate: string | Date;
734
+ }>>;
735
+ }, "strip", z.ZodTypeAny, {
736
+ lastmod?: string | Date | undefined;
737
+ exclude?: boolean | undefined;
738
+ priority?: number | undefined;
739
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
740
+ alternateRefs?: {
741
+ href: string;
742
+ hreflang: string;
743
+ }[] | undefined;
744
+ images?: {
745
+ loc: string;
746
+ caption?: string | undefined;
747
+ title?: string | undefined;
748
+ }[] | undefined;
749
+ news?: {
750
+ title: string;
751
+ publication: {
752
+ name: string;
753
+ language: string;
754
+ };
755
+ publicationDate: string | Date;
756
+ } | undefined;
757
+ }, {
758
+ lastmod?: string | Date | undefined;
759
+ exclude?: boolean | undefined;
760
+ priority?: number | undefined;
761
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
762
+ alternateRefs?: {
763
+ href: string;
764
+ hreflang: string;
765
+ }[] | undefined;
766
+ images?: {
767
+ loc: string;
768
+ caption?: string | undefined;
769
+ title?: string | undefined;
770
+ }[] | undefined;
771
+ news?: {
772
+ title: string;
773
+ publication: {
774
+ name: string;
775
+ language: string;
776
+ };
777
+ publicationDate: string | Date;
778
+ } | undefined;
779
+ }>>;
780
+ fromCrawl: z.ZodOptional<z.ZodBoolean>;
781
+ }, "strip", z.ZodTypeAny, {
782
+ path: string;
783
+ sitemap?: {
784
+ lastmod?: string | Date | undefined;
785
+ exclude?: boolean | undefined;
786
+ priority?: number | undefined;
787
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
788
+ alternateRefs?: {
789
+ href: string;
790
+ hreflang: string;
791
+ }[] | undefined;
792
+ images?: {
793
+ loc: string;
794
+ caption?: string | undefined;
795
+ title?: string | undefined;
796
+ }[] | undefined;
797
+ news?: {
798
+ title: string;
799
+ publication: {
800
+ name: string;
801
+ language: string;
802
+ };
803
+ publicationDate: string | Date;
804
+ } | undefined;
805
+ } | undefined;
806
+ fromCrawl?: boolean | undefined;
807
+ }, {
808
+ path: string;
809
+ sitemap?: {
810
+ lastmod?: string | Date | undefined;
811
+ exclude?: boolean | undefined;
812
+ priority?: number | undefined;
813
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
814
+ alternateRefs?: {
815
+ href: string;
816
+ hreflang: string;
817
+ }[] | undefined;
818
+ images?: {
819
+ loc: string;
820
+ caption?: string | undefined;
821
+ title?: string | undefined;
822
+ }[] | undefined;
823
+ news?: {
824
+ title: string;
825
+ publication: {
826
+ name: string;
827
+ language: string;
828
+ };
829
+ publicationDate: string | Date;
830
+ } | undefined;
831
+ } | undefined;
832
+ fromCrawl?: boolean | undefined;
833
+ }>;
834
+ html: z.ZodString;
835
+ }, "strip", z.ZodTypeAny, {
836
+ page: {
837
+ path: string;
838
+ sitemap?: {
839
+ lastmod?: string | Date | undefined;
840
+ exclude?: boolean | undefined;
841
+ priority?: number | undefined;
842
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
843
+ alternateRefs?: {
844
+ href: string;
845
+ hreflang: string;
846
+ }[] | undefined;
847
+ images?: {
848
+ loc: string;
849
+ caption?: string | undefined;
850
+ title?: string | undefined;
851
+ }[] | undefined;
852
+ news?: {
853
+ title: string;
854
+ publication: {
855
+ name: string;
856
+ language: string;
857
+ };
858
+ publicationDate: string | Date;
859
+ } | undefined;
860
+ } | undefined;
861
+ fromCrawl?: boolean | undefined;
862
+ };
863
+ html: string;
864
+ }, {
865
+ page: {
866
+ path: string;
867
+ sitemap?: {
868
+ lastmod?: string | Date | undefined;
869
+ exclude?: boolean | undefined;
870
+ priority?: number | undefined;
871
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
872
+ alternateRefs?: {
873
+ href: string;
874
+ hreflang: string;
875
+ }[] | undefined;
876
+ images?: {
877
+ loc: string;
878
+ caption?: string | undefined;
879
+ title?: string | undefined;
880
+ }[] | undefined;
881
+ news?: {
882
+ title: string;
883
+ publication: {
884
+ name: string;
885
+ language: string;
886
+ };
887
+ publicationDate: string | Date;
888
+ } | undefined;
889
+ } | undefined;
890
+ fromCrawl?: boolean | undefined;
891
+ };
892
+ html: string;
893
+ }>], z.ZodUnknown>, z.ZodAny>>;
894
+ }, {
895
+ host: z.ZodOptional<z.ZodString>;
896
+ }>, "strip", z.ZodTypeAny, {
897
+ host?: string | undefined;
898
+ enabled?: boolean | undefined;
899
+ autoSubfolderIndex?: boolean | undefined;
900
+ crawlLinks?: boolean | undefined;
901
+ retryCount?: number | undefined;
902
+ retryDelay?: number | undefined;
903
+ onSuccess?: ((args_0: {
904
+ page: {
905
+ path: string;
906
+ sitemap?: {
907
+ lastmod?: string | Date | undefined;
908
+ exclude?: boolean | undefined;
909
+ priority?: number | undefined;
910
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
911
+ alternateRefs?: {
912
+ href: string;
913
+ hreflang: string;
914
+ }[] | undefined;
915
+ images?: {
916
+ loc: string;
917
+ caption?: string | undefined;
918
+ title?: string | undefined;
919
+ }[] | undefined;
920
+ news?: {
921
+ title: string;
922
+ publication: {
923
+ name: string;
924
+ language: string;
925
+ };
926
+ publicationDate: string | Date;
927
+ } | undefined;
928
+ } | undefined;
929
+ fromCrawl?: boolean | undefined;
930
+ };
931
+ html: string;
932
+ }, ...args: unknown[]) => any) | undefined;
933
+ }, {
934
+ host?: string | undefined;
935
+ enabled?: boolean | undefined;
936
+ autoSubfolderIndex?: boolean | undefined;
937
+ crawlLinks?: boolean | undefined;
938
+ retryCount?: number | undefined;
939
+ retryDelay?: number | undefined;
940
+ onSuccess?: ((args_0: {
941
+ page: {
942
+ path: string;
943
+ sitemap?: {
944
+ lastmod?: string | Date | undefined;
945
+ exclude?: boolean | undefined;
946
+ priority?: number | undefined;
947
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
948
+ alternateRefs?: {
949
+ href: string;
950
+ hreflang: string;
951
+ }[] | undefined;
952
+ images?: {
953
+ loc: string;
954
+ caption?: string | undefined;
955
+ title?: string | undefined;
956
+ }[] | undefined;
957
+ news?: {
958
+ title: string;
959
+ publication: {
960
+ name: string;
961
+ language: string;
962
+ };
963
+ publicationDate: string | Date;
964
+ } | undefined;
965
+ } | undefined;
966
+ fromCrawl?: boolean | undefined;
967
+ };
968
+ html: string;
969
+ }, ...args: unknown[]) => any) | undefined;
970
+ }>>;
971
+ prerender: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
972
+ enabled: z.ZodOptional<z.ZodBoolean>;
973
+ concurrency: z.ZodOptional<z.ZodNumber>;
974
+ filter: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<z.objectUtil.extendShape<{
975
+ path: z.ZodString;
976
+ sitemap: z.ZodOptional<z.ZodObject<{
977
+ exclude: z.ZodOptional<z.ZodBoolean>;
978
+ priority: z.ZodOptional<z.ZodNumber>;
979
+ changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
980
+ lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
981
+ alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
982
+ href: z.ZodString;
983
+ hreflang: z.ZodString;
984
+ }, "strip", z.ZodTypeAny, {
985
+ href: string;
986
+ hreflang: string;
987
+ }, {
988
+ href: string;
989
+ hreflang: string;
990
+ }>, "many">>;
991
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
992
+ loc: z.ZodString;
993
+ caption: z.ZodOptional<z.ZodString>;
994
+ title: z.ZodOptional<z.ZodString>;
995
+ }, "strip", z.ZodTypeAny, {
996
+ loc: string;
997
+ caption?: string | undefined;
998
+ title?: string | undefined;
999
+ }, {
1000
+ loc: string;
1001
+ caption?: string | undefined;
1002
+ title?: string | undefined;
1003
+ }>, "many">>;
1004
+ news: z.ZodOptional<z.ZodObject<{
1005
+ publication: z.ZodObject<{
1006
+ name: z.ZodString;
1007
+ language: z.ZodString;
1008
+ }, "strip", z.ZodTypeAny, {
1009
+ name: string;
1010
+ language: string;
1011
+ }, {
1012
+ name: string;
1013
+ language: string;
1014
+ }>;
1015
+ publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
1016
+ title: z.ZodString;
1017
+ }, "strip", z.ZodTypeAny, {
1018
+ title: string;
1019
+ publication: {
1020
+ name: string;
1021
+ language: string;
1022
+ };
1023
+ publicationDate: string | Date;
1024
+ }, {
1025
+ title: string;
1026
+ publication: {
1027
+ name: string;
1028
+ language: string;
1029
+ };
1030
+ publicationDate: string | Date;
1031
+ }>>;
1032
+ }, "strip", z.ZodTypeAny, {
1033
+ lastmod?: string | Date | undefined;
1034
+ exclude?: boolean | undefined;
1035
+ priority?: number | undefined;
1036
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1037
+ alternateRefs?: {
1038
+ href: string;
1039
+ hreflang: string;
1040
+ }[] | undefined;
1041
+ images?: {
1042
+ loc: string;
1043
+ caption?: string | undefined;
1044
+ title?: string | undefined;
1045
+ }[] | undefined;
1046
+ news?: {
1047
+ title: string;
1048
+ publication: {
1049
+ name: string;
1050
+ language: string;
1051
+ };
1052
+ publicationDate: string | Date;
1053
+ } | undefined;
1054
+ }, {
1055
+ lastmod?: string | Date | undefined;
1056
+ exclude?: boolean | undefined;
1057
+ priority?: number | undefined;
1058
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1059
+ alternateRefs?: {
1060
+ href: string;
1061
+ hreflang: string;
1062
+ }[] | undefined;
1063
+ images?: {
1064
+ loc: string;
1065
+ caption?: string | undefined;
1066
+ title?: string | undefined;
1067
+ }[] | undefined;
1068
+ news?: {
1069
+ title: string;
1070
+ publication: {
1071
+ name: string;
1072
+ language: string;
1073
+ };
1074
+ publicationDate: string | Date;
1075
+ } | undefined;
1076
+ }>>;
1077
+ fromCrawl: z.ZodOptional<z.ZodBoolean>;
1078
+ }, {
1079
+ prerender: z.ZodOptional<z.ZodObject<{
1080
+ enabled: z.ZodOptional<z.ZodBoolean>;
1081
+ autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
1082
+ crawlLinks: z.ZodOptional<z.ZodBoolean>;
1083
+ retryCount: z.ZodOptional<z.ZodNumber>;
1084
+ retryDelay: z.ZodOptional<z.ZodNumber>;
1085
+ onSuccess: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
1086
+ page: z.ZodObject<{
1087
+ path: z.ZodString;
1088
+ sitemap: z.ZodOptional<z.ZodObject<{
1089
+ exclude: z.ZodOptional<z.ZodBoolean>;
1090
+ priority: z.ZodOptional<z.ZodNumber>;
1091
+ changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
1092
+ lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
1093
+ alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
1094
+ href: z.ZodString;
1095
+ hreflang: z.ZodString;
1096
+ }, "strip", z.ZodTypeAny, {
1097
+ href: string;
1098
+ hreflang: string;
1099
+ }, {
1100
+ href: string;
1101
+ hreflang: string;
1102
+ }>, "many">>;
1103
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
1104
+ loc: z.ZodString;
1105
+ caption: z.ZodOptional<z.ZodString>;
1106
+ title: z.ZodOptional<z.ZodString>;
1107
+ }, "strip", z.ZodTypeAny, {
1108
+ loc: string;
1109
+ caption?: string | undefined;
1110
+ title?: string | undefined;
1111
+ }, {
1112
+ loc: string;
1113
+ caption?: string | undefined;
1114
+ title?: string | undefined;
1115
+ }>, "many">>;
1116
+ news: z.ZodOptional<z.ZodObject<{
1117
+ publication: z.ZodObject<{
1118
+ name: z.ZodString;
1119
+ language: z.ZodString;
1120
+ }, "strip", z.ZodTypeAny, {
1121
+ name: string;
1122
+ language: string;
1123
+ }, {
1124
+ name: string;
1125
+ language: string;
1126
+ }>;
1127
+ publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
1128
+ title: z.ZodString;
1129
+ }, "strip", z.ZodTypeAny, {
1130
+ title: string;
1131
+ publication: {
1132
+ name: string;
1133
+ language: string;
1134
+ };
1135
+ publicationDate: string | Date;
1136
+ }, {
1137
+ title: string;
1138
+ publication: {
1139
+ name: string;
1140
+ language: string;
1141
+ };
1142
+ publicationDate: string | Date;
1143
+ }>>;
1144
+ }, "strip", z.ZodTypeAny, {
1145
+ lastmod?: string | Date | undefined;
1146
+ exclude?: boolean | undefined;
1147
+ priority?: number | undefined;
1148
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1149
+ alternateRefs?: {
1150
+ href: string;
1151
+ hreflang: string;
1152
+ }[] | undefined;
1153
+ images?: {
1154
+ loc: string;
1155
+ caption?: string | undefined;
1156
+ title?: string | undefined;
1157
+ }[] | undefined;
1158
+ news?: {
1159
+ title: string;
1160
+ publication: {
1161
+ name: string;
1162
+ language: string;
1163
+ };
1164
+ publicationDate: string | Date;
1165
+ } | undefined;
1166
+ }, {
1167
+ lastmod?: string | Date | undefined;
1168
+ exclude?: boolean | undefined;
1169
+ priority?: number | undefined;
1170
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1171
+ alternateRefs?: {
1172
+ href: string;
1173
+ hreflang: string;
1174
+ }[] | undefined;
1175
+ images?: {
1176
+ loc: string;
1177
+ caption?: string | undefined;
1178
+ title?: string | undefined;
1179
+ }[] | undefined;
1180
+ news?: {
1181
+ title: string;
1182
+ publication: {
1183
+ name: string;
1184
+ language: string;
1185
+ };
1186
+ publicationDate: string | Date;
1187
+ } | undefined;
1188
+ }>>;
1189
+ fromCrawl: z.ZodOptional<z.ZodBoolean>;
1190
+ }, "strip", z.ZodTypeAny, {
1191
+ path: string;
1192
+ sitemap?: {
1193
+ lastmod?: string | Date | undefined;
1194
+ exclude?: boolean | undefined;
1195
+ priority?: number | undefined;
1196
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1197
+ alternateRefs?: {
1198
+ href: string;
1199
+ hreflang: string;
1200
+ }[] | undefined;
1201
+ images?: {
1202
+ loc: string;
1203
+ caption?: string | undefined;
1204
+ title?: string | undefined;
1205
+ }[] | undefined;
1206
+ news?: {
1207
+ title: string;
1208
+ publication: {
1209
+ name: string;
1210
+ language: string;
1211
+ };
1212
+ publicationDate: string | Date;
1213
+ } | undefined;
1214
+ } | undefined;
1215
+ fromCrawl?: boolean | undefined;
1216
+ }, {
1217
+ path: string;
1218
+ sitemap?: {
1219
+ lastmod?: string | Date | undefined;
1220
+ exclude?: boolean | undefined;
1221
+ priority?: number | undefined;
1222
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1223
+ alternateRefs?: {
1224
+ href: string;
1225
+ hreflang: string;
1226
+ }[] | undefined;
1227
+ images?: {
1228
+ loc: string;
1229
+ caption?: string | undefined;
1230
+ title?: string | undefined;
1231
+ }[] | undefined;
1232
+ news?: {
1233
+ title: string;
1234
+ publication: {
1235
+ name: string;
1236
+ language: string;
1237
+ };
1238
+ publicationDate: string | Date;
1239
+ } | undefined;
1240
+ } | undefined;
1241
+ fromCrawl?: boolean | undefined;
1242
+ }>;
1243
+ html: z.ZodString;
1244
+ }, "strip", z.ZodTypeAny, {
1245
+ page: {
1246
+ path: string;
1247
+ sitemap?: {
1248
+ lastmod?: string | Date | undefined;
1249
+ exclude?: boolean | undefined;
1250
+ priority?: number | undefined;
1251
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1252
+ alternateRefs?: {
1253
+ href: string;
1254
+ hreflang: string;
1255
+ }[] | undefined;
1256
+ images?: {
1257
+ loc: string;
1258
+ caption?: string | undefined;
1259
+ title?: string | undefined;
1260
+ }[] | undefined;
1261
+ news?: {
1262
+ title: string;
1263
+ publication: {
1264
+ name: string;
1265
+ language: string;
1266
+ };
1267
+ publicationDate: string | Date;
1268
+ } | undefined;
1269
+ } | undefined;
1270
+ fromCrawl?: boolean | undefined;
1271
+ };
1272
+ html: string;
1273
+ }, {
1274
+ page: {
1275
+ path: string;
1276
+ sitemap?: {
1277
+ lastmod?: string | Date | undefined;
1278
+ exclude?: boolean | undefined;
1279
+ priority?: number | undefined;
1280
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1281
+ alternateRefs?: {
1282
+ href: string;
1283
+ hreflang: string;
1284
+ }[] | undefined;
1285
+ images?: {
1286
+ loc: string;
1287
+ caption?: string | undefined;
1288
+ title?: string | undefined;
1289
+ }[] | undefined;
1290
+ news?: {
1291
+ title: string;
1292
+ publication: {
1293
+ name: string;
1294
+ language: string;
1295
+ };
1296
+ publicationDate: string | Date;
1297
+ } | undefined;
1298
+ } | undefined;
1299
+ fromCrawl?: boolean | undefined;
1300
+ };
1301
+ html: string;
1302
+ }>], z.ZodUnknown>, z.ZodAny>>;
1303
+ }, "strip", z.ZodTypeAny, {
1304
+ enabled?: boolean | undefined;
1305
+ autoSubfolderIndex?: boolean | undefined;
1306
+ crawlLinks?: boolean | undefined;
1307
+ retryCount?: number | undefined;
1308
+ retryDelay?: number | undefined;
1309
+ onSuccess?: ((args_0: {
1310
+ page: {
1311
+ path: string;
1312
+ sitemap?: {
1313
+ lastmod?: string | Date | undefined;
1314
+ exclude?: boolean | undefined;
1315
+ priority?: number | undefined;
1316
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1317
+ alternateRefs?: {
1318
+ href: string;
1319
+ hreflang: string;
1320
+ }[] | undefined;
1321
+ images?: {
1322
+ loc: string;
1323
+ caption?: string | undefined;
1324
+ title?: string | undefined;
1325
+ }[] | undefined;
1326
+ news?: {
1327
+ title: string;
1328
+ publication: {
1329
+ name: string;
1330
+ language: string;
1331
+ };
1332
+ publicationDate: string | Date;
1333
+ } | undefined;
1334
+ } | undefined;
1335
+ fromCrawl?: boolean | undefined;
1336
+ };
1337
+ html: string;
1338
+ }, ...args: unknown[]) => any) | undefined;
1339
+ }, {
1340
+ enabled?: boolean | undefined;
1341
+ autoSubfolderIndex?: boolean | undefined;
1342
+ crawlLinks?: boolean | undefined;
1343
+ retryCount?: number | undefined;
1344
+ retryDelay?: number | undefined;
1345
+ onSuccess?: ((args_0: {
1346
+ page: {
1347
+ path: string;
1348
+ sitemap?: {
1349
+ lastmod?: string | Date | undefined;
1350
+ exclude?: boolean | undefined;
1351
+ priority?: number | undefined;
1352
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1353
+ alternateRefs?: {
1354
+ href: string;
1355
+ hreflang: string;
1356
+ }[] | undefined;
1357
+ images?: {
1358
+ loc: string;
1359
+ caption?: string | undefined;
1360
+ title?: string | undefined;
1361
+ }[] | undefined;
1362
+ news?: {
1363
+ title: string;
1364
+ publication: {
1365
+ name: string;
1366
+ language: string;
1367
+ };
1368
+ publicationDate: string | Date;
1369
+ } | undefined;
1370
+ } | undefined;
1371
+ fromCrawl?: boolean | undefined;
1372
+ };
1373
+ html: string;
1374
+ }, ...args: unknown[]) => any) | undefined;
1375
+ }>>;
1376
+ }>, "strip", z.ZodTypeAny, {
1377
+ path: string;
1378
+ prerender?: {
1379
+ enabled?: boolean | undefined;
1380
+ autoSubfolderIndex?: boolean | undefined;
1381
+ crawlLinks?: boolean | undefined;
1382
+ retryCount?: number | undefined;
1383
+ retryDelay?: number | undefined;
1384
+ onSuccess?: ((args_0: {
1385
+ page: {
1386
+ path: string;
1387
+ sitemap?: {
1388
+ lastmod?: string | Date | undefined;
1389
+ exclude?: boolean | undefined;
1390
+ priority?: number | undefined;
1391
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1392
+ alternateRefs?: {
1393
+ href: string;
1394
+ hreflang: string;
1395
+ }[] | undefined;
1396
+ images?: {
1397
+ loc: string;
1398
+ caption?: string | undefined;
1399
+ title?: string | undefined;
1400
+ }[] | undefined;
1401
+ news?: {
1402
+ title: string;
1403
+ publication: {
1404
+ name: string;
1405
+ language: string;
1406
+ };
1407
+ publicationDate: string | Date;
1408
+ } | undefined;
1409
+ } | undefined;
1410
+ fromCrawl?: boolean | undefined;
1411
+ };
1412
+ html: string;
1413
+ }, ...args: unknown[]) => any) | undefined;
1414
+ } | undefined;
1415
+ sitemap?: {
1416
+ lastmod?: string | Date | undefined;
1417
+ exclude?: boolean | undefined;
1418
+ priority?: number | undefined;
1419
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1420
+ alternateRefs?: {
1421
+ href: string;
1422
+ hreflang: string;
1423
+ }[] | undefined;
1424
+ images?: {
1425
+ loc: string;
1426
+ caption?: string | undefined;
1427
+ title?: string | undefined;
1428
+ }[] | undefined;
1429
+ news?: {
1430
+ title: string;
1431
+ publication: {
1432
+ name: string;
1433
+ language: string;
1434
+ };
1435
+ publicationDate: string | Date;
1436
+ } | undefined;
1437
+ } | undefined;
1438
+ fromCrawl?: boolean | undefined;
1439
+ }, {
1440
+ path: string;
1441
+ prerender?: {
1442
+ enabled?: boolean | undefined;
1443
+ autoSubfolderIndex?: boolean | undefined;
1444
+ crawlLinks?: boolean | undefined;
1445
+ retryCount?: number | undefined;
1446
+ retryDelay?: number | undefined;
1447
+ onSuccess?: ((args_0: {
1448
+ page: {
1449
+ path: string;
1450
+ sitemap?: {
1451
+ lastmod?: string | Date | undefined;
1452
+ exclude?: boolean | undefined;
1453
+ priority?: number | undefined;
1454
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1455
+ alternateRefs?: {
1456
+ href: string;
1457
+ hreflang: string;
1458
+ }[] | undefined;
1459
+ images?: {
1460
+ loc: string;
1461
+ caption?: string | undefined;
1462
+ title?: string | undefined;
1463
+ }[] | undefined;
1464
+ news?: {
1465
+ title: string;
1466
+ publication: {
1467
+ name: string;
1468
+ language: string;
1469
+ };
1470
+ publicationDate: string | Date;
1471
+ } | undefined;
1472
+ } | undefined;
1473
+ fromCrawl?: boolean | undefined;
1474
+ };
1475
+ html: string;
1476
+ }, ...args: unknown[]) => any) | undefined;
1477
+ } | undefined;
1478
+ sitemap?: {
1479
+ lastmod?: string | Date | undefined;
1480
+ exclude?: boolean | undefined;
1481
+ priority?: number | undefined;
1482
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1483
+ alternateRefs?: {
1484
+ href: string;
1485
+ hreflang: string;
1486
+ }[] | undefined;
1487
+ images?: {
1488
+ loc: string;
1489
+ caption?: string | undefined;
1490
+ title?: string | undefined;
1491
+ }[] | undefined;
1492
+ news?: {
1493
+ title: string;
1494
+ publication: {
1495
+ name: string;
1496
+ language: string;
1497
+ };
1498
+ publicationDate: string | Date;
1499
+ } | undefined;
1500
+ } | undefined;
1501
+ fromCrawl?: boolean | undefined;
1502
+ }>], z.ZodUnknown>, z.ZodAny>>;
1503
+ failOnError: z.ZodOptional<z.ZodBoolean>;
1504
+ }, "strip", z.ZodTypeAny, {
1505
+ filter?: ((args_0: {
1506
+ path: string;
1507
+ prerender?: {
1508
+ enabled?: boolean | undefined;
1509
+ autoSubfolderIndex?: boolean | undefined;
1510
+ crawlLinks?: boolean | undefined;
1511
+ retryCount?: number | undefined;
1512
+ retryDelay?: number | undefined;
1513
+ onSuccess?: ((args_0: {
1514
+ page: {
1515
+ path: string;
1516
+ sitemap?: {
1517
+ lastmod?: string | Date | undefined;
1518
+ exclude?: boolean | undefined;
1519
+ priority?: number | undefined;
1520
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1521
+ alternateRefs?: {
1522
+ href: string;
1523
+ hreflang: string;
1524
+ }[] | undefined;
1525
+ images?: {
1526
+ loc: string;
1527
+ caption?: string | undefined;
1528
+ title?: string | undefined;
1529
+ }[] | undefined;
1530
+ news?: {
1531
+ title: string;
1532
+ publication: {
1533
+ name: string;
1534
+ language: string;
1535
+ };
1536
+ publicationDate: string | Date;
1537
+ } | undefined;
1538
+ } | undefined;
1539
+ fromCrawl?: boolean | undefined;
1540
+ };
1541
+ html: string;
1542
+ }, ...args: unknown[]) => any) | undefined;
1543
+ } | undefined;
1544
+ sitemap?: {
1545
+ lastmod?: string | Date | undefined;
1546
+ exclude?: boolean | undefined;
1547
+ priority?: number | undefined;
1548
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1549
+ alternateRefs?: {
1550
+ href: string;
1551
+ hreflang: string;
1552
+ }[] | undefined;
1553
+ images?: {
1554
+ loc: string;
1555
+ caption?: string | undefined;
1556
+ title?: string | undefined;
1557
+ }[] | undefined;
1558
+ news?: {
1559
+ title: string;
1560
+ publication: {
1561
+ name: string;
1562
+ language: string;
1563
+ };
1564
+ publicationDate: string | Date;
1565
+ } | undefined;
1566
+ } | undefined;
1567
+ fromCrawl?: boolean | undefined;
1568
+ }, ...args: unknown[]) => any) | undefined;
1569
+ enabled?: boolean | undefined;
1570
+ concurrency?: number | undefined;
1571
+ failOnError?: boolean | undefined;
1572
+ }, {
1573
+ filter?: ((args_0: {
1574
+ path: string;
1575
+ prerender?: {
1576
+ enabled?: boolean | undefined;
1577
+ autoSubfolderIndex?: boolean | undefined;
1578
+ crawlLinks?: boolean | undefined;
1579
+ retryCount?: number | undefined;
1580
+ retryDelay?: number | undefined;
1581
+ onSuccess?: ((args_0: {
1582
+ page: {
1583
+ path: string;
1584
+ sitemap?: {
1585
+ lastmod?: string | Date | undefined;
1586
+ exclude?: boolean | undefined;
1587
+ priority?: number | undefined;
1588
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1589
+ alternateRefs?: {
1590
+ href: string;
1591
+ hreflang: string;
1592
+ }[] | undefined;
1593
+ images?: {
1594
+ loc: string;
1595
+ caption?: string | undefined;
1596
+ title?: string | undefined;
1597
+ }[] | undefined;
1598
+ news?: {
1599
+ title: string;
1600
+ publication: {
1601
+ name: string;
1602
+ language: string;
1603
+ };
1604
+ publicationDate: string | Date;
1605
+ } | undefined;
1606
+ } | undefined;
1607
+ fromCrawl?: boolean | undefined;
1608
+ };
1609
+ html: string;
1610
+ }, ...args: unknown[]) => any) | undefined;
1611
+ } | undefined;
1612
+ sitemap?: {
1613
+ lastmod?: string | Date | undefined;
1614
+ exclude?: boolean | undefined;
1615
+ priority?: number | undefined;
1616
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1617
+ alternateRefs?: {
1618
+ href: string;
1619
+ hreflang: string;
1620
+ }[] | undefined;
1621
+ images?: {
1622
+ loc: string;
1623
+ caption?: string | undefined;
1624
+ title?: string | undefined;
1625
+ }[] | undefined;
1626
+ news?: {
1627
+ title: string;
1628
+ publication: {
1629
+ name: string;
1630
+ language: string;
1631
+ };
1632
+ publicationDate: string | Date;
1633
+ } | undefined;
1634
+ } | undefined;
1635
+ fromCrawl?: boolean | undefined;
1636
+ }, ...args: unknown[]) => any) | undefined;
1637
+ enabled?: boolean | undefined;
1638
+ concurrency?: number | undefined;
1639
+ failOnError?: boolean | undefined;
1640
+ }>, z.ZodOptional<z.ZodObject<{
1641
+ enabled: z.ZodOptional<z.ZodBoolean>;
1642
+ autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
1643
+ crawlLinks: z.ZodOptional<z.ZodBoolean>;
1644
+ retryCount: z.ZodOptional<z.ZodNumber>;
1645
+ retryDelay: z.ZodOptional<z.ZodNumber>;
1646
+ onSuccess: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
1647
+ page: z.ZodObject<{
1648
+ path: z.ZodString;
1649
+ sitemap: z.ZodOptional<z.ZodObject<{
1650
+ exclude: z.ZodOptional<z.ZodBoolean>;
1651
+ priority: z.ZodOptional<z.ZodNumber>;
1652
+ changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
1653
+ lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
1654
+ alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
1655
+ href: z.ZodString;
1656
+ hreflang: z.ZodString;
1657
+ }, "strip", z.ZodTypeAny, {
1658
+ href: string;
1659
+ hreflang: string;
1660
+ }, {
1661
+ href: string;
1662
+ hreflang: string;
1663
+ }>, "many">>;
1664
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
1665
+ loc: z.ZodString;
1666
+ caption: z.ZodOptional<z.ZodString>;
1667
+ title: z.ZodOptional<z.ZodString>;
1668
+ }, "strip", z.ZodTypeAny, {
1669
+ loc: string;
1670
+ caption?: string | undefined;
1671
+ title?: string | undefined;
1672
+ }, {
1673
+ loc: string;
1674
+ caption?: string | undefined;
1675
+ title?: string | undefined;
1676
+ }>, "many">>;
1677
+ news: z.ZodOptional<z.ZodObject<{
1678
+ publication: z.ZodObject<{
1679
+ name: z.ZodString;
1680
+ language: z.ZodString;
1681
+ }, "strip", z.ZodTypeAny, {
1682
+ name: string;
1683
+ language: string;
1684
+ }, {
1685
+ name: string;
1686
+ language: string;
1687
+ }>;
1688
+ publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
1689
+ title: z.ZodString;
1690
+ }, "strip", z.ZodTypeAny, {
1691
+ title: string;
1692
+ publication: {
1693
+ name: string;
1694
+ language: string;
1695
+ };
1696
+ publicationDate: string | Date;
1697
+ }, {
1698
+ title: string;
1699
+ publication: {
1700
+ name: string;
1701
+ language: string;
1702
+ };
1703
+ publicationDate: string | Date;
1704
+ }>>;
1705
+ }, "strip", z.ZodTypeAny, {
1706
+ lastmod?: string | Date | undefined;
1707
+ exclude?: boolean | undefined;
1708
+ priority?: number | undefined;
1709
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1710
+ alternateRefs?: {
1711
+ href: string;
1712
+ hreflang: string;
1713
+ }[] | undefined;
1714
+ images?: {
1715
+ loc: string;
1716
+ caption?: string | undefined;
1717
+ title?: string | undefined;
1718
+ }[] | undefined;
1719
+ news?: {
1720
+ title: string;
1721
+ publication: {
1722
+ name: string;
1723
+ language: string;
1724
+ };
1725
+ publicationDate: string | Date;
1726
+ } | undefined;
1727
+ }, {
1728
+ lastmod?: string | Date | undefined;
1729
+ exclude?: boolean | undefined;
1730
+ priority?: number | undefined;
1731
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1732
+ alternateRefs?: {
1733
+ href: string;
1734
+ hreflang: string;
1735
+ }[] | undefined;
1736
+ images?: {
1737
+ loc: string;
1738
+ caption?: string | undefined;
1739
+ title?: string | undefined;
1740
+ }[] | undefined;
1741
+ news?: {
1742
+ title: string;
1743
+ publication: {
1744
+ name: string;
1745
+ language: string;
1746
+ };
1747
+ publicationDate: string | Date;
1748
+ } | undefined;
1749
+ }>>;
1750
+ fromCrawl: z.ZodOptional<z.ZodBoolean>;
1751
+ }, "strip", z.ZodTypeAny, {
1752
+ path: string;
1753
+ sitemap?: {
1754
+ lastmod?: string | Date | undefined;
1755
+ exclude?: boolean | undefined;
1756
+ priority?: number | undefined;
1757
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1758
+ alternateRefs?: {
1759
+ href: string;
1760
+ hreflang: string;
1761
+ }[] | undefined;
1762
+ images?: {
1763
+ loc: string;
1764
+ caption?: string | undefined;
1765
+ title?: string | undefined;
1766
+ }[] | undefined;
1767
+ news?: {
1768
+ title: string;
1769
+ publication: {
1770
+ name: string;
1771
+ language: string;
1772
+ };
1773
+ publicationDate: string | Date;
1774
+ } | undefined;
1775
+ } | undefined;
1776
+ fromCrawl?: boolean | undefined;
1777
+ }, {
1778
+ path: string;
1779
+ sitemap?: {
1780
+ lastmod?: string | Date | undefined;
1781
+ exclude?: boolean | undefined;
1782
+ priority?: number | undefined;
1783
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1784
+ alternateRefs?: {
1785
+ href: string;
1786
+ hreflang: string;
1787
+ }[] | undefined;
1788
+ images?: {
1789
+ loc: string;
1790
+ caption?: string | undefined;
1791
+ title?: string | undefined;
1792
+ }[] | undefined;
1793
+ news?: {
1794
+ title: string;
1795
+ publication: {
1796
+ name: string;
1797
+ language: string;
1798
+ };
1799
+ publicationDate: string | Date;
1800
+ } | undefined;
1801
+ } | undefined;
1802
+ fromCrawl?: boolean | undefined;
1803
+ }>;
1804
+ html: z.ZodString;
1805
+ }, "strip", z.ZodTypeAny, {
1806
+ page: {
1807
+ path: string;
1808
+ sitemap?: {
1809
+ lastmod?: string | Date | undefined;
1810
+ exclude?: boolean | undefined;
1811
+ priority?: number | undefined;
1812
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1813
+ alternateRefs?: {
1814
+ href: string;
1815
+ hreflang: string;
1816
+ }[] | undefined;
1817
+ images?: {
1818
+ loc: string;
1819
+ caption?: string | undefined;
1820
+ title?: string | undefined;
1821
+ }[] | undefined;
1822
+ news?: {
1823
+ title: string;
1824
+ publication: {
1825
+ name: string;
1826
+ language: string;
1827
+ };
1828
+ publicationDate: string | Date;
1829
+ } | undefined;
1830
+ } | undefined;
1831
+ fromCrawl?: boolean | undefined;
1832
+ };
1833
+ html: string;
1834
+ }, {
1835
+ page: {
1836
+ path: string;
1837
+ sitemap?: {
1838
+ lastmod?: string | Date | undefined;
1839
+ exclude?: boolean | undefined;
1840
+ priority?: number | undefined;
1841
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1842
+ alternateRefs?: {
1843
+ href: string;
1844
+ hreflang: string;
1845
+ }[] | undefined;
1846
+ images?: {
1847
+ loc: string;
1848
+ caption?: string | undefined;
1849
+ title?: string | undefined;
1850
+ }[] | undefined;
1851
+ news?: {
1852
+ title: string;
1853
+ publication: {
1854
+ name: string;
1855
+ language: string;
1856
+ };
1857
+ publicationDate: string | Date;
1858
+ } | undefined;
1859
+ } | undefined;
1860
+ fromCrawl?: boolean | undefined;
1861
+ };
1862
+ html: string;
1863
+ }>], z.ZodUnknown>, z.ZodAny>>;
1864
+ }, "strip", z.ZodTypeAny, {
1865
+ enabled?: boolean | undefined;
1866
+ autoSubfolderIndex?: boolean | undefined;
1867
+ crawlLinks?: boolean | undefined;
1868
+ retryCount?: number | undefined;
1869
+ retryDelay?: number | undefined;
1870
+ onSuccess?: ((args_0: {
1871
+ page: {
1872
+ path: string;
1873
+ sitemap?: {
1874
+ lastmod?: string | Date | undefined;
1875
+ exclude?: boolean | undefined;
1876
+ priority?: number | undefined;
1877
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1878
+ alternateRefs?: {
1879
+ href: string;
1880
+ hreflang: string;
1881
+ }[] | undefined;
1882
+ images?: {
1883
+ loc: string;
1884
+ caption?: string | undefined;
1885
+ title?: string | undefined;
1886
+ }[] | undefined;
1887
+ news?: {
1888
+ title: string;
1889
+ publication: {
1890
+ name: string;
1891
+ language: string;
1892
+ };
1893
+ publicationDate: string | Date;
1894
+ } | undefined;
1895
+ } | undefined;
1896
+ fromCrawl?: boolean | undefined;
1897
+ };
1898
+ html: string;
1899
+ }, ...args: unknown[]) => any) | undefined;
1900
+ }, {
1901
+ enabled?: boolean | undefined;
1902
+ autoSubfolderIndex?: boolean | undefined;
1903
+ crawlLinks?: boolean | undefined;
1904
+ retryCount?: number | undefined;
1905
+ retryDelay?: number | undefined;
1906
+ onSuccess?: ((args_0: {
1907
+ page: {
1908
+ path: string;
1909
+ sitemap?: {
1910
+ lastmod?: string | Date | undefined;
1911
+ exclude?: boolean | undefined;
1912
+ priority?: number | undefined;
1913
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1914
+ alternateRefs?: {
1915
+ href: string;
1916
+ hreflang: string;
1917
+ }[] | undefined;
1918
+ images?: {
1919
+ loc: string;
1920
+ caption?: string | undefined;
1921
+ title?: string | undefined;
1922
+ }[] | undefined;
1923
+ news?: {
1924
+ title: string;
1925
+ publication: {
1926
+ name: string;
1927
+ language: string;
1928
+ };
1929
+ publicationDate: string | Date;
1930
+ } | undefined;
1931
+ } | undefined;
1932
+ fromCrawl?: boolean | undefined;
1933
+ };
1934
+ html: string;
1935
+ }, ...args: unknown[]) => any) | undefined;
1936
+ }>>>>;
1937
+ root: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1938
+ target: z.ZodOptional<z.ZodType<import('nitropack/presets').PresetNameInput | undefined, z.ZodTypeDef, import('nitropack/presets').PresetNameInput | undefined>>;
1939
+ }, "strip", z.ZodTypeAny, {
1940
+ client: {
1941
+ base: string;
1942
+ entry?: string | undefined;
1943
+ };
1944
+ server: {
1945
+ entry?: string | undefined;
1946
+ };
1947
+ root: string;
1948
+ tsr: {
1949
+ srcDirectory: string;
1950
+ target?: "react" | "solid" | undefined;
1951
+ virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
1952
+ routeFilePrefix?: string | undefined;
1953
+ routeFileIgnorePrefix?: string | undefined;
1954
+ routeFileIgnorePattern?: string | undefined;
1955
+ routesDirectory?: string | undefined;
1956
+ quoteStyle?: "single" | "double" | undefined;
1957
+ semicolons?: boolean | undefined;
1958
+ disableLogging?: boolean | undefined;
1959
+ routeTreeFileHeader?: string[] | undefined;
1960
+ indexToken?: string | undefined;
1961
+ routeToken?: string | undefined;
1962
+ pathParamsAllowedCharacters?: (";" | ":" | "@" | "&" | "=" | "+" | "$" | ",")[] | undefined;
1963
+ generatedRouteTree?: string | undefined;
1964
+ disableTypes?: boolean | undefined;
1965
+ verboseFileRoutes?: boolean | undefined;
1966
+ addExtensions?: boolean | undefined;
1967
+ disableManifestGeneration?: boolean | undefined;
1968
+ enableRouteTreeFormatting?: boolean | undefined;
1969
+ routeTreeFileFooter?: string[] | undefined;
1970
+ autoCodeSplitting?: boolean | undefined;
1971
+ customScaffolding?: {
1972
+ routeTemplate?: string | undefined;
1973
+ lazyRouteTemplate?: string | undefined;
1974
+ } | undefined;
1975
+ experimental?: {
1976
+ enableCodeSplitting?: boolean | undefined;
1977
+ } | undefined;
1978
+ };
1979
+ serverFns: {
1980
+ base: string;
1981
+ };
1982
+ public: {
1983
+ base: string;
1984
+ dir: string;
1985
+ };
1986
+ pages: (string | {
1987
+ path: string;
1988
+ prerender?: {
1989
+ enabled?: boolean | undefined;
1990
+ autoSubfolderIndex?: boolean | undefined;
1991
+ crawlLinks?: boolean | undefined;
1992
+ retryCount?: number | undefined;
1993
+ retryDelay?: number | undefined;
1994
+ onSuccess?: ((args_0: {
1995
+ page: {
1996
+ path: string;
1997
+ sitemap?: {
1998
+ lastmod?: string | Date | undefined;
1999
+ exclude?: boolean | undefined;
2000
+ priority?: number | undefined;
2001
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2002
+ alternateRefs?: {
2003
+ href: string;
2004
+ hreflang: string;
2005
+ }[] | undefined;
2006
+ images?: {
2007
+ loc: string;
2008
+ caption?: string | undefined;
2009
+ title?: string | undefined;
2010
+ }[] | undefined;
2011
+ news?: {
2012
+ title: string;
2013
+ publication: {
2014
+ name: string;
2015
+ language: string;
2016
+ };
2017
+ publicationDate: string | Date;
2018
+ } | undefined;
2019
+ } | undefined;
2020
+ fromCrawl?: boolean | undefined;
2021
+ };
2022
+ html: string;
2023
+ }, ...args: unknown[]) => any) | undefined;
2024
+ } | undefined;
2025
+ sitemap?: {
2026
+ lastmod?: string | Date | undefined;
2027
+ exclude?: boolean | undefined;
2028
+ priority?: number | undefined;
2029
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2030
+ alternateRefs?: {
2031
+ href: string;
2032
+ hreflang: string;
2033
+ }[] | undefined;
2034
+ images?: {
2035
+ loc: string;
2036
+ caption?: string | undefined;
2037
+ title?: string | undefined;
2038
+ }[] | undefined;
2039
+ news?: {
2040
+ title: string;
2041
+ publication: {
2042
+ name: string;
2043
+ language: string;
2044
+ };
2045
+ publicationDate: string | Date;
2046
+ } | undefined;
2047
+ } | undefined;
2048
+ fromCrawl?: boolean | undefined;
2049
+ })[];
2050
+ target?: import('nitropack/presets').PresetNameInput | undefined;
2051
+ prerender?: ({
2052
+ filter?: ((args_0: {
2053
+ path: string;
2054
+ prerender?: {
2055
+ enabled?: boolean | undefined;
2056
+ autoSubfolderIndex?: boolean | undefined;
2057
+ crawlLinks?: boolean | undefined;
2058
+ retryCount?: number | undefined;
2059
+ retryDelay?: number | undefined;
2060
+ onSuccess?: ((args_0: {
2061
+ page: {
2062
+ path: string;
2063
+ sitemap?: {
2064
+ lastmod?: string | Date | undefined;
2065
+ exclude?: boolean | undefined;
2066
+ priority?: number | undefined;
2067
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2068
+ alternateRefs?: {
2069
+ href: string;
2070
+ hreflang: string;
2071
+ }[] | undefined;
2072
+ images?: {
2073
+ loc: string;
2074
+ caption?: string | undefined;
2075
+ title?: string | undefined;
2076
+ }[] | undefined;
2077
+ news?: {
2078
+ title: string;
2079
+ publication: {
2080
+ name: string;
2081
+ language: string;
2082
+ };
2083
+ publicationDate: string | Date;
2084
+ } | undefined;
2085
+ } | undefined;
2086
+ fromCrawl?: boolean | undefined;
2087
+ };
2088
+ html: string;
2089
+ }, ...args: unknown[]) => any) | undefined;
2090
+ } | undefined;
2091
+ sitemap?: {
2092
+ lastmod?: string | Date | undefined;
2093
+ exclude?: boolean | undefined;
2094
+ priority?: number | undefined;
2095
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2096
+ alternateRefs?: {
2097
+ href: string;
2098
+ hreflang: string;
2099
+ }[] | undefined;
2100
+ images?: {
2101
+ loc: string;
2102
+ caption?: string | undefined;
2103
+ title?: string | undefined;
2104
+ }[] | undefined;
2105
+ news?: {
2106
+ title: string;
2107
+ publication: {
2108
+ name: string;
2109
+ language: string;
2110
+ };
2111
+ publicationDate: string | Date;
2112
+ } | undefined;
2113
+ } | undefined;
2114
+ fromCrawl?: boolean | undefined;
2115
+ }, ...args: unknown[]) => any) | undefined;
2116
+ enabled?: boolean | undefined;
2117
+ concurrency?: number | undefined;
2118
+ failOnError?: boolean | undefined;
2119
+ } & {
2120
+ enabled?: boolean | undefined;
2121
+ autoSubfolderIndex?: boolean | undefined;
2122
+ crawlLinks?: boolean | undefined;
2123
+ retryCount?: number | undefined;
2124
+ retryDelay?: number | undefined;
2125
+ onSuccess?: ((args_0: {
2126
+ page: {
2127
+ path: string;
2128
+ sitemap?: {
2129
+ lastmod?: string | Date | undefined;
2130
+ exclude?: boolean | undefined;
2131
+ priority?: number | undefined;
2132
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2133
+ alternateRefs?: {
2134
+ href: string;
2135
+ hreflang: string;
2136
+ }[] | undefined;
2137
+ images?: {
2138
+ loc: string;
2139
+ caption?: string | undefined;
2140
+ title?: string | undefined;
2141
+ }[] | undefined;
2142
+ news?: {
2143
+ title: string;
2144
+ publication: {
2145
+ name: string;
2146
+ language: string;
2147
+ };
2148
+ publicationDate: string | Date;
2149
+ } | undefined;
2150
+ } | undefined;
2151
+ fromCrawl?: boolean | undefined;
2152
+ };
2153
+ html: string;
2154
+ }, ...args: unknown[]) => any) | undefined;
2155
+ }) | undefined;
2156
+ sitemap?: {
2157
+ host?: string | undefined;
2158
+ enabled?: boolean | undefined;
2159
+ autoSubfolderIndex?: boolean | undefined;
2160
+ crawlLinks?: boolean | undefined;
2161
+ retryCount?: number | undefined;
2162
+ retryDelay?: number | undefined;
2163
+ onSuccess?: ((args_0: {
2164
+ page: {
2165
+ path: string;
2166
+ sitemap?: {
2167
+ lastmod?: string | Date | undefined;
2168
+ exclude?: boolean | undefined;
2169
+ priority?: number | undefined;
2170
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2171
+ alternateRefs?: {
2172
+ href: string;
2173
+ hreflang: string;
2174
+ }[] | undefined;
2175
+ images?: {
2176
+ loc: string;
2177
+ caption?: string | undefined;
2178
+ title?: string | undefined;
2179
+ }[] | undefined;
2180
+ news?: {
2181
+ title: string;
2182
+ publication: {
2183
+ name: string;
2184
+ language: string;
2185
+ };
2186
+ publicationDate: string | Date;
2187
+ } | undefined;
2188
+ } | undefined;
2189
+ fromCrawl?: boolean | undefined;
2190
+ };
2191
+ html: string;
2192
+ }, ...args: unknown[]) => any) | undefined;
2193
+ } | undefined;
2194
+ }, {
2195
+ client?: {
2196
+ entry?: string | undefined;
2197
+ base?: string | undefined;
2198
+ } | undefined;
2199
+ server?: {
2200
+ entry?: string | undefined;
2201
+ } | undefined;
2202
+ target?: import('nitropack/presets').PresetNameInput | undefined;
2203
+ root?: string | undefined;
2204
+ prerender?: ({
2205
+ filter?: ((args_0: {
2206
+ path: string;
2207
+ prerender?: {
2208
+ enabled?: boolean | undefined;
2209
+ autoSubfolderIndex?: boolean | undefined;
2210
+ crawlLinks?: boolean | undefined;
2211
+ retryCount?: number | undefined;
2212
+ retryDelay?: number | undefined;
2213
+ onSuccess?: ((args_0: {
2214
+ page: {
2215
+ path: string;
2216
+ sitemap?: {
2217
+ lastmod?: string | Date | undefined;
2218
+ exclude?: boolean | undefined;
2219
+ priority?: number | undefined;
2220
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2221
+ alternateRefs?: {
2222
+ href: string;
2223
+ hreflang: string;
2224
+ }[] | undefined;
2225
+ images?: {
2226
+ loc: string;
2227
+ caption?: string | undefined;
2228
+ title?: string | undefined;
2229
+ }[] | undefined;
2230
+ news?: {
2231
+ title: string;
2232
+ publication: {
2233
+ name: string;
2234
+ language: string;
2235
+ };
2236
+ publicationDate: string | Date;
2237
+ } | undefined;
2238
+ } | undefined;
2239
+ fromCrawl?: boolean | undefined;
2240
+ };
2241
+ html: string;
2242
+ }, ...args: unknown[]) => any) | undefined;
2243
+ } | undefined;
2244
+ sitemap?: {
2245
+ lastmod?: string | Date | undefined;
2246
+ exclude?: boolean | undefined;
2247
+ priority?: number | undefined;
2248
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2249
+ alternateRefs?: {
2250
+ href: string;
2251
+ hreflang: string;
2252
+ }[] | undefined;
2253
+ images?: {
2254
+ loc: string;
2255
+ caption?: string | undefined;
2256
+ title?: string | undefined;
2257
+ }[] | undefined;
2258
+ news?: {
2259
+ title: string;
2260
+ publication: {
2261
+ name: string;
2262
+ language: string;
2263
+ };
2264
+ publicationDate: string | Date;
2265
+ } | undefined;
2266
+ } | undefined;
2267
+ fromCrawl?: boolean | undefined;
2268
+ }, ...args: unknown[]) => any) | undefined;
2269
+ enabled?: boolean | undefined;
2270
+ concurrency?: number | undefined;
2271
+ failOnError?: boolean | undefined;
2272
+ } & {
2273
+ enabled?: boolean | undefined;
2274
+ autoSubfolderIndex?: boolean | undefined;
2275
+ crawlLinks?: boolean | undefined;
2276
+ retryCount?: number | undefined;
2277
+ retryDelay?: number | undefined;
2278
+ onSuccess?: ((args_0: {
2279
+ page: {
2280
+ path: string;
2281
+ sitemap?: {
2282
+ lastmod?: string | Date | undefined;
2283
+ exclude?: boolean | undefined;
2284
+ priority?: number | undefined;
2285
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2286
+ alternateRefs?: {
2287
+ href: string;
2288
+ hreflang: string;
2289
+ }[] | undefined;
2290
+ images?: {
2291
+ loc: string;
2292
+ caption?: string | undefined;
2293
+ title?: string | undefined;
2294
+ }[] | undefined;
2295
+ news?: {
2296
+ title: string;
2297
+ publication: {
2298
+ name: string;
2299
+ language: string;
2300
+ };
2301
+ publicationDate: string | Date;
2302
+ } | undefined;
2303
+ } | undefined;
2304
+ fromCrawl?: boolean | undefined;
2305
+ };
2306
+ html: string;
2307
+ }, ...args: unknown[]) => any) | undefined;
2308
+ }) | undefined;
2309
+ tsr?: {
2310
+ target?: "react" | "solid" | undefined;
2311
+ virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
2312
+ routeFilePrefix?: string | undefined;
2313
+ routeFileIgnorePrefix?: string | undefined;
2314
+ routeFileIgnorePattern?: string | undefined;
2315
+ routesDirectory?: string | undefined;
2316
+ quoteStyle?: "single" | "double" | undefined;
2317
+ semicolons?: boolean | undefined;
2318
+ disableLogging?: boolean | undefined;
2319
+ routeTreeFileHeader?: string[] | undefined;
2320
+ indexToken?: string | undefined;
2321
+ routeToken?: string | undefined;
2322
+ pathParamsAllowedCharacters?: (";" | ":" | "@" | "&" | "=" | "+" | "$" | ",")[] | undefined;
2323
+ generatedRouteTree?: string | undefined;
2324
+ disableTypes?: boolean | undefined;
2325
+ verboseFileRoutes?: boolean | undefined;
2326
+ addExtensions?: boolean | undefined;
2327
+ disableManifestGeneration?: boolean | undefined;
2328
+ enableRouteTreeFormatting?: boolean | undefined;
2329
+ routeTreeFileFooter?: string[] | undefined;
2330
+ autoCodeSplitting?: boolean | undefined;
2331
+ customScaffolding?: {
2332
+ routeTemplate?: string | undefined;
2333
+ lazyRouteTemplate?: string | undefined;
2334
+ } | undefined;
2335
+ experimental?: {
2336
+ enableCodeSplitting?: boolean | undefined;
2337
+ } | undefined;
2338
+ srcDirectory?: string | undefined;
2339
+ } | undefined;
2340
+ serverFns?: {
2341
+ base?: string | undefined;
2342
+ } | undefined;
2343
+ public?: {
2344
+ base?: string | undefined;
2345
+ dir?: string | undefined;
2346
+ } | undefined;
2347
+ sitemap?: {
2348
+ host?: string | undefined;
2349
+ enabled?: boolean | undefined;
2350
+ autoSubfolderIndex?: boolean | undefined;
2351
+ crawlLinks?: boolean | undefined;
2352
+ retryCount?: number | undefined;
2353
+ retryDelay?: number | undefined;
2354
+ onSuccess?: ((args_0: {
2355
+ page: {
2356
+ path: string;
2357
+ sitemap?: {
2358
+ lastmod?: string | Date | undefined;
2359
+ exclude?: boolean | undefined;
2360
+ priority?: number | undefined;
2361
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2362
+ alternateRefs?: {
2363
+ href: string;
2364
+ hreflang: string;
2365
+ }[] | undefined;
2366
+ images?: {
2367
+ loc: string;
2368
+ caption?: string | undefined;
2369
+ title?: string | undefined;
2370
+ }[] | undefined;
2371
+ news?: {
2372
+ title: string;
2373
+ publication: {
2374
+ name: string;
2375
+ language: string;
2376
+ };
2377
+ publicationDate: string | Date;
2378
+ } | undefined;
2379
+ } | undefined;
2380
+ fromCrawl?: boolean | undefined;
2381
+ };
2382
+ html: string;
2383
+ }, ...args: unknown[]) => any) | undefined;
2384
+ } | undefined;
2385
+ pages?: (string | {
2386
+ path: string;
2387
+ prerender?: {
2388
+ enabled?: boolean | undefined;
2389
+ autoSubfolderIndex?: boolean | undefined;
2390
+ crawlLinks?: boolean | undefined;
2391
+ retryCount?: number | undefined;
2392
+ retryDelay?: number | undefined;
2393
+ onSuccess?: ((args_0: {
2394
+ page: {
2395
+ path: string;
2396
+ sitemap?: {
2397
+ lastmod?: string | Date | undefined;
2398
+ exclude?: boolean | undefined;
2399
+ priority?: number | undefined;
2400
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2401
+ alternateRefs?: {
2402
+ href: string;
2403
+ hreflang: string;
2404
+ }[] | undefined;
2405
+ images?: {
2406
+ loc: string;
2407
+ caption?: string | undefined;
2408
+ title?: string | undefined;
2409
+ }[] | undefined;
2410
+ news?: {
2411
+ title: string;
2412
+ publication: {
2413
+ name: string;
2414
+ language: string;
2415
+ };
2416
+ publicationDate: string | Date;
2417
+ } | undefined;
2418
+ } | undefined;
2419
+ fromCrawl?: boolean | undefined;
2420
+ };
2421
+ html: string;
2422
+ }, ...args: unknown[]) => any) | undefined;
2423
+ } | undefined;
2424
+ sitemap?: {
2425
+ lastmod?: string | Date | undefined;
2426
+ exclude?: boolean | undefined;
2427
+ priority?: number | undefined;
2428
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2429
+ alternateRefs?: {
2430
+ href: string;
2431
+ hreflang: string;
2432
+ }[] | undefined;
2433
+ images?: {
2434
+ loc: string;
2435
+ caption?: string | undefined;
2436
+ title?: string | undefined;
2437
+ }[] | undefined;
2438
+ news?: {
2439
+ title: string;
2440
+ publication: {
2441
+ name: string;
2442
+ language: string;
2443
+ };
2444
+ publicationDate: string | Date;
2445
+ } | undefined;
2446
+ } | undefined;
2447
+ fromCrawl?: boolean | undefined;
2448
+ })[] | undefined;
2449
+ }>>>;
2450
+ export type TanStackStartInputConfig = z.input<typeof TanStackStartOptionsSchema>;
2451
+ export declare function getTanStackStartOptions(opts?: TanStackStartInputConfig): {
2452
+ tsr: {
2453
+ target: "react" | "solid";
2454
+ routeFileIgnorePrefix: string;
2455
+ routesDirectory: string;
2456
+ quoteStyle: "single" | "double";
2457
+ semicolons: boolean;
2458
+ disableLogging: boolean;
2459
+ routeTreeFileHeader: string[];
2460
+ indexToken: string;
2461
+ routeToken: string;
2462
+ generatedRouteTree: string;
2463
+ disableTypes: boolean;
2464
+ addExtensions: boolean;
2465
+ disableManifestGeneration: boolean;
2466
+ enableRouteTreeFormatting: boolean;
2467
+ routeTreeFileFooter: string[];
2468
+ virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
2469
+ routeFilePrefix?: string | undefined;
2470
+ routeFileIgnorePattern?: string | undefined;
2471
+ pathParamsAllowedCharacters?: (";" | ":" | "@" | "&" | "=" | "+" | "$" | ",")[] | undefined;
2472
+ verboseFileRoutes?: boolean | undefined;
2473
+ autoCodeSplitting?: boolean | undefined;
2474
+ customScaffolding?: {
2475
+ routeTemplate?: string | undefined;
2476
+ lazyRouteTemplate?: string | undefined;
2477
+ } | undefined;
2478
+ experimental?: {
2479
+ enableCodeSplitting?: boolean | undefined;
2480
+ } | undefined;
2481
+ srcDirectory: string;
2482
+ };
2483
+ clientEntryPath: string;
2484
+ serverEntryPath: string;
2485
+ client: {
2486
+ base: string;
2487
+ entry?: string | undefined;
2488
+ };
2489
+ server: {
2490
+ entry?: string | undefined;
2491
+ };
2492
+ root: string;
2493
+ serverFns: {
2494
+ base: string;
2495
+ };
2496
+ public: {
2497
+ base: string;
2498
+ dir: string;
2499
+ };
2500
+ pages: (string | {
2501
+ path: string;
2502
+ prerender?: {
2503
+ enabled?: boolean | undefined;
2504
+ autoSubfolderIndex?: boolean | undefined;
2505
+ crawlLinks?: boolean | undefined;
2506
+ retryCount?: number | undefined;
2507
+ retryDelay?: number | undefined;
2508
+ onSuccess?: ((args_0: {
2509
+ page: {
2510
+ path: string;
2511
+ sitemap?: {
2512
+ lastmod?: string | Date | undefined;
2513
+ exclude?: boolean | undefined;
2514
+ priority?: number | undefined;
2515
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2516
+ alternateRefs?: {
2517
+ href: string;
2518
+ hreflang: string;
2519
+ }[] | undefined;
2520
+ images?: {
2521
+ loc: string;
2522
+ caption?: string | undefined;
2523
+ title?: string | undefined;
2524
+ }[] | undefined;
2525
+ news?: {
2526
+ title: string;
2527
+ publication: {
2528
+ name: string;
2529
+ language: string;
2530
+ };
2531
+ publicationDate: string | Date;
2532
+ } | undefined;
2533
+ } | undefined;
2534
+ fromCrawl?: boolean | undefined;
2535
+ };
2536
+ html: string;
2537
+ }, ...args: unknown[]) => any) | undefined;
2538
+ } | undefined;
2539
+ sitemap?: {
2540
+ lastmod?: string | Date | undefined;
2541
+ exclude?: boolean | undefined;
2542
+ priority?: number | undefined;
2543
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2544
+ alternateRefs?: {
2545
+ href: string;
2546
+ hreflang: string;
2547
+ }[] | undefined;
2548
+ images?: {
2549
+ loc: string;
2550
+ caption?: string | undefined;
2551
+ title?: string | undefined;
2552
+ }[] | undefined;
2553
+ news?: {
2554
+ title: string;
2555
+ publication: {
2556
+ name: string;
2557
+ language: string;
2558
+ };
2559
+ publicationDate: string | Date;
2560
+ } | undefined;
2561
+ } | undefined;
2562
+ fromCrawl?: boolean | undefined;
2563
+ })[];
2564
+ target?: import('nitropack/presets').PresetNameInput | undefined;
2565
+ prerender?: ({
2566
+ filter?: ((args_0: {
2567
+ path: string;
2568
+ prerender?: {
2569
+ enabled?: boolean | undefined;
2570
+ autoSubfolderIndex?: boolean | undefined;
2571
+ crawlLinks?: boolean | undefined;
2572
+ retryCount?: number | undefined;
2573
+ retryDelay?: number | undefined;
2574
+ onSuccess?: ((args_0: {
2575
+ page: {
2576
+ path: string;
2577
+ sitemap?: {
2578
+ lastmod?: string | Date | undefined;
2579
+ exclude?: boolean | undefined;
2580
+ priority?: number | undefined;
2581
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2582
+ alternateRefs?: {
2583
+ href: string;
2584
+ hreflang: string;
2585
+ }[] | undefined;
2586
+ images?: {
2587
+ loc: string;
2588
+ caption?: string | undefined;
2589
+ title?: string | undefined;
2590
+ }[] | undefined;
2591
+ news?: {
2592
+ title: string;
2593
+ publication: {
2594
+ name: string;
2595
+ language: string;
2596
+ };
2597
+ publicationDate: string | Date;
2598
+ } | undefined;
2599
+ } | undefined;
2600
+ fromCrawl?: boolean | undefined;
2601
+ };
2602
+ html: string;
2603
+ }, ...args: unknown[]) => any) | undefined;
2604
+ } | undefined;
2605
+ sitemap?: {
2606
+ lastmod?: string | Date | undefined;
2607
+ exclude?: boolean | undefined;
2608
+ priority?: number | undefined;
2609
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2610
+ alternateRefs?: {
2611
+ href: string;
2612
+ hreflang: string;
2613
+ }[] | undefined;
2614
+ images?: {
2615
+ loc: string;
2616
+ caption?: string | undefined;
2617
+ title?: string | undefined;
2618
+ }[] | undefined;
2619
+ news?: {
2620
+ title: string;
2621
+ publication: {
2622
+ name: string;
2623
+ language: string;
2624
+ };
2625
+ publicationDate: string | Date;
2626
+ } | undefined;
2627
+ } | undefined;
2628
+ fromCrawl?: boolean | undefined;
2629
+ }, ...args: unknown[]) => any) | undefined;
2630
+ enabled?: boolean | undefined;
2631
+ concurrency?: number | undefined;
2632
+ failOnError?: boolean | undefined;
2633
+ } & {
2634
+ enabled?: boolean | undefined;
2635
+ autoSubfolderIndex?: boolean | undefined;
2636
+ crawlLinks?: boolean | undefined;
2637
+ retryCount?: number | undefined;
2638
+ retryDelay?: number | undefined;
2639
+ onSuccess?: ((args_0: {
2640
+ page: {
2641
+ path: string;
2642
+ sitemap?: {
2643
+ lastmod?: string | Date | undefined;
2644
+ exclude?: boolean | undefined;
2645
+ priority?: number | undefined;
2646
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2647
+ alternateRefs?: {
2648
+ href: string;
2649
+ hreflang: string;
2650
+ }[] | undefined;
2651
+ images?: {
2652
+ loc: string;
2653
+ caption?: string | undefined;
2654
+ title?: string | undefined;
2655
+ }[] | undefined;
2656
+ news?: {
2657
+ title: string;
2658
+ publication: {
2659
+ name: string;
2660
+ language: string;
2661
+ };
2662
+ publicationDate: string | Date;
2663
+ } | undefined;
2664
+ } | undefined;
2665
+ fromCrawl?: boolean | undefined;
2666
+ };
2667
+ html: string;
2668
+ }, ...args: unknown[]) => any) | undefined;
2669
+ }) | undefined;
2670
+ sitemap?: {
2671
+ host?: string | undefined;
2672
+ enabled?: boolean | undefined;
2673
+ autoSubfolderIndex?: boolean | undefined;
2674
+ crawlLinks?: boolean | undefined;
2675
+ retryCount?: number | undefined;
2676
+ retryDelay?: number | undefined;
2677
+ onSuccess?: ((args_0: {
2678
+ page: {
2679
+ path: string;
2680
+ sitemap?: {
2681
+ lastmod?: string | Date | undefined;
2682
+ exclude?: boolean | undefined;
2683
+ priority?: number | undefined;
2684
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2685
+ alternateRefs?: {
2686
+ href: string;
2687
+ hreflang: string;
2688
+ }[] | undefined;
2689
+ images?: {
2690
+ loc: string;
2691
+ caption?: string | undefined;
2692
+ title?: string | undefined;
2693
+ }[] | undefined;
2694
+ news?: {
2695
+ title: string;
2696
+ publication: {
2697
+ name: string;
2698
+ language: string;
2699
+ };
2700
+ publicationDate: string | Date;
2701
+ } | undefined;
2702
+ } | undefined;
2703
+ fromCrawl?: boolean | undefined;
2704
+ };
2705
+ html: string;
2706
+ }, ...args: unknown[]) => any) | undefined;
2707
+ } | undefined;
2708
+ };
2709
+ export type TanStackStartOutputConfig = ReturnType<typeof getTanStackStartOptions>;
2710
+ export declare const clientDistDir = ".tanstack-start/build/client-dist";
2711
+ export declare const ssrEntryFile = "ssr.mjs";
2712
+ export declare function TanStackStartVitePluginCore(framework: CompileStartFrameworkOptions, opts: TanStackStartOutputConfig): Array<PluginOption>;
2713
+ export {};