@tanstack/start-plugin-core 1.132.0-alpha.9 → 1.132.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.
- package/dist/esm/constants.d.ts +2 -1
- package/dist/esm/constants.js +3 -2
- package/dist/esm/constants.js.map +1 -1
- package/dist/esm/create-server-fn-plugin/compiler.d.ts +8 -5
- package/dist/esm/create-server-fn-plugin/compiler.js +74 -46
- package/dist/esm/create-server-fn-plugin/compiler.js.map +1 -1
- package/dist/esm/create-server-fn-plugin/handleCreateMiddleware.d.ts +5 -0
- package/dist/esm/{start-compiler-plugin/middleware.js → create-server-fn-plugin/handleCreateMiddleware.js} +11 -11
- package/dist/esm/create-server-fn-plugin/handleCreateMiddleware.js.map +1 -0
- package/dist/esm/create-server-fn-plugin/handleCreateServerFn.js +8 -8
- package/dist/esm/create-server-fn-plugin/handleCreateServerFn.js.map +1 -1
- package/dist/esm/create-server-fn-plugin/plugin.d.ts +1 -1
- package/dist/esm/create-server-fn-plugin/plugin.js +22 -7
- package/dist/esm/create-server-fn-plugin/plugin.js.map +1 -1
- package/dist/esm/dev-server-plugin/plugin.d.ts +4 -2
- package/dist/esm/dev-server-plugin/plugin.js +6 -2
- package/dist/esm/dev-server-plugin/plugin.js.map +1 -1
- package/dist/esm/plugin.d.ts +12 -6
- package/dist/esm/plugin.js +54 -65
- package/dist/esm/plugin.js.map +1 -1
- package/dist/esm/resolve-entries.d.ts +0 -1
- package/dist/esm/resolve-entries.js +1 -1
- package/dist/esm/resolve-entries.js.map +1 -1
- package/dist/esm/schema.d.ts +375 -308
- package/dist/esm/schema.js +23 -11
- package/dist/esm/schema.js.map +1 -1
- package/dist/esm/start-compiler-plugin/compilers.js +17 -49
- package/dist/esm/start-compiler-plugin/compilers.js.map +1 -1
- package/dist/esm/start-compiler-plugin/constants.d.ts +1 -1
- package/dist/esm/start-compiler-plugin/constants.js +1 -5
- package/dist/esm/start-compiler-plugin/constants.js.map +1 -1
- package/dist/esm/start-router-plugin/constants.d.ts +1 -0
- package/dist/esm/start-router-plugin/constants.js +5 -0
- package/dist/esm/start-router-plugin/constants.js.map +1 -0
- package/dist/esm/start-router-plugin/generator-plugins/routes-manifest-plugin.js +3 -9
- package/dist/esm/start-router-plugin/generator-plugins/routes-manifest-plugin.js.map +1 -1
- package/dist/esm/start-router-plugin/plugin.d.ts +3 -2
- package/dist/esm/start-router-plugin/plugin.js +191 -31
- package/dist/esm/start-router-plugin/plugin.js.map +1 -1
- package/dist/esm/start-router-plugin/pruneServerOnlySubtrees.d.ts +8 -0
- package/dist/esm/start-router-plugin/pruneServerOnlySubtrees.js +34 -0
- package/dist/esm/start-router-plugin/pruneServerOnlySubtrees.js.map +1 -0
- package/package.json +8 -8
- package/src/constants.ts +3 -2
- package/src/create-server-fn-plugin/compiler.ts +99 -57
- package/src/{start-compiler-plugin/middleware.ts → create-server-fn-plugin/handleCreateMiddleware.ts} +15 -12
- package/src/create-server-fn-plugin/handleCreateServerFn.ts +11 -8
- package/src/create-server-fn-plugin/plugin.ts +24 -9
- package/src/dev-server-plugin/plugin.ts +6 -3
- package/src/plugin.ts +76 -84
- package/src/resolve-entries.ts +1 -2
- package/src/schema.ts +31 -14
- package/src/start-compiler-plugin/compilers.ts +18 -51
- package/src/start-compiler-plugin/constants.ts +0 -4
- package/src/start-router-plugin/constants.ts +1 -0
- package/src/start-router-plugin/generator-plugins/routes-manifest-plugin.ts +3 -9
- package/src/start-router-plugin/plugin.ts +233 -45
- package/src/start-router-plugin/pruneServerOnlySubtrees.ts +51 -0
- package/dist/esm/debug.js +0 -5
- package/dist/esm/debug.js.map +0 -1
- package/dist/esm/start-compiler-plugin/middleware.d.ts +0 -4
- package/dist/esm/start-compiler-plugin/middleware.js.map +0 -1
- package/dist/esm/start-compiler-plugin/serverFileRoute.d.ts +0 -4
- package/dist/esm/start-compiler-plugin/serverFileRoute.js +0 -38
- package/dist/esm/start-compiler-plugin/serverFileRoute.js.map +0 -1
- package/dist/esm/start-router-plugin/generator-plugins/server-routes-plugin.d.ts +0 -2
- package/dist/esm/start-router-plugin/generator-plugins/server-routes-plugin.js +0 -119
- package/dist/esm/start-router-plugin/generator-plugins/server-routes-plugin.js.map +0 -1
- package/dist/esm/start-router-plugin/route-tree-client-plugin.d.ts +0 -6
- package/dist/esm/start-router-plugin/route-tree-client-plugin.js +0 -56
- package/dist/esm/start-router-plugin/route-tree-client-plugin.js.map +0 -1
- package/dist/esm/start-router-plugin/virtual-route-tree-plugin.d.ts +0 -3
- package/dist/esm/start-router-plugin/virtual-route-tree-plugin.js +0 -29
- package/dist/esm/start-router-plugin/virtual-route-tree-plugin.js.map +0 -1
- package/src/start-compiler-plugin/serverFileRoute.ts +0 -59
- package/src/start-router-plugin/generator-plugins/server-routes-plugin.ts +0 -138
- package/src/start-router-plugin/route-tree-client-plugin.ts +0 -77
- package/src/start-router-plugin/virtual-route-tree-plugin.ts +0 -29
package/dist/esm/schema.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
|
|
2
|
+
import { TanStackStartVitePluginCoreOptions } from './plugin.js';
|
|
3
|
+
export declare function parseStartConfig(opts: z.input<typeof tanstackStartOptionsSchema>, corePluginOpts: TanStackStartVitePluginCoreOptions, root: string): {
|
|
3
4
|
router: {
|
|
4
|
-
target:
|
|
5
|
+
target: import('./start-compiler-plugin/compilers.js').CompileStartFrameworkOptions;
|
|
5
6
|
routeFileIgnorePrefix: string;
|
|
6
7
|
routesDirectory: string;
|
|
7
8
|
quoteStyle: "single" | "double";
|
|
@@ -14,13 +15,21 @@ export declare function parseStartConfig(opts?: z.input<typeof tanstackStartOpti
|
|
|
14
15
|
disableTypes: boolean;
|
|
15
16
|
addExtensions: boolean;
|
|
16
17
|
enableRouteTreeFormatting: boolean;
|
|
17
|
-
routeTreeFileFooter: string[];
|
|
18
18
|
tmpDir: string;
|
|
19
|
+
importRoutesUsingAbsolutePaths: boolean;
|
|
20
|
+
enableRouteGeneration?: boolean | undefined;
|
|
21
|
+
codeSplittingOptions?: import('@tanstack/router-plugin').CodeSplittingOptions | undefined;
|
|
22
|
+
plugin?: {
|
|
23
|
+
vite?: {
|
|
24
|
+
environmentName?: string | undefined;
|
|
25
|
+
} | undefined;
|
|
26
|
+
} | undefined;
|
|
19
27
|
virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
20
28
|
routeFilePrefix?: string | undefined;
|
|
21
29
|
routeFileIgnorePattern?: string | undefined;
|
|
22
|
-
pathParamsAllowedCharacters?: ("
|
|
30
|
+
pathParamsAllowedCharacters?: ("+" | "&" | ";" | ":" | "@" | "=" | "$" | ",")[] | undefined;
|
|
23
31
|
verboseFileRoutes?: boolean | undefined;
|
|
32
|
+
routeTreeFileFooter?: string[] | ((...args: unknown[]) => string[]) | undefined;
|
|
24
33
|
autoCodeSplitting?: boolean | undefined;
|
|
25
34
|
customScaffolding?: {
|
|
26
35
|
routeTemplate?: string | undefined;
|
|
@@ -32,7 +41,6 @@ export declare function parseStartConfig(opts?: z.input<typeof tanstackStartOpti
|
|
|
32
41
|
plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
|
|
33
42
|
entry?: string | undefined;
|
|
34
43
|
};
|
|
35
|
-
srcDirectory: string;
|
|
36
44
|
client: {
|
|
37
45
|
base: string;
|
|
38
46
|
entry?: string | undefined;
|
|
@@ -40,13 +48,17 @@ export declare function parseStartConfig(opts?: z.input<typeof tanstackStartOpti
|
|
|
40
48
|
server: {
|
|
41
49
|
entry?: string | undefined;
|
|
42
50
|
};
|
|
43
|
-
serverFns: {
|
|
44
|
-
base: string;
|
|
45
|
-
};
|
|
46
51
|
public: {
|
|
47
52
|
base: string;
|
|
48
53
|
dir: string;
|
|
49
54
|
};
|
|
55
|
+
srcDirectory: string;
|
|
56
|
+
start: {
|
|
57
|
+
entry?: string | undefined;
|
|
58
|
+
};
|
|
59
|
+
serverFns: {
|
|
60
|
+
base: string;
|
|
61
|
+
};
|
|
50
62
|
pages: {
|
|
51
63
|
path: string;
|
|
52
64
|
sitemap?: {
|
|
@@ -60,8 +72,8 @@ export declare function parseStartConfig(opts?: z.input<typeof tanstackStartOpti
|
|
|
60
72
|
}[] | undefined;
|
|
61
73
|
images?: {
|
|
62
74
|
loc: string;
|
|
63
|
-
caption?: string | undefined;
|
|
64
75
|
title?: string | undefined;
|
|
76
|
+
caption?: string | undefined;
|
|
65
77
|
}[] | undefined;
|
|
66
78
|
news?: {
|
|
67
79
|
title: string;
|
|
@@ -81,6 +93,7 @@ export declare function parseStartConfig(opts?: z.input<typeof tanstackStartOpti
|
|
|
81
93
|
retryCount?: number | undefined;
|
|
82
94
|
retryDelay?: number | undefined;
|
|
83
95
|
onSuccess?: ((args_0: {
|
|
96
|
+
html: string;
|
|
84
97
|
page: {
|
|
85
98
|
path: string;
|
|
86
99
|
sitemap?: {
|
|
@@ -94,8 +107,8 @@ export declare function parseStartConfig(opts?: z.input<typeof tanstackStartOpti
|
|
|
94
107
|
}[] | undefined;
|
|
95
108
|
images?: {
|
|
96
109
|
loc: string;
|
|
97
|
-
caption?: string | undefined;
|
|
98
110
|
title?: string | undefined;
|
|
111
|
+
caption?: string | undefined;
|
|
99
112
|
}[] | undefined;
|
|
100
113
|
news?: {
|
|
101
114
|
title: string;
|
|
@@ -108,11 +121,53 @@ export declare function parseStartConfig(opts?: z.input<typeof tanstackStartOpti
|
|
|
108
121
|
} | undefined;
|
|
109
122
|
fromCrawl?: boolean | undefined;
|
|
110
123
|
};
|
|
111
|
-
html: string;
|
|
112
124
|
}, ...args: unknown[]) => any) | undefined;
|
|
113
125
|
headers?: Record<string, string> | undefined;
|
|
114
126
|
} | undefined;
|
|
115
127
|
}[];
|
|
128
|
+
spa?: {
|
|
129
|
+
enabled: boolean;
|
|
130
|
+
prerender: {
|
|
131
|
+
enabled: boolean;
|
|
132
|
+
outputPath: string;
|
|
133
|
+
autoSubfolderIndex?: boolean | undefined;
|
|
134
|
+
crawlLinks: boolean;
|
|
135
|
+
retryCount: number;
|
|
136
|
+
retryDelay?: number | undefined;
|
|
137
|
+
onSuccess?: ((args_0: {
|
|
138
|
+
html: string;
|
|
139
|
+
page: {
|
|
140
|
+
path: string;
|
|
141
|
+
sitemap?: {
|
|
142
|
+
exclude?: boolean | undefined;
|
|
143
|
+
priority?: number | undefined;
|
|
144
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
145
|
+
lastmod?: string | Date | undefined;
|
|
146
|
+
alternateRefs?: {
|
|
147
|
+
href: string;
|
|
148
|
+
hreflang: string;
|
|
149
|
+
}[] | undefined;
|
|
150
|
+
images?: {
|
|
151
|
+
loc: string;
|
|
152
|
+
title?: string | undefined;
|
|
153
|
+
caption?: string | undefined;
|
|
154
|
+
}[] | undefined;
|
|
155
|
+
news?: {
|
|
156
|
+
title: string;
|
|
157
|
+
publication: {
|
|
158
|
+
name: string;
|
|
159
|
+
language: string;
|
|
160
|
+
};
|
|
161
|
+
publicationDate: string | Date;
|
|
162
|
+
} | undefined;
|
|
163
|
+
} | undefined;
|
|
164
|
+
fromCrawl?: boolean | undefined;
|
|
165
|
+
};
|
|
166
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
167
|
+
headers?: Record<string, string> | undefined;
|
|
168
|
+
};
|
|
169
|
+
maskPath: string;
|
|
170
|
+
} | undefined;
|
|
116
171
|
sitemap?: {
|
|
117
172
|
enabled: boolean;
|
|
118
173
|
outputPath: string;
|
|
@@ -132,8 +187,8 @@ export declare function parseStartConfig(opts?: z.input<typeof tanstackStartOpti
|
|
|
132
187
|
}[] | undefined;
|
|
133
188
|
images?: {
|
|
134
189
|
loc: string;
|
|
135
|
-
caption?: string | undefined;
|
|
136
190
|
title?: string | undefined;
|
|
191
|
+
caption?: string | undefined;
|
|
137
192
|
}[] | undefined;
|
|
138
193
|
news?: {
|
|
139
194
|
title: string;
|
|
@@ -153,6 +208,7 @@ export declare function parseStartConfig(opts?: z.input<typeof tanstackStartOpti
|
|
|
153
208
|
retryCount?: number | undefined;
|
|
154
209
|
retryDelay?: number | undefined;
|
|
155
210
|
onSuccess?: ((args_0: {
|
|
211
|
+
html: string;
|
|
156
212
|
page: {
|
|
157
213
|
path: string;
|
|
158
214
|
sitemap?: {
|
|
@@ -166,8 +222,8 @@ export declare function parseStartConfig(opts?: z.input<typeof tanstackStartOpti
|
|
|
166
222
|
}[] | undefined;
|
|
167
223
|
images?: {
|
|
168
224
|
loc: string;
|
|
169
|
-
caption?: string | undefined;
|
|
170
225
|
title?: string | undefined;
|
|
226
|
+
caption?: string | undefined;
|
|
171
227
|
}[] | undefined;
|
|
172
228
|
news?: {
|
|
173
229
|
title: string;
|
|
@@ -180,7 +236,6 @@ export declare function parseStartConfig(opts?: z.input<typeof tanstackStartOpti
|
|
|
180
236
|
} | undefined;
|
|
181
237
|
fromCrawl?: boolean | undefined;
|
|
182
238
|
};
|
|
183
|
-
html: string;
|
|
184
239
|
}, ...args: unknown[]) => any) | undefined;
|
|
185
240
|
headers?: Record<string, string> | undefined;
|
|
186
241
|
} | undefined;
|
|
@@ -196,6 +251,7 @@ export declare function parseStartConfig(opts?: z.input<typeof tanstackStartOpti
|
|
|
196
251
|
retryCount?: number | undefined;
|
|
197
252
|
retryDelay?: number | undefined;
|
|
198
253
|
onSuccess?: ((args_0: {
|
|
254
|
+
html: string;
|
|
199
255
|
page: {
|
|
200
256
|
path: string;
|
|
201
257
|
sitemap?: {
|
|
@@ -209,8 +265,8 @@ export declare function parseStartConfig(opts?: z.input<typeof tanstackStartOpti
|
|
|
209
265
|
}[] | undefined;
|
|
210
266
|
images?: {
|
|
211
267
|
loc: string;
|
|
212
|
-
caption?: string | undefined;
|
|
213
268
|
title?: string | undefined;
|
|
269
|
+
caption?: string | undefined;
|
|
214
270
|
}[] | undefined;
|
|
215
271
|
news?: {
|
|
216
272
|
title: string;
|
|
@@ -223,53 +279,9 @@ export declare function parseStartConfig(opts?: z.input<typeof tanstackStartOpti
|
|
|
223
279
|
} | undefined;
|
|
224
280
|
fromCrawl?: boolean | undefined;
|
|
225
281
|
};
|
|
226
|
-
html: string;
|
|
227
282
|
}, ...args: unknown[]) => any) | undefined;
|
|
228
283
|
headers?: Record<string, string> | undefined;
|
|
229
284
|
}) | undefined;
|
|
230
|
-
spa?: {
|
|
231
|
-
enabled: boolean;
|
|
232
|
-
prerender: {
|
|
233
|
-
enabled: boolean;
|
|
234
|
-
outputPath: string;
|
|
235
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
236
|
-
crawlLinks: boolean;
|
|
237
|
-
retryCount: number;
|
|
238
|
-
retryDelay?: number | undefined;
|
|
239
|
-
onSuccess?: ((args_0: {
|
|
240
|
-
page: {
|
|
241
|
-
path: string;
|
|
242
|
-
sitemap?: {
|
|
243
|
-
exclude?: boolean | undefined;
|
|
244
|
-
priority?: number | undefined;
|
|
245
|
-
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
246
|
-
lastmod?: string | Date | undefined;
|
|
247
|
-
alternateRefs?: {
|
|
248
|
-
href: string;
|
|
249
|
-
hreflang: string;
|
|
250
|
-
}[] | undefined;
|
|
251
|
-
images?: {
|
|
252
|
-
loc: string;
|
|
253
|
-
caption?: string | undefined;
|
|
254
|
-
title?: string | undefined;
|
|
255
|
-
}[] | undefined;
|
|
256
|
-
news?: {
|
|
257
|
-
title: string;
|
|
258
|
-
publication: {
|
|
259
|
-
name: string;
|
|
260
|
-
language: string;
|
|
261
|
-
};
|
|
262
|
-
publicationDate: string | Date;
|
|
263
|
-
} | undefined;
|
|
264
|
-
} | undefined;
|
|
265
|
-
fromCrawl?: boolean | undefined;
|
|
266
|
-
};
|
|
267
|
-
html: string;
|
|
268
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
269
|
-
headers?: Record<string, string> | undefined;
|
|
270
|
-
};
|
|
271
|
-
maskPath: string;
|
|
272
|
-
} | undefined;
|
|
273
285
|
vite?: {
|
|
274
286
|
installDevServerMiddleware?: boolean | undefined;
|
|
275
287
|
} | undefined;
|
|
@@ -297,12 +309,12 @@ declare const pageSchema: z.ZodObject<{
|
|
|
297
309
|
title: z.ZodOptional<z.ZodString>;
|
|
298
310
|
}, "strip", z.ZodTypeAny, {
|
|
299
311
|
loc: string;
|
|
300
|
-
caption?: string | undefined;
|
|
301
312
|
title?: string | undefined;
|
|
313
|
+
caption?: string | undefined;
|
|
302
314
|
}, {
|
|
303
315
|
loc: string;
|
|
304
|
-
caption?: string | undefined;
|
|
305
316
|
title?: string | undefined;
|
|
317
|
+
caption?: string | undefined;
|
|
306
318
|
}>, "many">>;
|
|
307
319
|
news: z.ZodOptional<z.ZodObject<{
|
|
308
320
|
publication: z.ZodObject<{
|
|
@@ -343,8 +355,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
343
355
|
}[] | undefined;
|
|
344
356
|
images?: {
|
|
345
357
|
loc: string;
|
|
346
|
-
caption?: string | undefined;
|
|
347
358
|
title?: string | undefined;
|
|
359
|
+
caption?: string | undefined;
|
|
348
360
|
}[] | undefined;
|
|
349
361
|
news?: {
|
|
350
362
|
title: string;
|
|
@@ -365,8 +377,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
365
377
|
}[] | undefined;
|
|
366
378
|
images?: {
|
|
367
379
|
loc: string;
|
|
368
|
-
caption?: string | undefined;
|
|
369
380
|
title?: string | undefined;
|
|
381
|
+
caption?: string | undefined;
|
|
370
382
|
}[] | undefined;
|
|
371
383
|
news?: {
|
|
372
384
|
title: string;
|
|
@@ -410,12 +422,12 @@ declare const pageSchema: z.ZodObject<{
|
|
|
410
422
|
title: z.ZodOptional<z.ZodString>;
|
|
411
423
|
}, "strip", z.ZodTypeAny, {
|
|
412
424
|
loc: string;
|
|
413
|
-
caption?: string | undefined;
|
|
414
425
|
title?: string | undefined;
|
|
426
|
+
caption?: string | undefined;
|
|
415
427
|
}, {
|
|
416
428
|
loc: string;
|
|
417
|
-
caption?: string | undefined;
|
|
418
429
|
title?: string | undefined;
|
|
430
|
+
caption?: string | undefined;
|
|
419
431
|
}>, "many">>;
|
|
420
432
|
news: z.ZodOptional<z.ZodObject<{
|
|
421
433
|
publication: z.ZodObject<{
|
|
@@ -456,8 +468,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
456
468
|
}[] | undefined;
|
|
457
469
|
images?: {
|
|
458
470
|
loc: string;
|
|
459
|
-
caption?: string | undefined;
|
|
460
471
|
title?: string | undefined;
|
|
472
|
+
caption?: string | undefined;
|
|
461
473
|
}[] | undefined;
|
|
462
474
|
news?: {
|
|
463
475
|
title: string;
|
|
@@ -478,8 +490,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
478
490
|
}[] | undefined;
|
|
479
491
|
images?: {
|
|
480
492
|
loc: string;
|
|
481
|
-
caption?: string | undefined;
|
|
482
493
|
title?: string | undefined;
|
|
494
|
+
caption?: string | undefined;
|
|
483
495
|
}[] | undefined;
|
|
484
496
|
news?: {
|
|
485
497
|
title: string;
|
|
@@ -504,8 +516,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
504
516
|
}[] | undefined;
|
|
505
517
|
images?: {
|
|
506
518
|
loc: string;
|
|
507
|
-
caption?: string | undefined;
|
|
508
519
|
title?: string | undefined;
|
|
520
|
+
caption?: string | undefined;
|
|
509
521
|
}[] | undefined;
|
|
510
522
|
news?: {
|
|
511
523
|
title: string;
|
|
@@ -530,8 +542,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
530
542
|
}[] | undefined;
|
|
531
543
|
images?: {
|
|
532
544
|
loc: string;
|
|
533
|
-
caption?: string | undefined;
|
|
534
545
|
title?: string | undefined;
|
|
546
|
+
caption?: string | undefined;
|
|
535
547
|
}[] | undefined;
|
|
536
548
|
news?: {
|
|
537
549
|
title: string;
|
|
@@ -546,6 +558,7 @@ declare const pageSchema: z.ZodObject<{
|
|
|
546
558
|
}>;
|
|
547
559
|
html: z.ZodString;
|
|
548
560
|
}, "strip", z.ZodTypeAny, {
|
|
561
|
+
html: string;
|
|
549
562
|
page: {
|
|
550
563
|
path: string;
|
|
551
564
|
sitemap?: {
|
|
@@ -559,8 +572,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
559
572
|
}[] | undefined;
|
|
560
573
|
images?: {
|
|
561
574
|
loc: string;
|
|
562
|
-
caption?: string | undefined;
|
|
563
575
|
title?: string | undefined;
|
|
576
|
+
caption?: string | undefined;
|
|
564
577
|
}[] | undefined;
|
|
565
578
|
news?: {
|
|
566
579
|
title: string;
|
|
@@ -573,8 +586,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
573
586
|
} | undefined;
|
|
574
587
|
fromCrawl?: boolean | undefined;
|
|
575
588
|
};
|
|
576
|
-
html: string;
|
|
577
589
|
}, {
|
|
590
|
+
html: string;
|
|
578
591
|
page: {
|
|
579
592
|
path: string;
|
|
580
593
|
sitemap?: {
|
|
@@ -588,8 +601,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
588
601
|
}[] | undefined;
|
|
589
602
|
images?: {
|
|
590
603
|
loc: string;
|
|
591
|
-
caption?: string | undefined;
|
|
592
604
|
title?: string | undefined;
|
|
605
|
+
caption?: string | undefined;
|
|
593
606
|
}[] | undefined;
|
|
594
607
|
news?: {
|
|
595
608
|
title: string;
|
|
@@ -602,7 +615,6 @@ declare const pageSchema: z.ZodObject<{
|
|
|
602
615
|
} | undefined;
|
|
603
616
|
fromCrawl?: boolean | undefined;
|
|
604
617
|
};
|
|
605
|
-
html: string;
|
|
606
618
|
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
607
619
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
608
620
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -613,6 +625,7 @@ declare const pageSchema: z.ZodObject<{
|
|
|
613
625
|
retryCount?: number | undefined;
|
|
614
626
|
retryDelay?: number | undefined;
|
|
615
627
|
onSuccess?: ((args_0: {
|
|
628
|
+
html: string;
|
|
616
629
|
page: {
|
|
617
630
|
path: string;
|
|
618
631
|
sitemap?: {
|
|
@@ -626,8 +639,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
626
639
|
}[] | undefined;
|
|
627
640
|
images?: {
|
|
628
641
|
loc: string;
|
|
629
|
-
caption?: string | undefined;
|
|
630
642
|
title?: string | undefined;
|
|
643
|
+
caption?: string | undefined;
|
|
631
644
|
}[] | undefined;
|
|
632
645
|
news?: {
|
|
633
646
|
title: string;
|
|
@@ -640,7 +653,6 @@ declare const pageSchema: z.ZodObject<{
|
|
|
640
653
|
} | undefined;
|
|
641
654
|
fromCrawl?: boolean | undefined;
|
|
642
655
|
};
|
|
643
|
-
html: string;
|
|
644
656
|
}, ...args: unknown[]) => any) | undefined;
|
|
645
657
|
headers?: Record<string, string> | undefined;
|
|
646
658
|
}, {
|
|
@@ -651,6 +663,7 @@ declare const pageSchema: z.ZodObject<{
|
|
|
651
663
|
retryCount?: number | undefined;
|
|
652
664
|
retryDelay?: number | undefined;
|
|
653
665
|
onSuccess?: ((args_0: {
|
|
666
|
+
html: string;
|
|
654
667
|
page: {
|
|
655
668
|
path: string;
|
|
656
669
|
sitemap?: {
|
|
@@ -664,8 +677,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
664
677
|
}[] | undefined;
|
|
665
678
|
images?: {
|
|
666
679
|
loc: string;
|
|
667
|
-
caption?: string | undefined;
|
|
668
680
|
title?: string | undefined;
|
|
681
|
+
caption?: string | undefined;
|
|
669
682
|
}[] | undefined;
|
|
670
683
|
news?: {
|
|
671
684
|
title: string;
|
|
@@ -678,7 +691,6 @@ declare const pageSchema: z.ZodObject<{
|
|
|
678
691
|
} | undefined;
|
|
679
692
|
fromCrawl?: boolean | undefined;
|
|
680
693
|
};
|
|
681
|
-
html: string;
|
|
682
694
|
}, ...args: unknown[]) => any) | undefined;
|
|
683
695
|
headers?: Record<string, string> | undefined;
|
|
684
696
|
}>>;
|
|
@@ -695,8 +707,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
695
707
|
}[] | undefined;
|
|
696
708
|
images?: {
|
|
697
709
|
loc: string;
|
|
698
|
-
caption?: string | undefined;
|
|
699
710
|
title?: string | undefined;
|
|
711
|
+
caption?: string | undefined;
|
|
700
712
|
}[] | undefined;
|
|
701
713
|
news?: {
|
|
702
714
|
title: string;
|
|
@@ -716,6 +728,7 @@ declare const pageSchema: z.ZodObject<{
|
|
|
716
728
|
retryCount?: number | undefined;
|
|
717
729
|
retryDelay?: number | undefined;
|
|
718
730
|
onSuccess?: ((args_0: {
|
|
731
|
+
html: string;
|
|
719
732
|
page: {
|
|
720
733
|
path: string;
|
|
721
734
|
sitemap?: {
|
|
@@ -729,8 +742,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
729
742
|
}[] | undefined;
|
|
730
743
|
images?: {
|
|
731
744
|
loc: string;
|
|
732
|
-
caption?: string | undefined;
|
|
733
745
|
title?: string | undefined;
|
|
746
|
+
caption?: string | undefined;
|
|
734
747
|
}[] | undefined;
|
|
735
748
|
news?: {
|
|
736
749
|
title: string;
|
|
@@ -743,7 +756,6 @@ declare const pageSchema: z.ZodObject<{
|
|
|
743
756
|
} | undefined;
|
|
744
757
|
fromCrawl?: boolean | undefined;
|
|
745
758
|
};
|
|
746
|
-
html: string;
|
|
747
759
|
}, ...args: unknown[]) => any) | undefined;
|
|
748
760
|
headers?: Record<string, string> | undefined;
|
|
749
761
|
} | undefined;
|
|
@@ -760,8 +772,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
760
772
|
}[] | undefined;
|
|
761
773
|
images?: {
|
|
762
774
|
loc: string;
|
|
763
|
-
caption?: string | undefined;
|
|
764
775
|
title?: string | undefined;
|
|
776
|
+
caption?: string | undefined;
|
|
765
777
|
}[] | undefined;
|
|
766
778
|
news?: {
|
|
767
779
|
title: string;
|
|
@@ -781,6 +793,7 @@ declare const pageSchema: z.ZodObject<{
|
|
|
781
793
|
retryCount?: number | undefined;
|
|
782
794
|
retryDelay?: number | undefined;
|
|
783
795
|
onSuccess?: ((args_0: {
|
|
796
|
+
html: string;
|
|
784
797
|
page: {
|
|
785
798
|
path: string;
|
|
786
799
|
sitemap?: {
|
|
@@ -794,8 +807,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
794
807
|
}[] | undefined;
|
|
795
808
|
images?: {
|
|
796
809
|
loc: string;
|
|
797
|
-
caption?: string | undefined;
|
|
798
810
|
title?: string | undefined;
|
|
811
|
+
caption?: string | undefined;
|
|
799
812
|
}[] | undefined;
|
|
800
813
|
news?: {
|
|
801
814
|
title: string;
|
|
@@ -808,13 +821,19 @@ declare const pageSchema: z.ZodObject<{
|
|
|
808
821
|
} | undefined;
|
|
809
822
|
fromCrawl?: boolean | undefined;
|
|
810
823
|
};
|
|
811
|
-
html: string;
|
|
812
824
|
}, ...args: unknown[]) => any) | undefined;
|
|
813
825
|
headers?: Record<string, string> | undefined;
|
|
814
826
|
} | undefined;
|
|
815
827
|
}>;
|
|
816
828
|
declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
817
829
|
srcDirectory: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
830
|
+
start: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
831
|
+
entry: z.ZodOptional<z.ZodString>;
|
|
832
|
+
}, "strip", z.ZodTypeAny, {
|
|
833
|
+
entry?: string | undefined;
|
|
834
|
+
}, {
|
|
835
|
+
entry?: string | undefined;
|
|
836
|
+
}>>>;
|
|
818
837
|
router: z.ZodDefault<z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
819
838
|
entry: z.ZodOptional<z.ZodString>;
|
|
820
839
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -822,7 +841,14 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
822
841
|
}, {
|
|
823
842
|
entry?: string | undefined;
|
|
824
843
|
}>, z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
825
|
-
|
|
844
|
+
plugins: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodType<import('@tanstack/router-generator').GeneratorPlugin, z.ZodTypeDef, import('@tanstack/router-generator').GeneratorPlugin>, "many">>>;
|
|
845
|
+
experimental: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
846
|
+
enableCodeSplitting: z.ZodOptional<z.ZodBoolean>;
|
|
847
|
+
}, "strip", z.ZodTypeAny, {
|
|
848
|
+
enableCodeSplitting?: boolean | undefined;
|
|
849
|
+
}, {
|
|
850
|
+
enableCodeSplitting?: boolean | undefined;
|
|
851
|
+
}>>>;
|
|
826
852
|
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]>>>;
|
|
827
853
|
routeFilePrefix: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
828
854
|
routeFileIgnorePrefix: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodString>>>;
|
|
@@ -837,10 +863,9 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
837
863
|
pathParamsAllowedCharacters: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodEnum<[";", ":", "@", "&", "=", "+", "$", ","]>, "many">>>;
|
|
838
864
|
generatedRouteTree: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodString>>>;
|
|
839
865
|
disableTypes: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>;
|
|
840
|
-
verboseFileRoutes: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
841
866
|
addExtensions: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>;
|
|
842
867
|
enableRouteTreeFormatting: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>;
|
|
843
|
-
routeTreeFileFooter: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many"
|
|
868
|
+
routeTreeFileFooter: z.ZodOptional<z.ZodOptional<z.ZodUnion<[z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>, z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodArray<z.ZodString, "many">>]>>>;
|
|
844
869
|
customScaffolding: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
845
870
|
routeTemplate: z.ZodOptional<z.ZodString>;
|
|
846
871
|
lazyRouteTemplate: z.ZodOptional<z.ZodString>;
|
|
@@ -851,17 +876,32 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
851
876
|
routeTemplate?: string | undefined;
|
|
852
877
|
lazyRouteTemplate?: string | undefined;
|
|
853
878
|
}>>>;
|
|
854
|
-
|
|
855
|
-
|
|
879
|
+
tmpDir: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodString>>>;
|
|
880
|
+
importRoutesUsingAbsolutePaths: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>;
|
|
881
|
+
enableRouteGeneration: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
882
|
+
codeSplittingOptions: z.ZodOptional<z.ZodOptional<z.ZodType<import('@tanstack/router-plugin').CodeSplittingOptions, z.ZodTypeDef, import('@tanstack/router-plugin').CodeSplittingOptions>>>;
|
|
883
|
+
plugin: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
884
|
+
vite: z.ZodOptional<z.ZodObject<{
|
|
885
|
+
environmentName: z.ZodOptional<z.ZodString>;
|
|
886
|
+
}, "strip", z.ZodTypeAny, {
|
|
887
|
+
environmentName?: string | undefined;
|
|
888
|
+
}, {
|
|
889
|
+
environmentName?: string | undefined;
|
|
890
|
+
}>>;
|
|
856
891
|
}, "strip", z.ZodTypeAny, {
|
|
857
|
-
|
|
892
|
+
vite?: {
|
|
893
|
+
environmentName?: string | undefined;
|
|
894
|
+
} | undefined;
|
|
858
895
|
}, {
|
|
859
|
-
|
|
896
|
+
vite?: {
|
|
897
|
+
environmentName?: string | undefined;
|
|
898
|
+
} | undefined;
|
|
860
899
|
}>>>;
|
|
861
|
-
plugins: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodType<import('@tanstack/router-generator').GeneratorPlugin, z.ZodTypeDef, import('@tanstack/router-generator').GeneratorPlugin>, "many">>>;
|
|
862
|
-
tmpDir: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodString>>>;
|
|
863
900
|
}, "strip", z.ZodTypeAny, {
|
|
864
|
-
|
|
901
|
+
plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
|
|
902
|
+
experimental?: {
|
|
903
|
+
enableCodeSplitting?: boolean | undefined;
|
|
904
|
+
} | undefined;
|
|
865
905
|
virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
866
906
|
routeFilePrefix?: string | undefined;
|
|
867
907
|
routeFileIgnorePrefix?: string | undefined;
|
|
@@ -873,24 +913,30 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
873
913
|
routeTreeFileHeader?: string[] | undefined;
|
|
874
914
|
indexToken?: string | undefined;
|
|
875
915
|
routeToken?: string | undefined;
|
|
876
|
-
pathParamsAllowedCharacters?: ("
|
|
916
|
+
pathParamsAllowedCharacters?: ("+" | "&" | ";" | ":" | "@" | "=" | "$" | ",")[] | undefined;
|
|
877
917
|
generatedRouteTree?: string | undefined;
|
|
878
918
|
disableTypes?: boolean | undefined;
|
|
879
|
-
verboseFileRoutes?: boolean | undefined;
|
|
880
919
|
addExtensions?: boolean | undefined;
|
|
881
920
|
enableRouteTreeFormatting?: boolean | undefined;
|
|
882
|
-
routeTreeFileFooter?: string[] | undefined;
|
|
921
|
+
routeTreeFileFooter?: string[] | ((...args: unknown[]) => string[]) | undefined;
|
|
883
922
|
customScaffolding?: {
|
|
884
923
|
routeTemplate?: string | undefined;
|
|
885
924
|
lazyRouteTemplate?: string | undefined;
|
|
886
925
|
} | undefined;
|
|
926
|
+
tmpDir?: string | undefined;
|
|
927
|
+
importRoutesUsingAbsolutePaths?: boolean | undefined;
|
|
928
|
+
enableRouteGeneration?: boolean | undefined;
|
|
929
|
+
codeSplittingOptions?: import('@tanstack/router-plugin').CodeSplittingOptions | undefined;
|
|
930
|
+
plugin?: {
|
|
931
|
+
vite?: {
|
|
932
|
+
environmentName?: string | undefined;
|
|
933
|
+
} | undefined;
|
|
934
|
+
} | undefined;
|
|
935
|
+
}, {
|
|
936
|
+
plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
|
|
887
937
|
experimental?: {
|
|
888
938
|
enableCodeSplitting?: boolean | undefined;
|
|
889
939
|
} | undefined;
|
|
890
|
-
plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
|
|
891
|
-
tmpDir?: string | undefined;
|
|
892
|
-
}, {
|
|
893
|
-
target?: "react" | "solid" | undefined;
|
|
894
940
|
virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
895
941
|
routeFilePrefix?: string | undefined;
|
|
896
942
|
routeFileIgnorePrefix?: string | undefined;
|
|
@@ -902,22 +948,25 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
902
948
|
routeTreeFileHeader?: string[] | undefined;
|
|
903
949
|
indexToken?: string | undefined;
|
|
904
950
|
routeToken?: string | undefined;
|
|
905
|
-
pathParamsAllowedCharacters?: ("
|
|
951
|
+
pathParamsAllowedCharacters?: ("+" | "&" | ";" | ":" | "@" | "=" | "$" | ",")[] | undefined;
|
|
906
952
|
generatedRouteTree?: string | undefined;
|
|
907
953
|
disableTypes?: boolean | undefined;
|
|
908
|
-
verboseFileRoutes?: boolean | undefined;
|
|
909
954
|
addExtensions?: boolean | undefined;
|
|
910
955
|
enableRouteTreeFormatting?: boolean | undefined;
|
|
911
|
-
routeTreeFileFooter?: string[] | undefined;
|
|
956
|
+
routeTreeFileFooter?: string[] | ((...args: unknown[]) => string[]) | undefined;
|
|
912
957
|
customScaffolding?: {
|
|
913
958
|
routeTemplate?: string | undefined;
|
|
914
959
|
lazyRouteTemplate?: string | undefined;
|
|
915
960
|
} | undefined;
|
|
916
|
-
experimental?: {
|
|
917
|
-
enableCodeSplitting?: boolean | undefined;
|
|
918
|
-
} | undefined;
|
|
919
|
-
plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
|
|
920
961
|
tmpDir?: string | undefined;
|
|
962
|
+
importRoutesUsingAbsolutePaths?: boolean | undefined;
|
|
963
|
+
enableRouteGeneration?: boolean | undefined;
|
|
964
|
+
codeSplittingOptions?: import('@tanstack/router-plugin').CodeSplittingOptions | undefined;
|
|
965
|
+
plugin?: {
|
|
966
|
+
vite?: {
|
|
967
|
+
environmentName?: string | undefined;
|
|
968
|
+
} | undefined;
|
|
969
|
+
} | undefined;
|
|
921
970
|
}>>>>>>;
|
|
922
971
|
client: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
923
972
|
entry: z.ZodOptional<z.ZodString>;
|
|
@@ -926,8 +975,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
926
975
|
base: string;
|
|
927
976
|
entry?: string | undefined;
|
|
928
977
|
}, {
|
|
929
|
-
entry?: string | undefined;
|
|
930
978
|
base?: string | undefined;
|
|
979
|
+
entry?: string | undefined;
|
|
931
980
|
}>>>;
|
|
932
981
|
server: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
933
982
|
entry: z.ZodOptional<z.ZodString>;
|
|
@@ -976,12 +1025,12 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
976
1025
|
title: z.ZodOptional<z.ZodString>;
|
|
977
1026
|
}, "strip", z.ZodTypeAny, {
|
|
978
1027
|
loc: string;
|
|
979
|
-
caption?: string | undefined;
|
|
980
1028
|
title?: string | undefined;
|
|
1029
|
+
caption?: string | undefined;
|
|
981
1030
|
}, {
|
|
982
1031
|
loc: string;
|
|
983
|
-
caption?: string | undefined;
|
|
984
1032
|
title?: string | undefined;
|
|
1033
|
+
caption?: string | undefined;
|
|
985
1034
|
}>, "many">>;
|
|
986
1035
|
news: z.ZodOptional<z.ZodObject<{
|
|
987
1036
|
publication: z.ZodObject<{
|
|
@@ -1022,8 +1071,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1022
1071
|
}[] | undefined;
|
|
1023
1072
|
images?: {
|
|
1024
1073
|
loc: string;
|
|
1025
|
-
caption?: string | undefined;
|
|
1026
1074
|
title?: string | undefined;
|
|
1075
|
+
caption?: string | undefined;
|
|
1027
1076
|
}[] | undefined;
|
|
1028
1077
|
news?: {
|
|
1029
1078
|
title: string;
|
|
@@ -1044,8 +1093,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1044
1093
|
}[] | undefined;
|
|
1045
1094
|
images?: {
|
|
1046
1095
|
loc: string;
|
|
1047
|
-
caption?: string | undefined;
|
|
1048
1096
|
title?: string | undefined;
|
|
1097
|
+
caption?: string | undefined;
|
|
1049
1098
|
}[] | undefined;
|
|
1050
1099
|
news?: {
|
|
1051
1100
|
title: string;
|
|
@@ -1089,12 +1138,12 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1089
1138
|
title: z.ZodOptional<z.ZodString>;
|
|
1090
1139
|
}, "strip", z.ZodTypeAny, {
|
|
1091
1140
|
loc: string;
|
|
1092
|
-
caption?: string | undefined;
|
|
1093
1141
|
title?: string | undefined;
|
|
1142
|
+
caption?: string | undefined;
|
|
1094
1143
|
}, {
|
|
1095
1144
|
loc: string;
|
|
1096
|
-
caption?: string | undefined;
|
|
1097
1145
|
title?: string | undefined;
|
|
1146
|
+
caption?: string | undefined;
|
|
1098
1147
|
}>, "many">>;
|
|
1099
1148
|
news: z.ZodOptional<z.ZodObject<{
|
|
1100
1149
|
publication: z.ZodObject<{
|
|
@@ -1135,8 +1184,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1135
1184
|
}[] | undefined;
|
|
1136
1185
|
images?: {
|
|
1137
1186
|
loc: string;
|
|
1138
|
-
caption?: string | undefined;
|
|
1139
1187
|
title?: string | undefined;
|
|
1188
|
+
caption?: string | undefined;
|
|
1140
1189
|
}[] | undefined;
|
|
1141
1190
|
news?: {
|
|
1142
1191
|
title: string;
|
|
@@ -1157,8 +1206,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1157
1206
|
}[] | undefined;
|
|
1158
1207
|
images?: {
|
|
1159
1208
|
loc: string;
|
|
1160
|
-
caption?: string | undefined;
|
|
1161
1209
|
title?: string | undefined;
|
|
1210
|
+
caption?: string | undefined;
|
|
1162
1211
|
}[] | undefined;
|
|
1163
1212
|
news?: {
|
|
1164
1213
|
title: string;
|
|
@@ -1183,8 +1232,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1183
1232
|
}[] | undefined;
|
|
1184
1233
|
images?: {
|
|
1185
1234
|
loc: string;
|
|
1186
|
-
caption?: string | undefined;
|
|
1187
1235
|
title?: string | undefined;
|
|
1236
|
+
caption?: string | undefined;
|
|
1188
1237
|
}[] | undefined;
|
|
1189
1238
|
news?: {
|
|
1190
1239
|
title: string;
|
|
@@ -1209,8 +1258,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1209
1258
|
}[] | undefined;
|
|
1210
1259
|
images?: {
|
|
1211
1260
|
loc: string;
|
|
1212
|
-
caption?: string | undefined;
|
|
1213
1261
|
title?: string | undefined;
|
|
1262
|
+
caption?: string | undefined;
|
|
1214
1263
|
}[] | undefined;
|
|
1215
1264
|
news?: {
|
|
1216
1265
|
title: string;
|
|
@@ -1225,6 +1274,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1225
1274
|
}>;
|
|
1226
1275
|
html: z.ZodString;
|
|
1227
1276
|
}, "strip", z.ZodTypeAny, {
|
|
1277
|
+
html: string;
|
|
1228
1278
|
page: {
|
|
1229
1279
|
path: string;
|
|
1230
1280
|
sitemap?: {
|
|
@@ -1238,8 +1288,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1238
1288
|
}[] | undefined;
|
|
1239
1289
|
images?: {
|
|
1240
1290
|
loc: string;
|
|
1241
|
-
caption?: string | undefined;
|
|
1242
1291
|
title?: string | undefined;
|
|
1292
|
+
caption?: string | undefined;
|
|
1243
1293
|
}[] | undefined;
|
|
1244
1294
|
news?: {
|
|
1245
1295
|
title: string;
|
|
@@ -1252,8 +1302,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1252
1302
|
} | undefined;
|
|
1253
1303
|
fromCrawl?: boolean | undefined;
|
|
1254
1304
|
};
|
|
1255
|
-
html: string;
|
|
1256
1305
|
}, {
|
|
1306
|
+
html: string;
|
|
1257
1307
|
page: {
|
|
1258
1308
|
path: string;
|
|
1259
1309
|
sitemap?: {
|
|
@@ -1267,8 +1317,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1267
1317
|
}[] | undefined;
|
|
1268
1318
|
images?: {
|
|
1269
1319
|
loc: string;
|
|
1270
|
-
caption?: string | undefined;
|
|
1271
1320
|
title?: string | undefined;
|
|
1321
|
+
caption?: string | undefined;
|
|
1272
1322
|
}[] | undefined;
|
|
1273
1323
|
news?: {
|
|
1274
1324
|
title: string;
|
|
@@ -1281,7 +1331,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1281
1331
|
} | undefined;
|
|
1282
1332
|
fromCrawl?: boolean | undefined;
|
|
1283
1333
|
};
|
|
1284
|
-
html: string;
|
|
1285
1334
|
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
1286
1335
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1287
1336
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1292,6 +1341,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1292
1341
|
retryCount?: number | undefined;
|
|
1293
1342
|
retryDelay?: number | undefined;
|
|
1294
1343
|
onSuccess?: ((args_0: {
|
|
1344
|
+
html: string;
|
|
1295
1345
|
page: {
|
|
1296
1346
|
path: string;
|
|
1297
1347
|
sitemap?: {
|
|
@@ -1305,8 +1355,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1305
1355
|
}[] | undefined;
|
|
1306
1356
|
images?: {
|
|
1307
1357
|
loc: string;
|
|
1308
|
-
caption?: string | undefined;
|
|
1309
1358
|
title?: string | undefined;
|
|
1359
|
+
caption?: string | undefined;
|
|
1310
1360
|
}[] | undefined;
|
|
1311
1361
|
news?: {
|
|
1312
1362
|
title: string;
|
|
@@ -1319,7 +1369,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1319
1369
|
} | undefined;
|
|
1320
1370
|
fromCrawl?: boolean | undefined;
|
|
1321
1371
|
};
|
|
1322
|
-
html: string;
|
|
1323
1372
|
}, ...args: unknown[]) => any) | undefined;
|
|
1324
1373
|
headers?: Record<string, string> | undefined;
|
|
1325
1374
|
}, {
|
|
@@ -1330,6 +1379,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1330
1379
|
retryCount?: number | undefined;
|
|
1331
1380
|
retryDelay?: number | undefined;
|
|
1332
1381
|
onSuccess?: ((args_0: {
|
|
1382
|
+
html: string;
|
|
1333
1383
|
page: {
|
|
1334
1384
|
path: string;
|
|
1335
1385
|
sitemap?: {
|
|
@@ -1343,8 +1393,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1343
1393
|
}[] | undefined;
|
|
1344
1394
|
images?: {
|
|
1345
1395
|
loc: string;
|
|
1346
|
-
caption?: string | undefined;
|
|
1347
1396
|
title?: string | undefined;
|
|
1397
|
+
caption?: string | undefined;
|
|
1348
1398
|
}[] | undefined;
|
|
1349
1399
|
news?: {
|
|
1350
1400
|
title: string;
|
|
@@ -1357,7 +1407,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1357
1407
|
} | undefined;
|
|
1358
1408
|
fromCrawl?: boolean | undefined;
|
|
1359
1409
|
};
|
|
1360
|
-
html: string;
|
|
1361
1410
|
}, ...args: unknown[]) => any) | undefined;
|
|
1362
1411
|
headers?: Record<string, string> | undefined;
|
|
1363
1412
|
}>>;
|
|
@@ -1374,8 +1423,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1374
1423
|
}[] | undefined;
|
|
1375
1424
|
images?: {
|
|
1376
1425
|
loc: string;
|
|
1377
|
-
caption?: string | undefined;
|
|
1378
1426
|
title?: string | undefined;
|
|
1427
|
+
caption?: string | undefined;
|
|
1379
1428
|
}[] | undefined;
|
|
1380
1429
|
news?: {
|
|
1381
1430
|
title: string;
|
|
@@ -1395,6 +1444,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1395
1444
|
retryCount?: number | undefined;
|
|
1396
1445
|
retryDelay?: number | undefined;
|
|
1397
1446
|
onSuccess?: ((args_0: {
|
|
1447
|
+
html: string;
|
|
1398
1448
|
page: {
|
|
1399
1449
|
path: string;
|
|
1400
1450
|
sitemap?: {
|
|
@@ -1408,8 +1458,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1408
1458
|
}[] | undefined;
|
|
1409
1459
|
images?: {
|
|
1410
1460
|
loc: string;
|
|
1411
|
-
caption?: string | undefined;
|
|
1412
1461
|
title?: string | undefined;
|
|
1462
|
+
caption?: string | undefined;
|
|
1413
1463
|
}[] | undefined;
|
|
1414
1464
|
news?: {
|
|
1415
1465
|
title: string;
|
|
@@ -1422,7 +1472,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1422
1472
|
} | undefined;
|
|
1423
1473
|
fromCrawl?: boolean | undefined;
|
|
1424
1474
|
};
|
|
1425
|
-
html: string;
|
|
1426
1475
|
}, ...args: unknown[]) => any) | undefined;
|
|
1427
1476
|
headers?: Record<string, string> | undefined;
|
|
1428
1477
|
} | undefined;
|
|
@@ -1439,8 +1488,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1439
1488
|
}[] | undefined;
|
|
1440
1489
|
images?: {
|
|
1441
1490
|
loc: string;
|
|
1442
|
-
caption?: string | undefined;
|
|
1443
1491
|
title?: string | undefined;
|
|
1492
|
+
caption?: string | undefined;
|
|
1444
1493
|
}[] | undefined;
|
|
1445
1494
|
news?: {
|
|
1446
1495
|
title: string;
|
|
@@ -1460,6 +1509,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1460
1509
|
retryCount?: number | undefined;
|
|
1461
1510
|
retryDelay?: number | undefined;
|
|
1462
1511
|
onSuccess?: ((args_0: {
|
|
1512
|
+
html: string;
|
|
1463
1513
|
page: {
|
|
1464
1514
|
path: string;
|
|
1465
1515
|
sitemap?: {
|
|
@@ -1473,8 +1523,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1473
1523
|
}[] | undefined;
|
|
1474
1524
|
images?: {
|
|
1475
1525
|
loc: string;
|
|
1476
|
-
caption?: string | undefined;
|
|
1477
1526
|
title?: string | undefined;
|
|
1527
|
+
caption?: string | undefined;
|
|
1478
1528
|
}[] | undefined;
|
|
1479
1529
|
news?: {
|
|
1480
1530
|
title: string;
|
|
@@ -1487,7 +1537,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1487
1537
|
} | undefined;
|
|
1488
1538
|
fromCrawl?: boolean | undefined;
|
|
1489
1539
|
};
|
|
1490
|
-
html: string;
|
|
1491
1540
|
}, ...args: unknown[]) => any) | undefined;
|
|
1492
1541
|
headers?: Record<string, string> | undefined;
|
|
1493
1542
|
} | undefined;
|
|
@@ -1531,12 +1580,12 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1531
1580
|
title: z.ZodOptional<z.ZodString>;
|
|
1532
1581
|
}, "strip", z.ZodTypeAny, {
|
|
1533
1582
|
loc: string;
|
|
1534
|
-
caption?: string | undefined;
|
|
1535
1583
|
title?: string | undefined;
|
|
1584
|
+
caption?: string | undefined;
|
|
1536
1585
|
}, {
|
|
1537
1586
|
loc: string;
|
|
1538
|
-
caption?: string | undefined;
|
|
1539
1587
|
title?: string | undefined;
|
|
1588
|
+
caption?: string | undefined;
|
|
1540
1589
|
}>, "many">>;
|
|
1541
1590
|
news: z.ZodOptional<z.ZodObject<{
|
|
1542
1591
|
publication: z.ZodObject<{
|
|
@@ -1577,8 +1626,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1577
1626
|
}[] | undefined;
|
|
1578
1627
|
images?: {
|
|
1579
1628
|
loc: string;
|
|
1580
|
-
caption?: string | undefined;
|
|
1581
1629
|
title?: string | undefined;
|
|
1630
|
+
caption?: string | undefined;
|
|
1582
1631
|
}[] | undefined;
|
|
1583
1632
|
news?: {
|
|
1584
1633
|
title: string;
|
|
@@ -1599,8 +1648,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1599
1648
|
}[] | undefined;
|
|
1600
1649
|
images?: {
|
|
1601
1650
|
loc: string;
|
|
1602
|
-
caption?: string | undefined;
|
|
1603
1651
|
title?: string | undefined;
|
|
1652
|
+
caption?: string | undefined;
|
|
1604
1653
|
}[] | undefined;
|
|
1605
1654
|
news?: {
|
|
1606
1655
|
title: string;
|
|
@@ -1644,12 +1693,12 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1644
1693
|
title: z.ZodOptional<z.ZodString>;
|
|
1645
1694
|
}, "strip", z.ZodTypeAny, {
|
|
1646
1695
|
loc: string;
|
|
1647
|
-
caption?: string | undefined;
|
|
1648
1696
|
title?: string | undefined;
|
|
1697
|
+
caption?: string | undefined;
|
|
1649
1698
|
}, {
|
|
1650
1699
|
loc: string;
|
|
1651
|
-
caption?: string | undefined;
|
|
1652
1700
|
title?: string | undefined;
|
|
1701
|
+
caption?: string | undefined;
|
|
1653
1702
|
}>, "many">>;
|
|
1654
1703
|
news: z.ZodOptional<z.ZodObject<{
|
|
1655
1704
|
publication: z.ZodObject<{
|
|
@@ -1690,8 +1739,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1690
1739
|
}[] | undefined;
|
|
1691
1740
|
images?: {
|
|
1692
1741
|
loc: string;
|
|
1693
|
-
caption?: string | undefined;
|
|
1694
1742
|
title?: string | undefined;
|
|
1743
|
+
caption?: string | undefined;
|
|
1695
1744
|
}[] | undefined;
|
|
1696
1745
|
news?: {
|
|
1697
1746
|
title: string;
|
|
@@ -1712,8 +1761,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1712
1761
|
}[] | undefined;
|
|
1713
1762
|
images?: {
|
|
1714
1763
|
loc: string;
|
|
1715
|
-
caption?: string | undefined;
|
|
1716
1764
|
title?: string | undefined;
|
|
1765
|
+
caption?: string | undefined;
|
|
1717
1766
|
}[] | undefined;
|
|
1718
1767
|
news?: {
|
|
1719
1768
|
title: string;
|
|
@@ -1738,8 +1787,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1738
1787
|
}[] | undefined;
|
|
1739
1788
|
images?: {
|
|
1740
1789
|
loc: string;
|
|
1741
|
-
caption?: string | undefined;
|
|
1742
1790
|
title?: string | undefined;
|
|
1791
|
+
caption?: string | undefined;
|
|
1743
1792
|
}[] | undefined;
|
|
1744
1793
|
news?: {
|
|
1745
1794
|
title: string;
|
|
@@ -1764,8 +1813,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1764
1813
|
}[] | undefined;
|
|
1765
1814
|
images?: {
|
|
1766
1815
|
loc: string;
|
|
1767
|
-
caption?: string | undefined;
|
|
1768
1816
|
title?: string | undefined;
|
|
1817
|
+
caption?: string | undefined;
|
|
1769
1818
|
}[] | undefined;
|
|
1770
1819
|
news?: {
|
|
1771
1820
|
title: string;
|
|
@@ -1780,6 +1829,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1780
1829
|
}>;
|
|
1781
1830
|
html: z.ZodString;
|
|
1782
1831
|
}, "strip", z.ZodTypeAny, {
|
|
1832
|
+
html: string;
|
|
1783
1833
|
page: {
|
|
1784
1834
|
path: string;
|
|
1785
1835
|
sitemap?: {
|
|
@@ -1793,8 +1843,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1793
1843
|
}[] | undefined;
|
|
1794
1844
|
images?: {
|
|
1795
1845
|
loc: string;
|
|
1796
|
-
caption?: string | undefined;
|
|
1797
1846
|
title?: string | undefined;
|
|
1847
|
+
caption?: string | undefined;
|
|
1798
1848
|
}[] | undefined;
|
|
1799
1849
|
news?: {
|
|
1800
1850
|
title: string;
|
|
@@ -1807,8 +1857,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1807
1857
|
} | undefined;
|
|
1808
1858
|
fromCrawl?: boolean | undefined;
|
|
1809
1859
|
};
|
|
1810
|
-
html: string;
|
|
1811
1860
|
}, {
|
|
1861
|
+
html: string;
|
|
1812
1862
|
page: {
|
|
1813
1863
|
path: string;
|
|
1814
1864
|
sitemap?: {
|
|
@@ -1822,8 +1872,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1822
1872
|
}[] | undefined;
|
|
1823
1873
|
images?: {
|
|
1824
1874
|
loc: string;
|
|
1825
|
-
caption?: string | undefined;
|
|
1826
1875
|
title?: string | undefined;
|
|
1876
|
+
caption?: string | undefined;
|
|
1827
1877
|
}[] | undefined;
|
|
1828
1878
|
news?: {
|
|
1829
1879
|
title: string;
|
|
@@ -1836,7 +1886,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1836
1886
|
} | undefined;
|
|
1837
1887
|
fromCrawl?: boolean | undefined;
|
|
1838
1888
|
};
|
|
1839
|
-
html: string;
|
|
1840
1889
|
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
1841
1890
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1842
1891
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1847,6 +1896,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1847
1896
|
retryCount?: number | undefined;
|
|
1848
1897
|
retryDelay?: number | undefined;
|
|
1849
1898
|
onSuccess?: ((args_0: {
|
|
1899
|
+
html: string;
|
|
1850
1900
|
page: {
|
|
1851
1901
|
path: string;
|
|
1852
1902
|
sitemap?: {
|
|
@@ -1860,8 +1910,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1860
1910
|
}[] | undefined;
|
|
1861
1911
|
images?: {
|
|
1862
1912
|
loc: string;
|
|
1863
|
-
caption?: string | undefined;
|
|
1864
1913
|
title?: string | undefined;
|
|
1914
|
+
caption?: string | undefined;
|
|
1865
1915
|
}[] | undefined;
|
|
1866
1916
|
news?: {
|
|
1867
1917
|
title: string;
|
|
@@ -1874,7 +1924,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1874
1924
|
} | undefined;
|
|
1875
1925
|
fromCrawl?: boolean | undefined;
|
|
1876
1926
|
};
|
|
1877
|
-
html: string;
|
|
1878
1927
|
}, ...args: unknown[]) => any) | undefined;
|
|
1879
1928
|
headers?: Record<string, string> | undefined;
|
|
1880
1929
|
}, {
|
|
@@ -1885,6 +1934,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1885
1934
|
retryCount?: number | undefined;
|
|
1886
1935
|
retryDelay?: number | undefined;
|
|
1887
1936
|
onSuccess?: ((args_0: {
|
|
1937
|
+
html: string;
|
|
1888
1938
|
page: {
|
|
1889
1939
|
path: string;
|
|
1890
1940
|
sitemap?: {
|
|
@@ -1898,8 +1948,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1898
1948
|
}[] | undefined;
|
|
1899
1949
|
images?: {
|
|
1900
1950
|
loc: string;
|
|
1901
|
-
caption?: string | undefined;
|
|
1902
1951
|
title?: string | undefined;
|
|
1952
|
+
caption?: string | undefined;
|
|
1903
1953
|
}[] | undefined;
|
|
1904
1954
|
news?: {
|
|
1905
1955
|
title: string;
|
|
@@ -1912,7 +1962,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1912
1962
|
} | undefined;
|
|
1913
1963
|
fromCrawl?: boolean | undefined;
|
|
1914
1964
|
};
|
|
1915
|
-
html: string;
|
|
1916
1965
|
}, ...args: unknown[]) => any) | undefined;
|
|
1917
1966
|
headers?: Record<string, string> | undefined;
|
|
1918
1967
|
}>>;
|
|
@@ -1929,8 +1978,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1929
1978
|
}[] | undefined;
|
|
1930
1979
|
images?: {
|
|
1931
1980
|
loc: string;
|
|
1932
|
-
caption?: string | undefined;
|
|
1933
1981
|
title?: string | undefined;
|
|
1982
|
+
caption?: string | undefined;
|
|
1934
1983
|
}[] | undefined;
|
|
1935
1984
|
news?: {
|
|
1936
1985
|
title: string;
|
|
@@ -1950,6 +1999,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1950
1999
|
retryCount?: number | undefined;
|
|
1951
2000
|
retryDelay?: number | undefined;
|
|
1952
2001
|
onSuccess?: ((args_0: {
|
|
2002
|
+
html: string;
|
|
1953
2003
|
page: {
|
|
1954
2004
|
path: string;
|
|
1955
2005
|
sitemap?: {
|
|
@@ -1963,8 +2013,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1963
2013
|
}[] | undefined;
|
|
1964
2014
|
images?: {
|
|
1965
2015
|
loc: string;
|
|
1966
|
-
caption?: string | undefined;
|
|
1967
2016
|
title?: string | undefined;
|
|
2017
|
+
caption?: string | undefined;
|
|
1968
2018
|
}[] | undefined;
|
|
1969
2019
|
news?: {
|
|
1970
2020
|
title: string;
|
|
@@ -1977,7 +2027,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1977
2027
|
} | undefined;
|
|
1978
2028
|
fromCrawl?: boolean | undefined;
|
|
1979
2029
|
};
|
|
1980
|
-
html: string;
|
|
1981
2030
|
}, ...args: unknown[]) => any) | undefined;
|
|
1982
2031
|
headers?: Record<string, string> | undefined;
|
|
1983
2032
|
} | undefined;
|
|
@@ -1994,8 +2043,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1994
2043
|
}[] | undefined;
|
|
1995
2044
|
images?: {
|
|
1996
2045
|
loc: string;
|
|
1997
|
-
caption?: string | undefined;
|
|
1998
2046
|
title?: string | undefined;
|
|
2047
|
+
caption?: string | undefined;
|
|
1999
2048
|
}[] | undefined;
|
|
2000
2049
|
news?: {
|
|
2001
2050
|
title: string;
|
|
@@ -2015,6 +2064,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2015
2064
|
retryCount?: number | undefined;
|
|
2016
2065
|
retryDelay?: number | undefined;
|
|
2017
2066
|
onSuccess?: ((args_0: {
|
|
2067
|
+
html: string;
|
|
2018
2068
|
page: {
|
|
2019
2069
|
path: string;
|
|
2020
2070
|
sitemap?: {
|
|
@@ -2028,8 +2078,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2028
2078
|
}[] | undefined;
|
|
2029
2079
|
images?: {
|
|
2030
2080
|
loc: string;
|
|
2031
|
-
caption?: string | undefined;
|
|
2032
2081
|
title?: string | undefined;
|
|
2082
|
+
caption?: string | undefined;
|
|
2033
2083
|
}[] | undefined;
|
|
2034
2084
|
news?: {
|
|
2035
2085
|
title: string;
|
|
@@ -2042,7 +2092,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2042
2092
|
} | undefined;
|
|
2043
2093
|
fromCrawl?: boolean | undefined;
|
|
2044
2094
|
};
|
|
2045
|
-
html: string;
|
|
2046
2095
|
}, ...args: unknown[]) => any) | undefined;
|
|
2047
2096
|
headers?: Record<string, string> | undefined;
|
|
2048
2097
|
} | undefined;
|
|
@@ -2062,8 +2111,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2062
2111
|
}[] | undefined;
|
|
2063
2112
|
images?: {
|
|
2064
2113
|
loc: string;
|
|
2065
|
-
caption?: string | undefined;
|
|
2066
2114
|
title?: string | undefined;
|
|
2115
|
+
caption?: string | undefined;
|
|
2067
2116
|
}[] | undefined;
|
|
2068
2117
|
news?: {
|
|
2069
2118
|
title: string;
|
|
@@ -2083,6 +2132,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2083
2132
|
retryCount?: number | undefined;
|
|
2084
2133
|
retryDelay?: number | undefined;
|
|
2085
2134
|
onSuccess?: ((args_0: {
|
|
2135
|
+
html: string;
|
|
2086
2136
|
page: {
|
|
2087
2137
|
path: string;
|
|
2088
2138
|
sitemap?: {
|
|
@@ -2096,8 +2146,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2096
2146
|
}[] | undefined;
|
|
2097
2147
|
images?: {
|
|
2098
2148
|
loc: string;
|
|
2099
|
-
caption?: string | undefined;
|
|
2100
2149
|
title?: string | undefined;
|
|
2150
|
+
caption?: string | undefined;
|
|
2101
2151
|
}[] | undefined;
|
|
2102
2152
|
news?: {
|
|
2103
2153
|
title: string;
|
|
@@ -2110,7 +2160,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2110
2160
|
} | undefined;
|
|
2111
2161
|
fromCrawl?: boolean | undefined;
|
|
2112
2162
|
};
|
|
2113
|
-
html: string;
|
|
2114
2163
|
}, ...args: unknown[]) => any) | undefined;
|
|
2115
2164
|
headers?: Record<string, string> | undefined;
|
|
2116
2165
|
} | undefined;
|
|
@@ -2132,8 +2181,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2132
2181
|
}[] | undefined;
|
|
2133
2182
|
images?: {
|
|
2134
2183
|
loc: string;
|
|
2135
|
-
caption?: string | undefined;
|
|
2136
2184
|
title?: string | undefined;
|
|
2185
|
+
caption?: string | undefined;
|
|
2137
2186
|
}[] | undefined;
|
|
2138
2187
|
news?: {
|
|
2139
2188
|
title: string;
|
|
@@ -2153,6 +2202,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2153
2202
|
retryCount?: number | undefined;
|
|
2154
2203
|
retryDelay?: number | undefined;
|
|
2155
2204
|
onSuccess?: ((args_0: {
|
|
2205
|
+
html: string;
|
|
2156
2206
|
page: {
|
|
2157
2207
|
path: string;
|
|
2158
2208
|
sitemap?: {
|
|
@@ -2166,8 +2216,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2166
2216
|
}[] | undefined;
|
|
2167
2217
|
images?: {
|
|
2168
2218
|
loc: string;
|
|
2169
|
-
caption?: string | undefined;
|
|
2170
2219
|
title?: string | undefined;
|
|
2220
|
+
caption?: string | undefined;
|
|
2171
2221
|
}[] | undefined;
|
|
2172
2222
|
news?: {
|
|
2173
2223
|
title: string;
|
|
@@ -2180,7 +2230,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2180
2230
|
} | undefined;
|
|
2181
2231
|
fromCrawl?: boolean | undefined;
|
|
2182
2232
|
};
|
|
2183
|
-
html: string;
|
|
2184
2233
|
}, ...args: unknown[]) => any) | undefined;
|
|
2185
2234
|
headers?: Record<string, string> | undefined;
|
|
2186
2235
|
} | undefined;
|
|
@@ -2219,12 +2268,12 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2219
2268
|
title: z.ZodOptional<z.ZodString>;
|
|
2220
2269
|
}, "strip", z.ZodTypeAny, {
|
|
2221
2270
|
loc: string;
|
|
2222
|
-
caption?: string | undefined;
|
|
2223
2271
|
title?: string | undefined;
|
|
2272
|
+
caption?: string | undefined;
|
|
2224
2273
|
}, {
|
|
2225
2274
|
loc: string;
|
|
2226
|
-
caption?: string | undefined;
|
|
2227
2275
|
title?: string | undefined;
|
|
2276
|
+
caption?: string | undefined;
|
|
2228
2277
|
}>, "many">>;
|
|
2229
2278
|
news: z.ZodOptional<z.ZodObject<{
|
|
2230
2279
|
publication: z.ZodObject<{
|
|
@@ -2265,8 +2314,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2265
2314
|
}[] | undefined;
|
|
2266
2315
|
images?: {
|
|
2267
2316
|
loc: string;
|
|
2268
|
-
caption?: string | undefined;
|
|
2269
2317
|
title?: string | undefined;
|
|
2318
|
+
caption?: string | undefined;
|
|
2270
2319
|
}[] | undefined;
|
|
2271
2320
|
news?: {
|
|
2272
2321
|
title: string;
|
|
@@ -2287,8 +2336,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2287
2336
|
}[] | undefined;
|
|
2288
2337
|
images?: {
|
|
2289
2338
|
loc: string;
|
|
2290
|
-
caption?: string | undefined;
|
|
2291
2339
|
title?: string | undefined;
|
|
2340
|
+
caption?: string | undefined;
|
|
2292
2341
|
}[] | undefined;
|
|
2293
2342
|
news?: {
|
|
2294
2343
|
title: string;
|
|
@@ -2313,8 +2362,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2313
2362
|
}[] | undefined;
|
|
2314
2363
|
images?: {
|
|
2315
2364
|
loc: string;
|
|
2316
|
-
caption?: string | undefined;
|
|
2317
2365
|
title?: string | undefined;
|
|
2366
|
+
caption?: string | undefined;
|
|
2318
2367
|
}[] | undefined;
|
|
2319
2368
|
news?: {
|
|
2320
2369
|
title: string;
|
|
@@ -2339,8 +2388,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2339
2388
|
}[] | undefined;
|
|
2340
2389
|
images?: {
|
|
2341
2390
|
loc: string;
|
|
2342
|
-
caption?: string | undefined;
|
|
2343
2391
|
title?: string | undefined;
|
|
2392
|
+
caption?: string | undefined;
|
|
2344
2393
|
}[] | undefined;
|
|
2345
2394
|
news?: {
|
|
2346
2395
|
title: string;
|
|
@@ -2355,6 +2404,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2355
2404
|
}>;
|
|
2356
2405
|
html: z.ZodString;
|
|
2357
2406
|
}, "strip", z.ZodTypeAny, {
|
|
2407
|
+
html: string;
|
|
2358
2408
|
page: {
|
|
2359
2409
|
path: string;
|
|
2360
2410
|
sitemap?: {
|
|
@@ -2368,8 +2418,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2368
2418
|
}[] | undefined;
|
|
2369
2419
|
images?: {
|
|
2370
2420
|
loc: string;
|
|
2371
|
-
caption?: string | undefined;
|
|
2372
2421
|
title?: string | undefined;
|
|
2422
|
+
caption?: string | undefined;
|
|
2373
2423
|
}[] | undefined;
|
|
2374
2424
|
news?: {
|
|
2375
2425
|
title: string;
|
|
@@ -2382,8 +2432,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2382
2432
|
} | undefined;
|
|
2383
2433
|
fromCrawl?: boolean | undefined;
|
|
2384
2434
|
};
|
|
2385
|
-
html: string;
|
|
2386
2435
|
}, {
|
|
2436
|
+
html: string;
|
|
2387
2437
|
page: {
|
|
2388
2438
|
path: string;
|
|
2389
2439
|
sitemap?: {
|
|
@@ -2397,8 +2447,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2397
2447
|
}[] | undefined;
|
|
2398
2448
|
images?: {
|
|
2399
2449
|
loc: string;
|
|
2400
|
-
caption?: string | undefined;
|
|
2401
2450
|
title?: string | undefined;
|
|
2451
|
+
caption?: string | undefined;
|
|
2402
2452
|
}[] | undefined;
|
|
2403
2453
|
news?: {
|
|
2404
2454
|
title: string;
|
|
@@ -2411,7 +2461,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2411
2461
|
} | undefined;
|
|
2412
2462
|
fromCrawl?: boolean | undefined;
|
|
2413
2463
|
};
|
|
2414
|
-
html: string;
|
|
2415
2464
|
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
2416
2465
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2417
2466
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2422,6 +2471,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2422
2471
|
retryCount?: number | undefined;
|
|
2423
2472
|
retryDelay?: number | undefined;
|
|
2424
2473
|
onSuccess?: ((args_0: {
|
|
2474
|
+
html: string;
|
|
2425
2475
|
page: {
|
|
2426
2476
|
path: string;
|
|
2427
2477
|
sitemap?: {
|
|
@@ -2435,8 +2485,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2435
2485
|
}[] | undefined;
|
|
2436
2486
|
images?: {
|
|
2437
2487
|
loc: string;
|
|
2438
|
-
caption?: string | undefined;
|
|
2439
2488
|
title?: string | undefined;
|
|
2489
|
+
caption?: string | undefined;
|
|
2440
2490
|
}[] | undefined;
|
|
2441
2491
|
news?: {
|
|
2442
2492
|
title: string;
|
|
@@ -2449,7 +2499,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2449
2499
|
} | undefined;
|
|
2450
2500
|
fromCrawl?: boolean | undefined;
|
|
2451
2501
|
};
|
|
2452
|
-
html: string;
|
|
2453
2502
|
}, ...args: unknown[]) => any) | undefined;
|
|
2454
2503
|
headers?: Record<string, string> | undefined;
|
|
2455
2504
|
}, {
|
|
@@ -2460,6 +2509,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2460
2509
|
retryCount?: number | undefined;
|
|
2461
2510
|
retryDelay?: number | undefined;
|
|
2462
2511
|
onSuccess?: ((args_0: {
|
|
2512
|
+
html: string;
|
|
2463
2513
|
page: {
|
|
2464
2514
|
path: string;
|
|
2465
2515
|
sitemap?: {
|
|
@@ -2473,8 +2523,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2473
2523
|
}[] | undefined;
|
|
2474
2524
|
images?: {
|
|
2475
2525
|
loc: string;
|
|
2476
|
-
caption?: string | undefined;
|
|
2477
2526
|
title?: string | undefined;
|
|
2527
|
+
caption?: string | undefined;
|
|
2478
2528
|
}[] | undefined;
|
|
2479
2529
|
news?: {
|
|
2480
2530
|
title: string;
|
|
@@ -2487,7 +2537,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2487
2537
|
} | undefined;
|
|
2488
2538
|
fromCrawl?: boolean | undefined;
|
|
2489
2539
|
};
|
|
2490
|
-
html: string;
|
|
2491
2540
|
}, ...args: unknown[]) => any) | undefined;
|
|
2492
2541
|
headers?: Record<string, string> | undefined;
|
|
2493
2542
|
}>>>>;
|
|
@@ -2525,12 +2574,12 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2525
2574
|
title: z.ZodOptional<z.ZodString>;
|
|
2526
2575
|
}, "strip", z.ZodTypeAny, {
|
|
2527
2576
|
loc: string;
|
|
2528
|
-
caption?: string | undefined;
|
|
2529
2577
|
title?: string | undefined;
|
|
2578
|
+
caption?: string | undefined;
|
|
2530
2579
|
}, {
|
|
2531
2580
|
loc: string;
|
|
2532
|
-
caption?: string | undefined;
|
|
2533
2581
|
title?: string | undefined;
|
|
2582
|
+
caption?: string | undefined;
|
|
2534
2583
|
}>, "many">>;
|
|
2535
2584
|
news: z.ZodOptional<z.ZodObject<{
|
|
2536
2585
|
publication: z.ZodObject<{
|
|
@@ -2571,8 +2620,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2571
2620
|
}[] | undefined;
|
|
2572
2621
|
images?: {
|
|
2573
2622
|
loc: string;
|
|
2574
|
-
caption?: string | undefined;
|
|
2575
2623
|
title?: string | undefined;
|
|
2624
|
+
caption?: string | undefined;
|
|
2576
2625
|
}[] | undefined;
|
|
2577
2626
|
news?: {
|
|
2578
2627
|
title: string;
|
|
@@ -2593,8 +2642,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2593
2642
|
}[] | undefined;
|
|
2594
2643
|
images?: {
|
|
2595
2644
|
loc: string;
|
|
2596
|
-
caption?: string | undefined;
|
|
2597
2645
|
title?: string | undefined;
|
|
2646
|
+
caption?: string | undefined;
|
|
2598
2647
|
}[] | undefined;
|
|
2599
2648
|
news?: {
|
|
2600
2649
|
title: string;
|
|
@@ -2619,8 +2668,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2619
2668
|
}[] | undefined;
|
|
2620
2669
|
images?: {
|
|
2621
2670
|
loc: string;
|
|
2622
|
-
caption?: string | undefined;
|
|
2623
2671
|
title?: string | undefined;
|
|
2672
|
+
caption?: string | undefined;
|
|
2624
2673
|
}[] | undefined;
|
|
2625
2674
|
news?: {
|
|
2626
2675
|
title: string;
|
|
@@ -2645,8 +2694,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2645
2694
|
}[] | undefined;
|
|
2646
2695
|
images?: {
|
|
2647
2696
|
loc: string;
|
|
2648
|
-
caption?: string | undefined;
|
|
2649
2697
|
title?: string | undefined;
|
|
2698
|
+
caption?: string | undefined;
|
|
2650
2699
|
}[] | undefined;
|
|
2651
2700
|
news?: {
|
|
2652
2701
|
title: string;
|
|
@@ -2661,6 +2710,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2661
2710
|
}>;
|
|
2662
2711
|
html: z.ZodString;
|
|
2663
2712
|
}, "strip", z.ZodTypeAny, {
|
|
2713
|
+
html: string;
|
|
2664
2714
|
page: {
|
|
2665
2715
|
path: string;
|
|
2666
2716
|
sitemap?: {
|
|
@@ -2674,8 +2724,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2674
2724
|
}[] | undefined;
|
|
2675
2725
|
images?: {
|
|
2676
2726
|
loc: string;
|
|
2677
|
-
caption?: string | undefined;
|
|
2678
2727
|
title?: string | undefined;
|
|
2728
|
+
caption?: string | undefined;
|
|
2679
2729
|
}[] | undefined;
|
|
2680
2730
|
news?: {
|
|
2681
2731
|
title: string;
|
|
@@ -2688,8 +2738,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2688
2738
|
} | undefined;
|
|
2689
2739
|
fromCrawl?: boolean | undefined;
|
|
2690
2740
|
};
|
|
2691
|
-
html: string;
|
|
2692
2741
|
}, {
|
|
2742
|
+
html: string;
|
|
2693
2743
|
page: {
|
|
2694
2744
|
path: string;
|
|
2695
2745
|
sitemap?: {
|
|
@@ -2703,8 +2753,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2703
2753
|
}[] | undefined;
|
|
2704
2754
|
images?: {
|
|
2705
2755
|
loc: string;
|
|
2706
|
-
caption?: string | undefined;
|
|
2707
2756
|
title?: string | undefined;
|
|
2757
|
+
caption?: string | undefined;
|
|
2708
2758
|
}[] | undefined;
|
|
2709
2759
|
news?: {
|
|
2710
2760
|
title: string;
|
|
@@ -2717,7 +2767,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2717
2767
|
} | undefined;
|
|
2718
2768
|
fromCrawl?: boolean | undefined;
|
|
2719
2769
|
};
|
|
2720
|
-
html: string;
|
|
2721
2770
|
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
2722
2771
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2723
2772
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2728,6 +2777,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2728
2777
|
retryCount?: number | undefined;
|
|
2729
2778
|
retryDelay?: number | undefined;
|
|
2730
2779
|
onSuccess?: ((args_0: {
|
|
2780
|
+
html: string;
|
|
2731
2781
|
page: {
|
|
2732
2782
|
path: string;
|
|
2733
2783
|
sitemap?: {
|
|
@@ -2741,8 +2791,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2741
2791
|
}[] | undefined;
|
|
2742
2792
|
images?: {
|
|
2743
2793
|
loc: string;
|
|
2744
|
-
caption?: string | undefined;
|
|
2745
2794
|
title?: string | undefined;
|
|
2795
|
+
caption?: string | undefined;
|
|
2746
2796
|
}[] | undefined;
|
|
2747
2797
|
news?: {
|
|
2748
2798
|
title: string;
|
|
@@ -2755,7 +2805,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2755
2805
|
} | undefined;
|
|
2756
2806
|
fromCrawl?: boolean | undefined;
|
|
2757
2807
|
};
|
|
2758
|
-
html: string;
|
|
2759
2808
|
}, ...args: unknown[]) => any) | undefined;
|
|
2760
2809
|
headers?: Record<string, string> | undefined;
|
|
2761
2810
|
}, {
|
|
@@ -2766,6 +2815,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2766
2815
|
retryCount?: number | undefined;
|
|
2767
2816
|
retryDelay?: number | undefined;
|
|
2768
2817
|
onSuccess?: ((args_0: {
|
|
2818
|
+
html: string;
|
|
2769
2819
|
page: {
|
|
2770
2820
|
path: string;
|
|
2771
2821
|
sitemap?: {
|
|
@@ -2779,8 +2829,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2779
2829
|
}[] | undefined;
|
|
2780
2830
|
images?: {
|
|
2781
2831
|
loc: string;
|
|
2782
|
-
caption?: string | undefined;
|
|
2783
2832
|
title?: string | undefined;
|
|
2833
|
+
caption?: string | undefined;
|
|
2784
2834
|
}[] | undefined;
|
|
2785
2835
|
news?: {
|
|
2786
2836
|
title: string;
|
|
@@ -2793,7 +2843,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2793
2843
|
} | undefined;
|
|
2794
2844
|
fromCrawl?: boolean | undefined;
|
|
2795
2845
|
};
|
|
2796
|
-
html: string;
|
|
2797
2846
|
}, ...args: unknown[]) => any) | undefined;
|
|
2798
2847
|
headers?: Record<string, string> | undefined;
|
|
2799
2848
|
}>>>, {
|
|
@@ -2804,6 +2853,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2804
2853
|
retryCount: number;
|
|
2805
2854
|
retryDelay?: number | undefined;
|
|
2806
2855
|
onSuccess?: ((args_0: {
|
|
2856
|
+
html: string;
|
|
2807
2857
|
page: {
|
|
2808
2858
|
path: string;
|
|
2809
2859
|
sitemap?: {
|
|
@@ -2817,8 +2867,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2817
2867
|
}[] | undefined;
|
|
2818
2868
|
images?: {
|
|
2819
2869
|
loc: string;
|
|
2820
|
-
caption?: string | undefined;
|
|
2821
2870
|
title?: string | undefined;
|
|
2871
|
+
caption?: string | undefined;
|
|
2822
2872
|
}[] | undefined;
|
|
2823
2873
|
news?: {
|
|
2824
2874
|
title: string;
|
|
@@ -2831,7 +2881,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2831
2881
|
} | undefined;
|
|
2832
2882
|
fromCrawl?: boolean | undefined;
|
|
2833
2883
|
};
|
|
2834
|
-
html: string;
|
|
2835
2884
|
}, ...args: unknown[]) => any) | undefined;
|
|
2836
2885
|
headers?: Record<string, string> | undefined;
|
|
2837
2886
|
}, {
|
|
@@ -2842,6 +2891,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2842
2891
|
retryCount?: number | undefined;
|
|
2843
2892
|
retryDelay?: number | undefined;
|
|
2844
2893
|
onSuccess?: ((args_0: {
|
|
2894
|
+
html: string;
|
|
2845
2895
|
page: {
|
|
2846
2896
|
path: string;
|
|
2847
2897
|
sitemap?: {
|
|
@@ -2855,8 +2905,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2855
2905
|
}[] | undefined;
|
|
2856
2906
|
images?: {
|
|
2857
2907
|
loc: string;
|
|
2858
|
-
caption?: string | undefined;
|
|
2859
2908
|
title?: string | undefined;
|
|
2909
|
+
caption?: string | undefined;
|
|
2860
2910
|
}[] | undefined;
|
|
2861
2911
|
news?: {
|
|
2862
2912
|
title: string;
|
|
@@ -2869,7 +2919,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2869
2919
|
} | undefined;
|
|
2870
2920
|
fromCrawl?: boolean | undefined;
|
|
2871
2921
|
};
|
|
2872
|
-
html: string;
|
|
2873
2922
|
}, ...args: unknown[]) => any) | undefined;
|
|
2874
2923
|
headers?: Record<string, string> | undefined;
|
|
2875
2924
|
} | undefined>;
|
|
@@ -2883,6 +2932,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2883
2932
|
retryCount: number;
|
|
2884
2933
|
retryDelay?: number | undefined;
|
|
2885
2934
|
onSuccess?: ((args_0: {
|
|
2935
|
+
html: string;
|
|
2886
2936
|
page: {
|
|
2887
2937
|
path: string;
|
|
2888
2938
|
sitemap?: {
|
|
@@ -2896,8 +2946,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2896
2946
|
}[] | undefined;
|
|
2897
2947
|
images?: {
|
|
2898
2948
|
loc: string;
|
|
2899
|
-
caption?: string | undefined;
|
|
2900
2949
|
title?: string | undefined;
|
|
2950
|
+
caption?: string | undefined;
|
|
2901
2951
|
}[] | undefined;
|
|
2902
2952
|
news?: {
|
|
2903
2953
|
title: string;
|
|
@@ -2910,7 +2960,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2910
2960
|
} | undefined;
|
|
2911
2961
|
fromCrawl?: boolean | undefined;
|
|
2912
2962
|
};
|
|
2913
|
-
html: string;
|
|
2914
2963
|
}, ...args: unknown[]) => any) | undefined;
|
|
2915
2964
|
headers?: Record<string, string> | undefined;
|
|
2916
2965
|
};
|
|
@@ -2925,6 +2974,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2925
2974
|
retryCount?: number | undefined;
|
|
2926
2975
|
retryDelay?: number | undefined;
|
|
2927
2976
|
onSuccess?: ((args_0: {
|
|
2977
|
+
html: string;
|
|
2928
2978
|
page: {
|
|
2929
2979
|
path: string;
|
|
2930
2980
|
sitemap?: {
|
|
@@ -2938,8 +2988,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2938
2988
|
}[] | undefined;
|
|
2939
2989
|
images?: {
|
|
2940
2990
|
loc: string;
|
|
2941
|
-
caption?: string | undefined;
|
|
2942
2991
|
title?: string | undefined;
|
|
2992
|
+
caption?: string | undefined;
|
|
2943
2993
|
}[] | undefined;
|
|
2944
2994
|
news?: {
|
|
2945
2995
|
title: string;
|
|
@@ -2952,7 +3002,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2952
3002
|
} | undefined;
|
|
2953
3003
|
fromCrawl?: boolean | undefined;
|
|
2954
3004
|
};
|
|
2955
|
-
html: string;
|
|
2956
3005
|
}, ...args: unknown[]) => any) | undefined;
|
|
2957
3006
|
headers?: Record<string, string> | undefined;
|
|
2958
3007
|
} | undefined;
|
|
@@ -2966,11 +3015,28 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2966
3015
|
installDevServerMiddleware?: boolean | undefined;
|
|
2967
3016
|
}>>;
|
|
2968
3017
|
}, "strip", z.ZodTypeAny, {
|
|
3018
|
+
client: {
|
|
3019
|
+
base: string;
|
|
3020
|
+
entry?: string | undefined;
|
|
3021
|
+
};
|
|
3022
|
+
server: {
|
|
3023
|
+
entry?: string | undefined;
|
|
3024
|
+
};
|
|
3025
|
+
public: {
|
|
3026
|
+
base: string;
|
|
3027
|
+
dir: string;
|
|
3028
|
+
};
|
|
2969
3029
|
srcDirectory: string;
|
|
3030
|
+
start: {
|
|
3031
|
+
entry?: string | undefined;
|
|
3032
|
+
};
|
|
2970
3033
|
router: {
|
|
2971
3034
|
entry?: string | undefined;
|
|
2972
3035
|
} & {
|
|
2973
|
-
|
|
3036
|
+
plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
|
|
3037
|
+
experimental?: {
|
|
3038
|
+
enableCodeSplitting?: boolean | undefined;
|
|
3039
|
+
} | undefined;
|
|
2974
3040
|
virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
2975
3041
|
routeFilePrefix?: string | undefined;
|
|
2976
3042
|
routeFileIgnorePrefix?: string | undefined;
|
|
@@ -2982,37 +3048,29 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2982
3048
|
routeTreeFileHeader?: string[] | undefined;
|
|
2983
3049
|
indexToken?: string | undefined;
|
|
2984
3050
|
routeToken?: string | undefined;
|
|
2985
|
-
pathParamsAllowedCharacters?: ("
|
|
3051
|
+
pathParamsAllowedCharacters?: ("+" | "&" | ";" | ":" | "@" | "=" | "$" | ",")[] | undefined;
|
|
2986
3052
|
generatedRouteTree?: string | undefined;
|
|
2987
3053
|
disableTypes?: boolean | undefined;
|
|
2988
|
-
verboseFileRoutes?: boolean | undefined;
|
|
2989
3054
|
addExtensions?: boolean | undefined;
|
|
2990
3055
|
enableRouteTreeFormatting?: boolean | undefined;
|
|
2991
|
-
routeTreeFileFooter?: string[] | undefined;
|
|
3056
|
+
routeTreeFileFooter?: string[] | ((...args: unknown[]) => string[]) | undefined;
|
|
2992
3057
|
customScaffolding?: {
|
|
2993
3058
|
routeTemplate?: string | undefined;
|
|
2994
3059
|
lazyRouteTemplate?: string | undefined;
|
|
2995
3060
|
} | undefined;
|
|
2996
|
-
experimental?: {
|
|
2997
|
-
enableCodeSplitting?: boolean | undefined;
|
|
2998
|
-
} | undefined;
|
|
2999
|
-
plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
|
|
3000
3061
|
tmpDir?: string | undefined;
|
|
3001
|
-
|
|
3002
|
-
|
|
3003
|
-
|
|
3004
|
-
|
|
3005
|
-
|
|
3006
|
-
|
|
3007
|
-
|
|
3062
|
+
importRoutesUsingAbsolutePaths?: boolean | undefined;
|
|
3063
|
+
enableRouteGeneration?: boolean | undefined;
|
|
3064
|
+
codeSplittingOptions?: import('@tanstack/router-plugin').CodeSplittingOptions | undefined;
|
|
3065
|
+
plugin?: {
|
|
3066
|
+
vite?: {
|
|
3067
|
+
environmentName?: string | undefined;
|
|
3068
|
+
} | undefined;
|
|
3069
|
+
} | undefined;
|
|
3008
3070
|
};
|
|
3009
3071
|
serverFns: {
|
|
3010
3072
|
base: string;
|
|
3011
3073
|
};
|
|
3012
|
-
public: {
|
|
3013
|
-
base: string;
|
|
3014
|
-
dir: string;
|
|
3015
|
-
};
|
|
3016
3074
|
pages: {
|
|
3017
3075
|
path: string;
|
|
3018
3076
|
sitemap?: {
|
|
@@ -3026,8 +3084,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3026
3084
|
}[] | undefined;
|
|
3027
3085
|
images?: {
|
|
3028
3086
|
loc: string;
|
|
3029
|
-
caption?: string | undefined;
|
|
3030
3087
|
title?: string | undefined;
|
|
3088
|
+
caption?: string | undefined;
|
|
3031
3089
|
}[] | undefined;
|
|
3032
3090
|
news?: {
|
|
3033
3091
|
title: string;
|
|
@@ -3047,6 +3105,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3047
3105
|
retryCount?: number | undefined;
|
|
3048
3106
|
retryDelay?: number | undefined;
|
|
3049
3107
|
onSuccess?: ((args_0: {
|
|
3108
|
+
html: string;
|
|
3050
3109
|
page: {
|
|
3051
3110
|
path: string;
|
|
3052
3111
|
sitemap?: {
|
|
@@ -3060,8 +3119,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3060
3119
|
}[] | undefined;
|
|
3061
3120
|
images?: {
|
|
3062
3121
|
loc: string;
|
|
3063
|
-
caption?: string | undefined;
|
|
3064
3122
|
title?: string | undefined;
|
|
3123
|
+
caption?: string | undefined;
|
|
3065
3124
|
}[] | undefined;
|
|
3066
3125
|
news?: {
|
|
3067
3126
|
title: string;
|
|
@@ -3074,11 +3133,53 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3074
3133
|
} | undefined;
|
|
3075
3134
|
fromCrawl?: boolean | undefined;
|
|
3076
3135
|
};
|
|
3077
|
-
html: string;
|
|
3078
3136
|
}, ...args: unknown[]) => any) | undefined;
|
|
3079
3137
|
headers?: Record<string, string> | undefined;
|
|
3080
3138
|
} | undefined;
|
|
3081
3139
|
}[];
|
|
3140
|
+
spa?: {
|
|
3141
|
+
enabled: boolean;
|
|
3142
|
+
prerender: {
|
|
3143
|
+
enabled: boolean;
|
|
3144
|
+
outputPath: string;
|
|
3145
|
+
autoSubfolderIndex?: boolean | undefined;
|
|
3146
|
+
crawlLinks: boolean;
|
|
3147
|
+
retryCount: number;
|
|
3148
|
+
retryDelay?: number | undefined;
|
|
3149
|
+
onSuccess?: ((args_0: {
|
|
3150
|
+
html: string;
|
|
3151
|
+
page: {
|
|
3152
|
+
path: string;
|
|
3153
|
+
sitemap?: {
|
|
3154
|
+
exclude?: boolean | undefined;
|
|
3155
|
+
priority?: number | undefined;
|
|
3156
|
+
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
3157
|
+
lastmod?: string | Date | undefined;
|
|
3158
|
+
alternateRefs?: {
|
|
3159
|
+
href: string;
|
|
3160
|
+
hreflang: string;
|
|
3161
|
+
}[] | undefined;
|
|
3162
|
+
images?: {
|
|
3163
|
+
loc: string;
|
|
3164
|
+
title?: string | undefined;
|
|
3165
|
+
caption?: string | undefined;
|
|
3166
|
+
}[] | undefined;
|
|
3167
|
+
news?: {
|
|
3168
|
+
title: string;
|
|
3169
|
+
publication: {
|
|
3170
|
+
name: string;
|
|
3171
|
+
language: string;
|
|
3172
|
+
};
|
|
3173
|
+
publicationDate: string | Date;
|
|
3174
|
+
} | undefined;
|
|
3175
|
+
} | undefined;
|
|
3176
|
+
fromCrawl?: boolean | undefined;
|
|
3177
|
+
};
|
|
3178
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
3179
|
+
headers?: Record<string, string> | undefined;
|
|
3180
|
+
};
|
|
3181
|
+
maskPath: string;
|
|
3182
|
+
} | undefined;
|
|
3082
3183
|
sitemap?: {
|
|
3083
3184
|
enabled: boolean;
|
|
3084
3185
|
outputPath: string;
|
|
@@ -3098,8 +3199,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3098
3199
|
}[] | undefined;
|
|
3099
3200
|
images?: {
|
|
3100
3201
|
loc: string;
|
|
3101
|
-
caption?: string | undefined;
|
|
3102
3202
|
title?: string | undefined;
|
|
3203
|
+
caption?: string | undefined;
|
|
3103
3204
|
}[] | undefined;
|
|
3104
3205
|
news?: {
|
|
3105
3206
|
title: string;
|
|
@@ -3119,6 +3220,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3119
3220
|
retryCount?: number | undefined;
|
|
3120
3221
|
retryDelay?: number | undefined;
|
|
3121
3222
|
onSuccess?: ((args_0: {
|
|
3223
|
+
html: string;
|
|
3122
3224
|
page: {
|
|
3123
3225
|
path: string;
|
|
3124
3226
|
sitemap?: {
|
|
@@ -3132,8 +3234,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3132
3234
|
}[] | undefined;
|
|
3133
3235
|
images?: {
|
|
3134
3236
|
loc: string;
|
|
3135
|
-
caption?: string | undefined;
|
|
3136
3237
|
title?: string | undefined;
|
|
3238
|
+
caption?: string | undefined;
|
|
3137
3239
|
}[] | undefined;
|
|
3138
3240
|
news?: {
|
|
3139
3241
|
title: string;
|
|
@@ -3146,7 +3248,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3146
3248
|
} | undefined;
|
|
3147
3249
|
fromCrawl?: boolean | undefined;
|
|
3148
3250
|
};
|
|
3149
|
-
html: string;
|
|
3150
3251
|
}, ...args: unknown[]) => any) | undefined;
|
|
3151
3252
|
headers?: Record<string, string> | undefined;
|
|
3152
3253
|
} | undefined;
|
|
@@ -3162,6 +3263,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3162
3263
|
retryCount?: number | undefined;
|
|
3163
3264
|
retryDelay?: number | undefined;
|
|
3164
3265
|
onSuccess?: ((args_0: {
|
|
3266
|
+
html: string;
|
|
3165
3267
|
page: {
|
|
3166
3268
|
path: string;
|
|
3167
3269
|
sitemap?: {
|
|
@@ -3175,8 +3277,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3175
3277
|
}[] | undefined;
|
|
3176
3278
|
images?: {
|
|
3177
3279
|
loc: string;
|
|
3178
|
-
caption?: string | undefined;
|
|
3179
3280
|
title?: string | undefined;
|
|
3281
|
+
caption?: string | undefined;
|
|
3180
3282
|
}[] | undefined;
|
|
3181
3283
|
news?: {
|
|
3182
3284
|
title: string;
|
|
@@ -3189,20 +3291,31 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3189
3291
|
} | undefined;
|
|
3190
3292
|
fromCrawl?: boolean | undefined;
|
|
3191
3293
|
};
|
|
3192
|
-
html: string;
|
|
3193
3294
|
}, ...args: unknown[]) => any) | undefined;
|
|
3194
3295
|
headers?: Record<string, string> | undefined;
|
|
3195
3296
|
}) | undefined;
|
|
3297
|
+
vite?: {
|
|
3298
|
+
installDevServerMiddleware?: boolean | undefined;
|
|
3299
|
+
} | undefined;
|
|
3300
|
+
}, {
|
|
3301
|
+
client?: {
|
|
3302
|
+
base?: string | undefined;
|
|
3303
|
+
entry?: string | undefined;
|
|
3304
|
+
} | undefined;
|
|
3305
|
+
server?: {
|
|
3306
|
+
entry?: string | undefined;
|
|
3307
|
+
} | undefined;
|
|
3196
3308
|
spa?: {
|
|
3197
|
-
enabled
|
|
3198
|
-
prerender
|
|
3199
|
-
enabled
|
|
3200
|
-
outputPath
|
|
3309
|
+
enabled?: boolean | undefined;
|
|
3310
|
+
prerender?: {
|
|
3311
|
+
enabled?: boolean | undefined;
|
|
3312
|
+
outputPath?: string | undefined;
|
|
3201
3313
|
autoSubfolderIndex?: boolean | undefined;
|
|
3202
|
-
crawlLinks
|
|
3203
|
-
retryCount
|
|
3314
|
+
crawlLinks?: boolean | undefined;
|
|
3315
|
+
retryCount?: number | undefined;
|
|
3204
3316
|
retryDelay?: number | undefined;
|
|
3205
3317
|
onSuccess?: ((args_0: {
|
|
3318
|
+
html: string;
|
|
3206
3319
|
page: {
|
|
3207
3320
|
path: string;
|
|
3208
3321
|
sitemap?: {
|
|
@@ -3216,8 +3329,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3216
3329
|
}[] | undefined;
|
|
3217
3330
|
images?: {
|
|
3218
3331
|
loc: string;
|
|
3219
|
-
caption?: string | undefined;
|
|
3220
3332
|
title?: string | undefined;
|
|
3333
|
+
caption?: string | undefined;
|
|
3221
3334
|
}[] | undefined;
|
|
3222
3335
|
news?: {
|
|
3223
3336
|
title: string;
|
|
@@ -3230,21 +3343,26 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3230
3343
|
} | undefined;
|
|
3231
3344
|
fromCrawl?: boolean | undefined;
|
|
3232
3345
|
};
|
|
3233
|
-
html: string;
|
|
3234
3346
|
}, ...args: unknown[]) => any) | undefined;
|
|
3235
3347
|
headers?: Record<string, string> | undefined;
|
|
3236
|
-
};
|
|
3237
|
-
maskPath
|
|
3348
|
+
} | undefined;
|
|
3349
|
+
maskPath?: string | undefined;
|
|
3238
3350
|
} | undefined;
|
|
3239
|
-
|
|
3240
|
-
|
|
3351
|
+
public?: {
|
|
3352
|
+
base?: string | undefined;
|
|
3353
|
+
dir?: string | undefined;
|
|
3241
3354
|
} | undefined;
|
|
3242
|
-
}, {
|
|
3243
3355
|
srcDirectory?: string | undefined;
|
|
3356
|
+
start?: {
|
|
3357
|
+
entry?: string | undefined;
|
|
3358
|
+
} | undefined;
|
|
3244
3359
|
router?: ({
|
|
3245
3360
|
entry?: string | undefined;
|
|
3246
3361
|
} & {
|
|
3247
|
-
|
|
3362
|
+
plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
|
|
3363
|
+
experimental?: {
|
|
3364
|
+
enableCodeSplitting?: boolean | undefined;
|
|
3365
|
+
} | undefined;
|
|
3248
3366
|
virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
3249
3367
|
routeFilePrefix?: string | undefined;
|
|
3250
3368
|
routeFileIgnorePrefix?: string | undefined;
|
|
@@ -3256,37 +3374,29 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3256
3374
|
routeTreeFileHeader?: string[] | undefined;
|
|
3257
3375
|
indexToken?: string | undefined;
|
|
3258
3376
|
routeToken?: string | undefined;
|
|
3259
|
-
pathParamsAllowedCharacters?: ("
|
|
3377
|
+
pathParamsAllowedCharacters?: ("+" | "&" | ";" | ":" | "@" | "=" | "$" | ",")[] | undefined;
|
|
3260
3378
|
generatedRouteTree?: string | undefined;
|
|
3261
3379
|
disableTypes?: boolean | undefined;
|
|
3262
|
-
verboseFileRoutes?: boolean | undefined;
|
|
3263
3380
|
addExtensions?: boolean | undefined;
|
|
3264
3381
|
enableRouteTreeFormatting?: boolean | undefined;
|
|
3265
|
-
routeTreeFileFooter?: string[] | undefined;
|
|
3382
|
+
routeTreeFileFooter?: string[] | ((...args: unknown[]) => string[]) | undefined;
|
|
3266
3383
|
customScaffolding?: {
|
|
3267
3384
|
routeTemplate?: string | undefined;
|
|
3268
3385
|
lazyRouteTemplate?: string | undefined;
|
|
3269
3386
|
} | undefined;
|
|
3270
|
-
experimental?: {
|
|
3271
|
-
enableCodeSplitting?: boolean | undefined;
|
|
3272
|
-
} | undefined;
|
|
3273
|
-
plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
|
|
3274
3387
|
tmpDir?: string | undefined;
|
|
3388
|
+
importRoutesUsingAbsolutePaths?: boolean | undefined;
|
|
3389
|
+
enableRouteGeneration?: boolean | undefined;
|
|
3390
|
+
codeSplittingOptions?: import('@tanstack/router-plugin').CodeSplittingOptions | undefined;
|
|
3391
|
+
plugin?: {
|
|
3392
|
+
vite?: {
|
|
3393
|
+
environmentName?: string | undefined;
|
|
3394
|
+
} | undefined;
|
|
3395
|
+
} | undefined;
|
|
3275
3396
|
}) | undefined;
|
|
3276
|
-
client?: {
|
|
3277
|
-
entry?: string | undefined;
|
|
3278
|
-
base?: string | undefined;
|
|
3279
|
-
} | undefined;
|
|
3280
|
-
server?: {
|
|
3281
|
-
entry?: string | undefined;
|
|
3282
|
-
} | undefined;
|
|
3283
3397
|
serverFns?: {
|
|
3284
3398
|
base?: string | undefined;
|
|
3285
3399
|
} | undefined;
|
|
3286
|
-
public?: {
|
|
3287
|
-
base?: string | undefined;
|
|
3288
|
-
dir?: string | undefined;
|
|
3289
|
-
} | undefined;
|
|
3290
3400
|
sitemap?: {
|
|
3291
3401
|
enabled?: boolean | undefined;
|
|
3292
3402
|
outputPath?: string | undefined;
|
|
@@ -3306,8 +3416,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3306
3416
|
}[] | undefined;
|
|
3307
3417
|
images?: {
|
|
3308
3418
|
loc: string;
|
|
3309
|
-
caption?: string | undefined;
|
|
3310
3419
|
title?: string | undefined;
|
|
3420
|
+
caption?: string | undefined;
|
|
3311
3421
|
}[] | undefined;
|
|
3312
3422
|
news?: {
|
|
3313
3423
|
title: string;
|
|
@@ -3327,6 +3437,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3327
3437
|
retryCount?: number | undefined;
|
|
3328
3438
|
retryDelay?: number | undefined;
|
|
3329
3439
|
onSuccess?: ((args_0: {
|
|
3440
|
+
html: string;
|
|
3330
3441
|
page: {
|
|
3331
3442
|
path: string;
|
|
3332
3443
|
sitemap?: {
|
|
@@ -3340,8 +3451,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3340
3451
|
}[] | undefined;
|
|
3341
3452
|
images?: {
|
|
3342
3453
|
loc: string;
|
|
3343
|
-
caption?: string | undefined;
|
|
3344
3454
|
title?: string | undefined;
|
|
3455
|
+
caption?: string | undefined;
|
|
3345
3456
|
}[] | undefined;
|
|
3346
3457
|
news?: {
|
|
3347
3458
|
title: string;
|
|
@@ -3354,7 +3465,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3354
3465
|
} | undefined;
|
|
3355
3466
|
fromCrawl?: boolean | undefined;
|
|
3356
3467
|
};
|
|
3357
|
-
html: string;
|
|
3358
3468
|
}, ...args: unknown[]) => any) | undefined;
|
|
3359
3469
|
headers?: Record<string, string> | undefined;
|
|
3360
3470
|
} | undefined;
|
|
@@ -3370,6 +3480,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3370
3480
|
retryCount?: number | undefined;
|
|
3371
3481
|
retryDelay?: number | undefined;
|
|
3372
3482
|
onSuccess?: ((args_0: {
|
|
3483
|
+
html: string;
|
|
3373
3484
|
page: {
|
|
3374
3485
|
path: string;
|
|
3375
3486
|
sitemap?: {
|
|
@@ -3383,8 +3494,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3383
3494
|
}[] | undefined;
|
|
3384
3495
|
images?: {
|
|
3385
3496
|
loc: string;
|
|
3386
|
-
caption?: string | undefined;
|
|
3387
3497
|
title?: string | undefined;
|
|
3498
|
+
caption?: string | undefined;
|
|
3388
3499
|
}[] | undefined;
|
|
3389
3500
|
news?: {
|
|
3390
3501
|
title: string;
|
|
@@ -3397,7 +3508,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3397
3508
|
} | undefined;
|
|
3398
3509
|
fromCrawl?: boolean | undefined;
|
|
3399
3510
|
};
|
|
3400
|
-
html: string;
|
|
3401
3511
|
}, ...args: unknown[]) => any) | undefined;
|
|
3402
3512
|
headers?: Record<string, string> | undefined;
|
|
3403
3513
|
}) | undefined;
|
|
@@ -3414,8 +3524,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3414
3524
|
}[] | undefined;
|
|
3415
3525
|
images?: {
|
|
3416
3526
|
loc: string;
|
|
3417
|
-
caption?: string | undefined;
|
|
3418
3527
|
title?: string | undefined;
|
|
3528
|
+
caption?: string | undefined;
|
|
3419
3529
|
}[] | undefined;
|
|
3420
3530
|
news?: {
|
|
3421
3531
|
title: string;
|
|
@@ -3435,48 +3545,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3435
3545
|
retryCount?: number | undefined;
|
|
3436
3546
|
retryDelay?: number | undefined;
|
|
3437
3547
|
onSuccess?: ((args_0: {
|
|
3438
|
-
page: {
|
|
3439
|
-
path: string;
|
|
3440
|
-
sitemap?: {
|
|
3441
|
-
exclude?: boolean | undefined;
|
|
3442
|
-
priority?: number | undefined;
|
|
3443
|
-
changefreq?: "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | "never" | undefined;
|
|
3444
|
-
lastmod?: string | Date | undefined;
|
|
3445
|
-
alternateRefs?: {
|
|
3446
|
-
href: string;
|
|
3447
|
-
hreflang: string;
|
|
3448
|
-
}[] | undefined;
|
|
3449
|
-
images?: {
|
|
3450
|
-
loc: string;
|
|
3451
|
-
caption?: string | undefined;
|
|
3452
|
-
title?: string | undefined;
|
|
3453
|
-
}[] | undefined;
|
|
3454
|
-
news?: {
|
|
3455
|
-
title: string;
|
|
3456
|
-
publication: {
|
|
3457
|
-
name: string;
|
|
3458
|
-
language: string;
|
|
3459
|
-
};
|
|
3460
|
-
publicationDate: string | Date;
|
|
3461
|
-
} | undefined;
|
|
3462
|
-
} | undefined;
|
|
3463
|
-
fromCrawl?: boolean | undefined;
|
|
3464
|
-
};
|
|
3465
3548
|
html: string;
|
|
3466
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
3467
|
-
headers?: Record<string, string> | undefined;
|
|
3468
|
-
} | undefined;
|
|
3469
|
-
}[] | undefined;
|
|
3470
|
-
spa?: {
|
|
3471
|
-
enabled?: boolean | undefined;
|
|
3472
|
-
prerender?: {
|
|
3473
|
-
enabled?: boolean | undefined;
|
|
3474
|
-
outputPath?: string | undefined;
|
|
3475
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
3476
|
-
crawlLinks?: boolean | undefined;
|
|
3477
|
-
retryCount?: number | undefined;
|
|
3478
|
-
retryDelay?: number | undefined;
|
|
3479
|
-
onSuccess?: ((args_0: {
|
|
3480
3549
|
page: {
|
|
3481
3550
|
path: string;
|
|
3482
3551
|
sitemap?: {
|
|
@@ -3490,8 +3559,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3490
3559
|
}[] | undefined;
|
|
3491
3560
|
images?: {
|
|
3492
3561
|
loc: string;
|
|
3493
|
-
caption?: string | undefined;
|
|
3494
3562
|
title?: string | undefined;
|
|
3563
|
+
caption?: string | undefined;
|
|
3495
3564
|
}[] | undefined;
|
|
3496
3565
|
news?: {
|
|
3497
3566
|
title: string;
|
|
@@ -3504,12 +3573,10 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3504
3573
|
} | undefined;
|
|
3505
3574
|
fromCrawl?: boolean | undefined;
|
|
3506
3575
|
};
|
|
3507
|
-
html: string;
|
|
3508
3576
|
}, ...args: unknown[]) => any) | undefined;
|
|
3509
3577
|
headers?: Record<string, string> | undefined;
|
|
3510
3578
|
} | undefined;
|
|
3511
|
-
|
|
3512
|
-
} | undefined;
|
|
3579
|
+
}[] | undefined;
|
|
3513
3580
|
vite?: {
|
|
3514
3581
|
installDevServerMiddleware?: boolean | undefined;
|
|
3515
3582
|
} | undefined;
|