@tanstack/start-plugin-core 1.142.8 → 1.142.10
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/create-server-fn-plugin/compiler.d.ts +8 -5
- package/dist/esm/create-server-fn-plugin/compiler.js +108 -43
- package/dist/esm/create-server-fn-plugin/compiler.js.map +1 -1
- package/dist/esm/create-server-fn-plugin/handleCreateIsomorphicFn.d.ts +4 -0
- package/dist/esm/create-server-fn-plugin/handleCreateIsomorphicFn.js +31 -0
- package/dist/esm/create-server-fn-plugin/handleCreateIsomorphicFn.js.map +1 -0
- package/dist/esm/create-server-fn-plugin/handleCreateServerFn.js +1 -1
- package/dist/esm/create-server-fn-plugin/handleCreateServerFn.js.map +1 -1
- package/dist/esm/create-server-fn-plugin/handleEnvOnly.d.ts +6 -0
- package/dist/esm/create-server-fn-plugin/handleEnvOnly.js +36 -0
- package/dist/esm/create-server-fn-plugin/handleEnvOnly.js.map +1 -0
- package/dist/esm/create-server-fn-plugin/plugin.d.ts +1 -1
- package/dist/esm/create-server-fn-plugin/plugin.js +50 -12
- package/dist/esm/create-server-fn-plugin/plugin.js.map +1 -1
- package/dist/esm/create-server-fn-plugin/types.d.ts +0 -1
- package/dist/esm/{start-compiler-plugin → create-server-fn-plugin}/utils.d.ts +0 -3
- package/dist/esm/create-server-fn-plugin/utils.js +19 -0
- package/dist/esm/create-server-fn-plugin/utils.js.map +1 -0
- package/dist/esm/plugin.d.ts +2 -30
- package/dist/esm/plugin.js +2 -2
- package/dist/esm/plugin.js.map +1 -1
- package/dist/esm/schema.d.ts +288 -288
- package/dist/esm/schema.js.map +1 -1
- package/dist/esm/start-manifest-plugin/plugin.d.ts +1 -1
- package/dist/esm/start-manifest-plugin/plugin.js.map +1 -1
- package/dist/esm/start-router-plugin/plugin.d.ts +1 -1
- package/dist/esm/start-router-plugin/plugin.js.map +1 -1
- package/dist/esm/types.d.ts +30 -0
- package/package.json +6 -6
- package/src/create-server-fn-plugin/compiler.ts +164 -58
- package/src/create-server-fn-plugin/handleCreateIsomorphicFn.ts +46 -0
- package/src/create-server-fn-plugin/handleCreateServerFn.ts +1 -1
- package/src/create-server-fn-plugin/handleEnvOnly.ts +45 -0
- package/src/create-server-fn-plugin/plugin.ts +58 -14
- package/src/create-server-fn-plugin/types.ts +0 -8
- package/src/create-server-fn-plugin/utils.ts +24 -0
- package/src/plugin.ts +7 -34
- package/src/schema.ts +1 -1
- package/src/start-manifest-plugin/plugin.ts +1 -1
- package/src/start-router-plugin/plugin.ts +1 -1
- package/src/types.ts +34 -0
- package/dist/esm/start-compiler-plugin/compilers.d.ts +0 -15
- package/dist/esm/start-compiler-plugin/compilers.js +0 -114
- package/dist/esm/start-compiler-plugin/compilers.js.map +0 -1
- package/dist/esm/start-compiler-plugin/constants.d.ts +0 -1
- package/dist/esm/start-compiler-plugin/constants.js +0 -9
- package/dist/esm/start-compiler-plugin/constants.js.map +0 -1
- package/dist/esm/start-compiler-plugin/envOnly.d.ts +0 -5
- package/dist/esm/start-compiler-plugin/envOnly.js +0 -41
- package/dist/esm/start-compiler-plugin/envOnly.js.map +0 -1
- package/dist/esm/start-compiler-plugin/isomorphicFn.d.ts +0 -4
- package/dist/esm/start-compiler-plugin/isomorphicFn.js +0 -49
- package/dist/esm/start-compiler-plugin/isomorphicFn.js.map +0 -1
- package/dist/esm/start-compiler-plugin/plugin.d.ts +0 -12
- package/dist/esm/start-compiler-plugin/plugin.js +0 -88
- package/dist/esm/start-compiler-plugin/plugin.js.map +0 -1
- package/dist/esm/start-compiler-plugin/utils.js +0 -30
- package/dist/esm/start-compiler-plugin/utils.js.map +0 -1
- package/src/start-compiler-plugin/compilers.ts +0 -176
- package/src/start-compiler-plugin/constants.ts +0 -5
- package/src/start-compiler-plugin/envOnly.ts +0 -58
- package/src/start-compiler-plugin/isomorphicFn.ts +0 -78
- package/src/start-compiler-plugin/plugin.ts +0 -111
- package/src/start-compiler-plugin/utils.ts +0 -41
package/dist/esm/schema.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { TanStackStartVitePluginCoreOptions } from './
|
|
2
|
+
import { TanStackStartVitePluginCoreOptions } from './types.js';
|
|
3
3
|
export declare function parseStartConfig(opts: z.input<typeof tanstackStartOptionsSchema>, corePluginOpts: TanStackStartVitePluginCoreOptions, root: string): {
|
|
4
4
|
router: {
|
|
5
|
-
target: import('./
|
|
5
|
+
target: import('./types.js').CompileStartFrameworkOptions;
|
|
6
6
|
routeFileIgnorePrefix: string;
|
|
7
7
|
routesDirectory: string;
|
|
8
8
|
quoteStyle: "single" | "double";
|
|
@@ -27,7 +27,7 @@ export declare function parseStartConfig(opts: z.input<typeof tanstackStartOptio
|
|
|
27
27
|
virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
28
28
|
routeFilePrefix?: string | undefined;
|
|
29
29
|
routeFileIgnorePattern?: string | undefined;
|
|
30
|
-
pathParamsAllowedCharacters?: ("
|
|
30
|
+
pathParamsAllowedCharacters?: (";" | ":" | "@" | "&" | "=" | "+" | "$" | ",")[] | undefined;
|
|
31
31
|
verboseFileRoutes?: boolean | undefined;
|
|
32
32
|
routeTreeFileFooter?: string[] | ((...args: unknown[]) => string[]) | undefined;
|
|
33
33
|
autoCodeSplitting?: boolean | undefined;
|
|
@@ -42,6 +42,10 @@ export declare function parseStartConfig(opts: z.input<typeof tanstackStartOptio
|
|
|
42
42
|
entry?: string | undefined;
|
|
43
43
|
basepath?: string | undefined;
|
|
44
44
|
};
|
|
45
|
+
srcDirectory: string;
|
|
46
|
+
start: {
|
|
47
|
+
entry?: string | undefined;
|
|
48
|
+
};
|
|
45
49
|
client: {
|
|
46
50
|
base: string;
|
|
47
51
|
entry?: string | undefined;
|
|
@@ -49,10 +53,6 @@ export declare function parseStartConfig(opts: z.input<typeof tanstackStartOptio
|
|
|
49
53
|
server: {
|
|
50
54
|
entry?: string | undefined;
|
|
51
55
|
};
|
|
52
|
-
srcDirectory: string;
|
|
53
|
-
start: {
|
|
54
|
-
entry?: string | undefined;
|
|
55
|
-
};
|
|
56
56
|
serverFns: {
|
|
57
57
|
base: string;
|
|
58
58
|
generateFunctionId?: ((args_0: {
|
|
@@ -73,8 +73,8 @@ export declare function parseStartConfig(opts: z.input<typeof tanstackStartOptio
|
|
|
73
73
|
}[] | undefined;
|
|
74
74
|
images?: {
|
|
75
75
|
loc: string;
|
|
76
|
-
title?: string | undefined;
|
|
77
76
|
caption?: string | undefined;
|
|
77
|
+
title?: string | undefined;
|
|
78
78
|
}[] | undefined;
|
|
79
79
|
news?: {
|
|
80
80
|
title: string;
|
|
@@ -94,7 +94,6 @@ export declare function parseStartConfig(opts: z.input<typeof tanstackStartOptio
|
|
|
94
94
|
retryCount?: number | undefined;
|
|
95
95
|
retryDelay?: number | undefined;
|
|
96
96
|
onSuccess?: ((args_0: {
|
|
97
|
-
html: string;
|
|
98
97
|
page: {
|
|
99
98
|
path: string;
|
|
100
99
|
sitemap?: {
|
|
@@ -108,8 +107,8 @@ export declare function parseStartConfig(opts: z.input<typeof tanstackStartOptio
|
|
|
108
107
|
}[] | undefined;
|
|
109
108
|
images?: {
|
|
110
109
|
loc: string;
|
|
111
|
-
title?: string | undefined;
|
|
112
110
|
caption?: string | undefined;
|
|
111
|
+
title?: string | undefined;
|
|
113
112
|
}[] | undefined;
|
|
114
113
|
news?: {
|
|
115
114
|
title: string;
|
|
@@ -122,53 +121,11 @@ export declare function parseStartConfig(opts: z.input<typeof tanstackStartOptio
|
|
|
122
121
|
} | undefined;
|
|
123
122
|
fromCrawl?: boolean | undefined;
|
|
124
123
|
};
|
|
124
|
+
html: string;
|
|
125
125
|
}, ...args: unknown[]) => any) | undefined;
|
|
126
126
|
headers?: Record<string, string> | undefined;
|
|
127
127
|
} | undefined;
|
|
128
128
|
}[];
|
|
129
|
-
spa?: {
|
|
130
|
-
enabled: boolean;
|
|
131
|
-
prerender: {
|
|
132
|
-
enabled: boolean;
|
|
133
|
-
outputPath: string;
|
|
134
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
135
|
-
crawlLinks: boolean;
|
|
136
|
-
retryCount: number;
|
|
137
|
-
retryDelay?: number | undefined;
|
|
138
|
-
onSuccess?: ((args_0: {
|
|
139
|
-
html: string;
|
|
140
|
-
page: {
|
|
141
|
-
path: string;
|
|
142
|
-
sitemap?: {
|
|
143
|
-
exclude?: boolean | undefined;
|
|
144
|
-
priority?: number | undefined;
|
|
145
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
146
|
-
lastmod?: string | Date | undefined;
|
|
147
|
-
alternateRefs?: {
|
|
148
|
-
href: string;
|
|
149
|
-
hreflang: string;
|
|
150
|
-
}[] | undefined;
|
|
151
|
-
images?: {
|
|
152
|
-
loc: string;
|
|
153
|
-
title?: string | undefined;
|
|
154
|
-
caption?: string | undefined;
|
|
155
|
-
}[] | undefined;
|
|
156
|
-
news?: {
|
|
157
|
-
title: string;
|
|
158
|
-
publication: {
|
|
159
|
-
name: string;
|
|
160
|
-
language: string;
|
|
161
|
-
};
|
|
162
|
-
publicationDate: string | Date;
|
|
163
|
-
} | undefined;
|
|
164
|
-
} | undefined;
|
|
165
|
-
fromCrawl?: boolean | undefined;
|
|
166
|
-
};
|
|
167
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
168
|
-
headers?: Record<string, string> | undefined;
|
|
169
|
-
};
|
|
170
|
-
maskPath: string;
|
|
171
|
-
} | undefined;
|
|
172
129
|
sitemap?: {
|
|
173
130
|
enabled: boolean;
|
|
174
131
|
outputPath: string;
|
|
@@ -188,8 +145,8 @@ export declare function parseStartConfig(opts: z.input<typeof tanstackStartOptio
|
|
|
188
145
|
}[] | undefined;
|
|
189
146
|
images?: {
|
|
190
147
|
loc: string;
|
|
191
|
-
title?: string | undefined;
|
|
192
148
|
caption?: string | undefined;
|
|
149
|
+
title?: string | undefined;
|
|
193
150
|
}[] | undefined;
|
|
194
151
|
news?: {
|
|
195
152
|
title: string;
|
|
@@ -209,7 +166,6 @@ export declare function parseStartConfig(opts: z.input<typeof tanstackStartOptio
|
|
|
209
166
|
retryCount?: number | undefined;
|
|
210
167
|
retryDelay?: number | undefined;
|
|
211
168
|
onSuccess?: ((args_0: {
|
|
212
|
-
html: string;
|
|
213
169
|
page: {
|
|
214
170
|
path: string;
|
|
215
171
|
sitemap?: {
|
|
@@ -223,8 +179,8 @@ export declare function parseStartConfig(opts: z.input<typeof tanstackStartOptio
|
|
|
223
179
|
}[] | undefined;
|
|
224
180
|
images?: {
|
|
225
181
|
loc: string;
|
|
226
|
-
title?: string | undefined;
|
|
227
182
|
caption?: string | undefined;
|
|
183
|
+
title?: string | undefined;
|
|
228
184
|
}[] | undefined;
|
|
229
185
|
news?: {
|
|
230
186
|
title: string;
|
|
@@ -237,6 +193,7 @@ export declare function parseStartConfig(opts: z.input<typeof tanstackStartOptio
|
|
|
237
193
|
} | undefined;
|
|
238
194
|
fromCrawl?: boolean | undefined;
|
|
239
195
|
};
|
|
196
|
+
html: string;
|
|
240
197
|
}, ...args: unknown[]) => any) | undefined;
|
|
241
198
|
headers?: Record<string, string> | undefined;
|
|
242
199
|
} | undefined;
|
|
@@ -254,7 +211,6 @@ export declare function parseStartConfig(opts: z.input<typeof tanstackStartOptio
|
|
|
254
211
|
retryCount?: number | undefined;
|
|
255
212
|
retryDelay?: number | undefined;
|
|
256
213
|
onSuccess?: ((args_0: {
|
|
257
|
-
html: string;
|
|
258
214
|
page: {
|
|
259
215
|
path: string;
|
|
260
216
|
sitemap?: {
|
|
@@ -268,8 +224,8 @@ export declare function parseStartConfig(opts: z.input<typeof tanstackStartOptio
|
|
|
268
224
|
}[] | undefined;
|
|
269
225
|
images?: {
|
|
270
226
|
loc: string;
|
|
271
|
-
title?: string | undefined;
|
|
272
227
|
caption?: string | undefined;
|
|
228
|
+
title?: string | undefined;
|
|
273
229
|
}[] | undefined;
|
|
274
230
|
news?: {
|
|
275
231
|
title: string;
|
|
@@ -282,9 +238,53 @@ export declare function parseStartConfig(opts: z.input<typeof tanstackStartOptio
|
|
|
282
238
|
} | undefined;
|
|
283
239
|
fromCrawl?: boolean | undefined;
|
|
284
240
|
};
|
|
241
|
+
html: string;
|
|
285
242
|
}, ...args: unknown[]) => any) | undefined;
|
|
286
243
|
headers?: Record<string, string> | undefined;
|
|
287
244
|
}) | undefined;
|
|
245
|
+
spa?: {
|
|
246
|
+
enabled: boolean;
|
|
247
|
+
prerender: {
|
|
248
|
+
enabled: boolean;
|
|
249
|
+
outputPath: string;
|
|
250
|
+
autoSubfolderIndex?: boolean | undefined;
|
|
251
|
+
crawlLinks: boolean;
|
|
252
|
+
retryCount: number;
|
|
253
|
+
retryDelay?: number | undefined;
|
|
254
|
+
onSuccess?: ((args_0: {
|
|
255
|
+
page: {
|
|
256
|
+
path: string;
|
|
257
|
+
sitemap?: {
|
|
258
|
+
exclude?: boolean | undefined;
|
|
259
|
+
priority?: number | undefined;
|
|
260
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
261
|
+
lastmod?: string | Date | undefined;
|
|
262
|
+
alternateRefs?: {
|
|
263
|
+
href: string;
|
|
264
|
+
hreflang: string;
|
|
265
|
+
}[] | undefined;
|
|
266
|
+
images?: {
|
|
267
|
+
loc: string;
|
|
268
|
+
caption?: string | undefined;
|
|
269
|
+
title?: string | undefined;
|
|
270
|
+
}[] | undefined;
|
|
271
|
+
news?: {
|
|
272
|
+
title: string;
|
|
273
|
+
publication: {
|
|
274
|
+
name: string;
|
|
275
|
+
language: string;
|
|
276
|
+
};
|
|
277
|
+
publicationDate: string | Date;
|
|
278
|
+
} | undefined;
|
|
279
|
+
} | undefined;
|
|
280
|
+
fromCrawl?: boolean | undefined;
|
|
281
|
+
};
|
|
282
|
+
html: string;
|
|
283
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
284
|
+
headers?: Record<string, string> | undefined;
|
|
285
|
+
};
|
|
286
|
+
maskPath: string;
|
|
287
|
+
} | undefined;
|
|
288
288
|
vite?: {
|
|
289
289
|
installDevServerMiddleware?: boolean | undefined;
|
|
290
290
|
} | undefined;
|
|
@@ -312,12 +312,12 @@ declare const pageSchema: z.ZodObject<{
|
|
|
312
312
|
title: z.ZodOptional<z.ZodString>;
|
|
313
313
|
}, "strip", z.ZodTypeAny, {
|
|
314
314
|
loc: string;
|
|
315
|
-
title?: string | undefined;
|
|
316
315
|
caption?: string | undefined;
|
|
316
|
+
title?: string | undefined;
|
|
317
317
|
}, {
|
|
318
318
|
loc: string;
|
|
319
|
-
title?: string | undefined;
|
|
320
319
|
caption?: string | undefined;
|
|
320
|
+
title?: string | undefined;
|
|
321
321
|
}>, "many">>;
|
|
322
322
|
news: z.ZodOptional<z.ZodObject<{
|
|
323
323
|
publication: z.ZodObject<{
|
|
@@ -358,8 +358,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
358
358
|
}[] | undefined;
|
|
359
359
|
images?: {
|
|
360
360
|
loc: string;
|
|
361
|
-
title?: string | undefined;
|
|
362
361
|
caption?: string | undefined;
|
|
362
|
+
title?: string | undefined;
|
|
363
363
|
}[] | undefined;
|
|
364
364
|
news?: {
|
|
365
365
|
title: string;
|
|
@@ -380,8 +380,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
380
380
|
}[] | undefined;
|
|
381
381
|
images?: {
|
|
382
382
|
loc: string;
|
|
383
|
-
title?: string | undefined;
|
|
384
383
|
caption?: string | undefined;
|
|
384
|
+
title?: string | undefined;
|
|
385
385
|
}[] | undefined;
|
|
386
386
|
news?: {
|
|
387
387
|
title: string;
|
|
@@ -425,12 +425,12 @@ declare const pageSchema: z.ZodObject<{
|
|
|
425
425
|
title: z.ZodOptional<z.ZodString>;
|
|
426
426
|
}, "strip", z.ZodTypeAny, {
|
|
427
427
|
loc: string;
|
|
428
|
-
title?: string | undefined;
|
|
429
428
|
caption?: string | undefined;
|
|
429
|
+
title?: string | undefined;
|
|
430
430
|
}, {
|
|
431
431
|
loc: string;
|
|
432
|
-
title?: string | undefined;
|
|
433
432
|
caption?: string | undefined;
|
|
433
|
+
title?: string | undefined;
|
|
434
434
|
}>, "many">>;
|
|
435
435
|
news: z.ZodOptional<z.ZodObject<{
|
|
436
436
|
publication: z.ZodObject<{
|
|
@@ -471,8 +471,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
471
471
|
}[] | undefined;
|
|
472
472
|
images?: {
|
|
473
473
|
loc: string;
|
|
474
|
-
title?: string | undefined;
|
|
475
474
|
caption?: string | undefined;
|
|
475
|
+
title?: string | undefined;
|
|
476
476
|
}[] | undefined;
|
|
477
477
|
news?: {
|
|
478
478
|
title: string;
|
|
@@ -493,8 +493,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
493
493
|
}[] | undefined;
|
|
494
494
|
images?: {
|
|
495
495
|
loc: string;
|
|
496
|
-
title?: string | undefined;
|
|
497
496
|
caption?: string | undefined;
|
|
497
|
+
title?: string | undefined;
|
|
498
498
|
}[] | undefined;
|
|
499
499
|
news?: {
|
|
500
500
|
title: string;
|
|
@@ -519,8 +519,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
519
519
|
}[] | undefined;
|
|
520
520
|
images?: {
|
|
521
521
|
loc: string;
|
|
522
|
-
title?: string | undefined;
|
|
523
522
|
caption?: string | undefined;
|
|
523
|
+
title?: string | undefined;
|
|
524
524
|
}[] | undefined;
|
|
525
525
|
news?: {
|
|
526
526
|
title: string;
|
|
@@ -545,8 +545,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
545
545
|
}[] | undefined;
|
|
546
546
|
images?: {
|
|
547
547
|
loc: string;
|
|
548
|
-
title?: string | undefined;
|
|
549
548
|
caption?: string | undefined;
|
|
549
|
+
title?: string | undefined;
|
|
550
550
|
}[] | undefined;
|
|
551
551
|
news?: {
|
|
552
552
|
title: string;
|
|
@@ -561,7 +561,6 @@ declare const pageSchema: z.ZodObject<{
|
|
|
561
561
|
}>;
|
|
562
562
|
html: z.ZodString;
|
|
563
563
|
}, "strip", z.ZodTypeAny, {
|
|
564
|
-
html: string;
|
|
565
564
|
page: {
|
|
566
565
|
path: string;
|
|
567
566
|
sitemap?: {
|
|
@@ -575,8 +574,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
575
574
|
}[] | undefined;
|
|
576
575
|
images?: {
|
|
577
576
|
loc: string;
|
|
578
|
-
title?: string | undefined;
|
|
579
577
|
caption?: string | undefined;
|
|
578
|
+
title?: string | undefined;
|
|
580
579
|
}[] | undefined;
|
|
581
580
|
news?: {
|
|
582
581
|
title: string;
|
|
@@ -589,8 +588,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
589
588
|
} | undefined;
|
|
590
589
|
fromCrawl?: boolean | undefined;
|
|
591
590
|
};
|
|
592
|
-
}, {
|
|
593
591
|
html: string;
|
|
592
|
+
}, {
|
|
594
593
|
page: {
|
|
595
594
|
path: string;
|
|
596
595
|
sitemap?: {
|
|
@@ -604,8 +603,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
604
603
|
}[] | undefined;
|
|
605
604
|
images?: {
|
|
606
605
|
loc: string;
|
|
607
|
-
title?: string | undefined;
|
|
608
606
|
caption?: string | undefined;
|
|
607
|
+
title?: string | undefined;
|
|
609
608
|
}[] | undefined;
|
|
610
609
|
news?: {
|
|
611
610
|
title: string;
|
|
@@ -618,6 +617,7 @@ declare const pageSchema: z.ZodObject<{
|
|
|
618
617
|
} | undefined;
|
|
619
618
|
fromCrawl?: boolean | undefined;
|
|
620
619
|
};
|
|
620
|
+
html: string;
|
|
621
621
|
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
622
622
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
623
623
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -628,7 +628,6 @@ declare const pageSchema: z.ZodObject<{
|
|
|
628
628
|
retryCount?: number | undefined;
|
|
629
629
|
retryDelay?: number | undefined;
|
|
630
630
|
onSuccess?: ((args_0: {
|
|
631
|
-
html: string;
|
|
632
631
|
page: {
|
|
633
632
|
path: string;
|
|
634
633
|
sitemap?: {
|
|
@@ -642,8 +641,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
642
641
|
}[] | undefined;
|
|
643
642
|
images?: {
|
|
644
643
|
loc: string;
|
|
645
|
-
title?: string | undefined;
|
|
646
644
|
caption?: string | undefined;
|
|
645
|
+
title?: string | undefined;
|
|
647
646
|
}[] | undefined;
|
|
648
647
|
news?: {
|
|
649
648
|
title: string;
|
|
@@ -656,6 +655,7 @@ declare const pageSchema: z.ZodObject<{
|
|
|
656
655
|
} | undefined;
|
|
657
656
|
fromCrawl?: boolean | undefined;
|
|
658
657
|
};
|
|
658
|
+
html: string;
|
|
659
659
|
}, ...args: unknown[]) => any) | undefined;
|
|
660
660
|
headers?: Record<string, string> | undefined;
|
|
661
661
|
}, {
|
|
@@ -666,7 +666,6 @@ declare const pageSchema: z.ZodObject<{
|
|
|
666
666
|
retryCount?: number | undefined;
|
|
667
667
|
retryDelay?: number | undefined;
|
|
668
668
|
onSuccess?: ((args_0: {
|
|
669
|
-
html: string;
|
|
670
669
|
page: {
|
|
671
670
|
path: string;
|
|
672
671
|
sitemap?: {
|
|
@@ -680,8 +679,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
680
679
|
}[] | undefined;
|
|
681
680
|
images?: {
|
|
682
681
|
loc: string;
|
|
683
|
-
title?: string | undefined;
|
|
684
682
|
caption?: string | undefined;
|
|
683
|
+
title?: string | undefined;
|
|
685
684
|
}[] | undefined;
|
|
686
685
|
news?: {
|
|
687
686
|
title: string;
|
|
@@ -694,6 +693,7 @@ declare const pageSchema: z.ZodObject<{
|
|
|
694
693
|
} | undefined;
|
|
695
694
|
fromCrawl?: boolean | undefined;
|
|
696
695
|
};
|
|
696
|
+
html: string;
|
|
697
697
|
}, ...args: unknown[]) => any) | undefined;
|
|
698
698
|
headers?: Record<string, string> | undefined;
|
|
699
699
|
}>>;
|
|
@@ -710,8 +710,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
710
710
|
}[] | undefined;
|
|
711
711
|
images?: {
|
|
712
712
|
loc: string;
|
|
713
|
-
title?: string | undefined;
|
|
714
713
|
caption?: string | undefined;
|
|
714
|
+
title?: string | undefined;
|
|
715
715
|
}[] | undefined;
|
|
716
716
|
news?: {
|
|
717
717
|
title: string;
|
|
@@ -731,7 +731,6 @@ declare const pageSchema: z.ZodObject<{
|
|
|
731
731
|
retryCount?: number | undefined;
|
|
732
732
|
retryDelay?: number | undefined;
|
|
733
733
|
onSuccess?: ((args_0: {
|
|
734
|
-
html: string;
|
|
735
734
|
page: {
|
|
736
735
|
path: string;
|
|
737
736
|
sitemap?: {
|
|
@@ -745,8 +744,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
745
744
|
}[] | undefined;
|
|
746
745
|
images?: {
|
|
747
746
|
loc: string;
|
|
748
|
-
title?: string | undefined;
|
|
749
747
|
caption?: string | undefined;
|
|
748
|
+
title?: string | undefined;
|
|
750
749
|
}[] | undefined;
|
|
751
750
|
news?: {
|
|
752
751
|
title: string;
|
|
@@ -759,6 +758,7 @@ declare const pageSchema: z.ZodObject<{
|
|
|
759
758
|
} | undefined;
|
|
760
759
|
fromCrawl?: boolean | undefined;
|
|
761
760
|
};
|
|
761
|
+
html: string;
|
|
762
762
|
}, ...args: unknown[]) => any) | undefined;
|
|
763
763
|
headers?: Record<string, string> | undefined;
|
|
764
764
|
} | undefined;
|
|
@@ -775,8 +775,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
775
775
|
}[] | undefined;
|
|
776
776
|
images?: {
|
|
777
777
|
loc: string;
|
|
778
|
-
title?: string | undefined;
|
|
779
778
|
caption?: string | undefined;
|
|
779
|
+
title?: string | undefined;
|
|
780
780
|
}[] | undefined;
|
|
781
781
|
news?: {
|
|
782
782
|
title: string;
|
|
@@ -796,7 +796,6 @@ declare const pageSchema: z.ZodObject<{
|
|
|
796
796
|
retryCount?: number | undefined;
|
|
797
797
|
retryDelay?: number | undefined;
|
|
798
798
|
onSuccess?: ((args_0: {
|
|
799
|
-
html: string;
|
|
800
799
|
page: {
|
|
801
800
|
path: string;
|
|
802
801
|
sitemap?: {
|
|
@@ -810,8 +809,8 @@ declare const pageSchema: z.ZodObject<{
|
|
|
810
809
|
}[] | undefined;
|
|
811
810
|
images?: {
|
|
812
811
|
loc: string;
|
|
813
|
-
title?: string | undefined;
|
|
814
812
|
caption?: string | undefined;
|
|
813
|
+
title?: string | undefined;
|
|
815
814
|
}[] | undefined;
|
|
816
815
|
news?: {
|
|
817
816
|
title: string;
|
|
@@ -824,6 +823,7 @@ declare const pageSchema: z.ZodObject<{
|
|
|
824
823
|
} | undefined;
|
|
825
824
|
fromCrawl?: boolean | undefined;
|
|
826
825
|
};
|
|
826
|
+
html: string;
|
|
827
827
|
}, ...args: unknown[]) => any) | undefined;
|
|
828
828
|
headers?: Record<string, string> | undefined;
|
|
829
829
|
} | undefined;
|
|
@@ -847,14 +847,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
847
847
|
entry?: string | undefined;
|
|
848
848
|
basepath?: string | undefined;
|
|
849
849
|
}>, z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
850
|
-
plugins: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodType<import('@tanstack/router-generator').GeneratorPlugin, z.ZodTypeDef, import('@tanstack/router-generator').GeneratorPlugin>, "many">>>;
|
|
851
|
-
experimental: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
852
|
-
enableCodeSplitting: z.ZodOptional<z.ZodBoolean>;
|
|
853
|
-
}, "strip", z.ZodTypeAny, {
|
|
854
|
-
enableCodeSplitting?: boolean | undefined;
|
|
855
|
-
}, {
|
|
856
|
-
enableCodeSplitting?: boolean | undefined;
|
|
857
|
-
}>>>;
|
|
858
850
|
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]>>>;
|
|
859
851
|
routeFilePrefix: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
860
852
|
routeFileIgnorePrefix: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodString>>>;
|
|
@@ -882,6 +874,14 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
882
874
|
routeTemplate?: string | undefined;
|
|
883
875
|
lazyRouteTemplate?: string | undefined;
|
|
884
876
|
}>>>;
|
|
877
|
+
experimental: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
878
|
+
enableCodeSplitting: z.ZodOptional<z.ZodBoolean>;
|
|
879
|
+
}, "strip", z.ZodTypeAny, {
|
|
880
|
+
enableCodeSplitting?: boolean | undefined;
|
|
881
|
+
}, {
|
|
882
|
+
enableCodeSplitting?: boolean | undefined;
|
|
883
|
+
}>>>;
|
|
884
|
+
plugins: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodType<import('@tanstack/router-generator').GeneratorPlugin, z.ZodTypeDef, import('@tanstack/router-generator').GeneratorPlugin>, "many">>>;
|
|
885
885
|
tmpDir: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodString>>>;
|
|
886
886
|
importRoutesUsingAbsolutePaths: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>;
|
|
887
887
|
enableRouteGeneration: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -904,10 +904,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
904
904
|
} | undefined;
|
|
905
905
|
}>>>;
|
|
906
906
|
}, "strip", z.ZodTypeAny, {
|
|
907
|
-
plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
|
|
908
|
-
experimental?: {
|
|
909
|
-
enableCodeSplitting?: boolean | undefined;
|
|
910
|
-
} | undefined;
|
|
911
907
|
virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
912
908
|
routeFilePrefix?: string | undefined;
|
|
913
909
|
routeFileIgnorePrefix?: string | undefined;
|
|
@@ -919,7 +915,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
919
915
|
routeTreeFileHeader?: string[] | undefined;
|
|
920
916
|
indexToken?: string | undefined;
|
|
921
917
|
routeToken?: string | undefined;
|
|
922
|
-
pathParamsAllowedCharacters?: ("
|
|
918
|
+
pathParamsAllowedCharacters?: (";" | ":" | "@" | "&" | "=" | "+" | "$" | ",")[] | undefined;
|
|
923
919
|
generatedRouteTree?: string | undefined;
|
|
924
920
|
disableTypes?: boolean | undefined;
|
|
925
921
|
addExtensions?: boolean | undefined;
|
|
@@ -929,6 +925,10 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
929
925
|
routeTemplate?: string | undefined;
|
|
930
926
|
lazyRouteTemplate?: string | undefined;
|
|
931
927
|
} | undefined;
|
|
928
|
+
experimental?: {
|
|
929
|
+
enableCodeSplitting?: boolean | undefined;
|
|
930
|
+
} | undefined;
|
|
931
|
+
plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
|
|
932
932
|
tmpDir?: string | undefined;
|
|
933
933
|
importRoutesUsingAbsolutePaths?: boolean | undefined;
|
|
934
934
|
enableRouteGeneration?: boolean | undefined;
|
|
@@ -939,10 +939,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
939
939
|
} | undefined;
|
|
940
940
|
} | undefined;
|
|
941
941
|
}, {
|
|
942
|
-
plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
|
|
943
|
-
experimental?: {
|
|
944
|
-
enableCodeSplitting?: boolean | undefined;
|
|
945
|
-
} | undefined;
|
|
946
942
|
virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
947
943
|
routeFilePrefix?: string | undefined;
|
|
948
944
|
routeFileIgnorePrefix?: string | undefined;
|
|
@@ -954,7 +950,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
954
950
|
routeTreeFileHeader?: string[] | undefined;
|
|
955
951
|
indexToken?: string | undefined;
|
|
956
952
|
routeToken?: string | undefined;
|
|
957
|
-
pathParamsAllowedCharacters?: ("
|
|
953
|
+
pathParamsAllowedCharacters?: (";" | ":" | "@" | "&" | "=" | "+" | "$" | ",")[] | undefined;
|
|
958
954
|
generatedRouteTree?: string | undefined;
|
|
959
955
|
disableTypes?: boolean | undefined;
|
|
960
956
|
addExtensions?: boolean | undefined;
|
|
@@ -964,6 +960,10 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
964
960
|
routeTemplate?: string | undefined;
|
|
965
961
|
lazyRouteTemplate?: string | undefined;
|
|
966
962
|
} | undefined;
|
|
963
|
+
experimental?: {
|
|
964
|
+
enableCodeSplitting?: boolean | undefined;
|
|
965
|
+
} | undefined;
|
|
966
|
+
plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
|
|
967
967
|
tmpDir?: string | undefined;
|
|
968
968
|
importRoutesUsingAbsolutePaths?: boolean | undefined;
|
|
969
969
|
enableRouteGeneration?: boolean | undefined;
|
|
@@ -981,8 +981,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
981
981
|
base: string;
|
|
982
982
|
entry?: string | undefined;
|
|
983
983
|
}, {
|
|
984
|
-
base?: string | undefined;
|
|
985
984
|
entry?: string | undefined;
|
|
985
|
+
base?: string | undefined;
|
|
986
986
|
}>>>;
|
|
987
987
|
server: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
988
988
|
entry: z.ZodOptional<z.ZodString>;
|
|
@@ -1039,12 +1039,12 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1039
1039
|
title: z.ZodOptional<z.ZodString>;
|
|
1040
1040
|
}, "strip", z.ZodTypeAny, {
|
|
1041
1041
|
loc: string;
|
|
1042
|
-
title?: string | undefined;
|
|
1043
1042
|
caption?: string | undefined;
|
|
1043
|
+
title?: string | undefined;
|
|
1044
1044
|
}, {
|
|
1045
1045
|
loc: string;
|
|
1046
|
-
title?: string | undefined;
|
|
1047
1046
|
caption?: string | undefined;
|
|
1047
|
+
title?: string | undefined;
|
|
1048
1048
|
}>, "many">>;
|
|
1049
1049
|
news: z.ZodOptional<z.ZodObject<{
|
|
1050
1050
|
publication: z.ZodObject<{
|
|
@@ -1085,8 +1085,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1085
1085
|
}[] | undefined;
|
|
1086
1086
|
images?: {
|
|
1087
1087
|
loc: string;
|
|
1088
|
-
title?: string | undefined;
|
|
1089
1088
|
caption?: string | undefined;
|
|
1089
|
+
title?: string | undefined;
|
|
1090
1090
|
}[] | undefined;
|
|
1091
1091
|
news?: {
|
|
1092
1092
|
title: string;
|
|
@@ -1107,8 +1107,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1107
1107
|
}[] | undefined;
|
|
1108
1108
|
images?: {
|
|
1109
1109
|
loc: string;
|
|
1110
|
-
title?: string | undefined;
|
|
1111
1110
|
caption?: string | undefined;
|
|
1111
|
+
title?: string | undefined;
|
|
1112
1112
|
}[] | undefined;
|
|
1113
1113
|
news?: {
|
|
1114
1114
|
title: string;
|
|
@@ -1152,12 +1152,12 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1152
1152
|
title: z.ZodOptional<z.ZodString>;
|
|
1153
1153
|
}, "strip", z.ZodTypeAny, {
|
|
1154
1154
|
loc: string;
|
|
1155
|
-
title?: string | undefined;
|
|
1156
1155
|
caption?: string | undefined;
|
|
1156
|
+
title?: string | undefined;
|
|
1157
1157
|
}, {
|
|
1158
1158
|
loc: string;
|
|
1159
|
-
title?: string | undefined;
|
|
1160
1159
|
caption?: string | undefined;
|
|
1160
|
+
title?: string | undefined;
|
|
1161
1161
|
}>, "many">>;
|
|
1162
1162
|
news: z.ZodOptional<z.ZodObject<{
|
|
1163
1163
|
publication: z.ZodObject<{
|
|
@@ -1198,8 +1198,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1198
1198
|
}[] | undefined;
|
|
1199
1199
|
images?: {
|
|
1200
1200
|
loc: string;
|
|
1201
|
-
title?: string | undefined;
|
|
1202
1201
|
caption?: string | undefined;
|
|
1202
|
+
title?: string | undefined;
|
|
1203
1203
|
}[] | undefined;
|
|
1204
1204
|
news?: {
|
|
1205
1205
|
title: string;
|
|
@@ -1220,8 +1220,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1220
1220
|
}[] | undefined;
|
|
1221
1221
|
images?: {
|
|
1222
1222
|
loc: string;
|
|
1223
|
-
title?: string | undefined;
|
|
1224
1223
|
caption?: string | undefined;
|
|
1224
|
+
title?: string | undefined;
|
|
1225
1225
|
}[] | undefined;
|
|
1226
1226
|
news?: {
|
|
1227
1227
|
title: string;
|
|
@@ -1246,8 +1246,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1246
1246
|
}[] | undefined;
|
|
1247
1247
|
images?: {
|
|
1248
1248
|
loc: string;
|
|
1249
|
-
title?: string | undefined;
|
|
1250
1249
|
caption?: string | undefined;
|
|
1250
|
+
title?: string | undefined;
|
|
1251
1251
|
}[] | undefined;
|
|
1252
1252
|
news?: {
|
|
1253
1253
|
title: string;
|
|
@@ -1272,8 +1272,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1272
1272
|
}[] | undefined;
|
|
1273
1273
|
images?: {
|
|
1274
1274
|
loc: string;
|
|
1275
|
-
title?: string | undefined;
|
|
1276
1275
|
caption?: string | undefined;
|
|
1276
|
+
title?: string | undefined;
|
|
1277
1277
|
}[] | undefined;
|
|
1278
1278
|
news?: {
|
|
1279
1279
|
title: string;
|
|
@@ -1288,7 +1288,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1288
1288
|
}>;
|
|
1289
1289
|
html: z.ZodString;
|
|
1290
1290
|
}, "strip", z.ZodTypeAny, {
|
|
1291
|
-
html: string;
|
|
1292
1291
|
page: {
|
|
1293
1292
|
path: string;
|
|
1294
1293
|
sitemap?: {
|
|
@@ -1302,8 +1301,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1302
1301
|
}[] | undefined;
|
|
1303
1302
|
images?: {
|
|
1304
1303
|
loc: string;
|
|
1305
|
-
title?: string | undefined;
|
|
1306
1304
|
caption?: string | undefined;
|
|
1305
|
+
title?: string | undefined;
|
|
1307
1306
|
}[] | undefined;
|
|
1308
1307
|
news?: {
|
|
1309
1308
|
title: string;
|
|
@@ -1316,8 +1315,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1316
1315
|
} | undefined;
|
|
1317
1316
|
fromCrawl?: boolean | undefined;
|
|
1318
1317
|
};
|
|
1319
|
-
}, {
|
|
1320
1318
|
html: string;
|
|
1319
|
+
}, {
|
|
1321
1320
|
page: {
|
|
1322
1321
|
path: string;
|
|
1323
1322
|
sitemap?: {
|
|
@@ -1331,8 +1330,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1331
1330
|
}[] | undefined;
|
|
1332
1331
|
images?: {
|
|
1333
1332
|
loc: string;
|
|
1334
|
-
title?: string | undefined;
|
|
1335
1333
|
caption?: string | undefined;
|
|
1334
|
+
title?: string | undefined;
|
|
1336
1335
|
}[] | undefined;
|
|
1337
1336
|
news?: {
|
|
1338
1337
|
title: string;
|
|
@@ -1345,6 +1344,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1345
1344
|
} | undefined;
|
|
1346
1345
|
fromCrawl?: boolean | undefined;
|
|
1347
1346
|
};
|
|
1347
|
+
html: string;
|
|
1348
1348
|
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
1349
1349
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1350
1350
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1355,7 +1355,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1355
1355
|
retryCount?: number | undefined;
|
|
1356
1356
|
retryDelay?: number | undefined;
|
|
1357
1357
|
onSuccess?: ((args_0: {
|
|
1358
|
-
html: string;
|
|
1359
1358
|
page: {
|
|
1360
1359
|
path: string;
|
|
1361
1360
|
sitemap?: {
|
|
@@ -1369,8 +1368,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1369
1368
|
}[] | undefined;
|
|
1370
1369
|
images?: {
|
|
1371
1370
|
loc: string;
|
|
1372
|
-
title?: string | undefined;
|
|
1373
1371
|
caption?: string | undefined;
|
|
1372
|
+
title?: string | undefined;
|
|
1374
1373
|
}[] | undefined;
|
|
1375
1374
|
news?: {
|
|
1376
1375
|
title: string;
|
|
@@ -1383,6 +1382,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1383
1382
|
} | undefined;
|
|
1384
1383
|
fromCrawl?: boolean | undefined;
|
|
1385
1384
|
};
|
|
1385
|
+
html: string;
|
|
1386
1386
|
}, ...args: unknown[]) => any) | undefined;
|
|
1387
1387
|
headers?: Record<string, string> | undefined;
|
|
1388
1388
|
}, {
|
|
@@ -1393,7 +1393,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1393
1393
|
retryCount?: number | undefined;
|
|
1394
1394
|
retryDelay?: number | undefined;
|
|
1395
1395
|
onSuccess?: ((args_0: {
|
|
1396
|
-
html: string;
|
|
1397
1396
|
page: {
|
|
1398
1397
|
path: string;
|
|
1399
1398
|
sitemap?: {
|
|
@@ -1407,8 +1406,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1407
1406
|
}[] | undefined;
|
|
1408
1407
|
images?: {
|
|
1409
1408
|
loc: string;
|
|
1410
|
-
title?: string | undefined;
|
|
1411
1409
|
caption?: string | undefined;
|
|
1410
|
+
title?: string | undefined;
|
|
1412
1411
|
}[] | undefined;
|
|
1413
1412
|
news?: {
|
|
1414
1413
|
title: string;
|
|
@@ -1421,6 +1420,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1421
1420
|
} | undefined;
|
|
1422
1421
|
fromCrawl?: boolean | undefined;
|
|
1423
1422
|
};
|
|
1423
|
+
html: string;
|
|
1424
1424
|
}, ...args: unknown[]) => any) | undefined;
|
|
1425
1425
|
headers?: Record<string, string> | undefined;
|
|
1426
1426
|
}>>;
|
|
@@ -1437,8 +1437,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1437
1437
|
}[] | undefined;
|
|
1438
1438
|
images?: {
|
|
1439
1439
|
loc: string;
|
|
1440
|
-
title?: string | undefined;
|
|
1441
1440
|
caption?: string | undefined;
|
|
1441
|
+
title?: string | undefined;
|
|
1442
1442
|
}[] | undefined;
|
|
1443
1443
|
news?: {
|
|
1444
1444
|
title: string;
|
|
@@ -1458,7 +1458,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1458
1458
|
retryCount?: number | undefined;
|
|
1459
1459
|
retryDelay?: number | undefined;
|
|
1460
1460
|
onSuccess?: ((args_0: {
|
|
1461
|
-
html: string;
|
|
1462
1461
|
page: {
|
|
1463
1462
|
path: string;
|
|
1464
1463
|
sitemap?: {
|
|
@@ -1472,8 +1471,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1472
1471
|
}[] | undefined;
|
|
1473
1472
|
images?: {
|
|
1474
1473
|
loc: string;
|
|
1475
|
-
title?: string | undefined;
|
|
1476
1474
|
caption?: string | undefined;
|
|
1475
|
+
title?: string | undefined;
|
|
1477
1476
|
}[] | undefined;
|
|
1478
1477
|
news?: {
|
|
1479
1478
|
title: string;
|
|
@@ -1486,6 +1485,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1486
1485
|
} | undefined;
|
|
1487
1486
|
fromCrawl?: boolean | undefined;
|
|
1488
1487
|
};
|
|
1488
|
+
html: string;
|
|
1489
1489
|
}, ...args: unknown[]) => any) | undefined;
|
|
1490
1490
|
headers?: Record<string, string> | undefined;
|
|
1491
1491
|
} | undefined;
|
|
@@ -1502,8 +1502,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1502
1502
|
}[] | undefined;
|
|
1503
1503
|
images?: {
|
|
1504
1504
|
loc: string;
|
|
1505
|
-
title?: string | undefined;
|
|
1506
1505
|
caption?: string | undefined;
|
|
1506
|
+
title?: string | undefined;
|
|
1507
1507
|
}[] | undefined;
|
|
1508
1508
|
news?: {
|
|
1509
1509
|
title: string;
|
|
@@ -1523,7 +1523,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1523
1523
|
retryCount?: number | undefined;
|
|
1524
1524
|
retryDelay?: number | undefined;
|
|
1525
1525
|
onSuccess?: ((args_0: {
|
|
1526
|
-
html: string;
|
|
1527
1526
|
page: {
|
|
1528
1527
|
path: string;
|
|
1529
1528
|
sitemap?: {
|
|
@@ -1537,8 +1536,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1537
1536
|
}[] | undefined;
|
|
1538
1537
|
images?: {
|
|
1539
1538
|
loc: string;
|
|
1540
|
-
title?: string | undefined;
|
|
1541
1539
|
caption?: string | undefined;
|
|
1540
|
+
title?: string | undefined;
|
|
1542
1541
|
}[] | undefined;
|
|
1543
1542
|
news?: {
|
|
1544
1543
|
title: string;
|
|
@@ -1551,6 +1550,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1551
1550
|
} | undefined;
|
|
1552
1551
|
fromCrawl?: boolean | undefined;
|
|
1553
1552
|
};
|
|
1553
|
+
html: string;
|
|
1554
1554
|
}, ...args: unknown[]) => any) | undefined;
|
|
1555
1555
|
headers?: Record<string, string> | undefined;
|
|
1556
1556
|
} | undefined;
|
|
@@ -1594,12 +1594,12 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1594
1594
|
title: z.ZodOptional<z.ZodString>;
|
|
1595
1595
|
}, "strip", z.ZodTypeAny, {
|
|
1596
1596
|
loc: string;
|
|
1597
|
-
title?: string | undefined;
|
|
1598
1597
|
caption?: string | undefined;
|
|
1598
|
+
title?: string | undefined;
|
|
1599
1599
|
}, {
|
|
1600
1600
|
loc: string;
|
|
1601
|
-
title?: string | undefined;
|
|
1602
1601
|
caption?: string | undefined;
|
|
1602
|
+
title?: string | undefined;
|
|
1603
1603
|
}>, "many">>;
|
|
1604
1604
|
news: z.ZodOptional<z.ZodObject<{
|
|
1605
1605
|
publication: z.ZodObject<{
|
|
@@ -1640,8 +1640,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1640
1640
|
}[] | undefined;
|
|
1641
1641
|
images?: {
|
|
1642
1642
|
loc: string;
|
|
1643
|
-
title?: string | undefined;
|
|
1644
1643
|
caption?: string | undefined;
|
|
1644
|
+
title?: string | undefined;
|
|
1645
1645
|
}[] | undefined;
|
|
1646
1646
|
news?: {
|
|
1647
1647
|
title: string;
|
|
@@ -1662,8 +1662,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1662
1662
|
}[] | undefined;
|
|
1663
1663
|
images?: {
|
|
1664
1664
|
loc: string;
|
|
1665
|
-
title?: string | undefined;
|
|
1666
1665
|
caption?: string | undefined;
|
|
1666
|
+
title?: string | undefined;
|
|
1667
1667
|
}[] | undefined;
|
|
1668
1668
|
news?: {
|
|
1669
1669
|
title: string;
|
|
@@ -1707,12 +1707,12 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1707
1707
|
title: z.ZodOptional<z.ZodString>;
|
|
1708
1708
|
}, "strip", z.ZodTypeAny, {
|
|
1709
1709
|
loc: string;
|
|
1710
|
-
title?: string | undefined;
|
|
1711
1710
|
caption?: string | undefined;
|
|
1711
|
+
title?: string | undefined;
|
|
1712
1712
|
}, {
|
|
1713
1713
|
loc: string;
|
|
1714
|
-
title?: string | undefined;
|
|
1715
1714
|
caption?: string | undefined;
|
|
1715
|
+
title?: string | undefined;
|
|
1716
1716
|
}>, "many">>;
|
|
1717
1717
|
news: z.ZodOptional<z.ZodObject<{
|
|
1718
1718
|
publication: z.ZodObject<{
|
|
@@ -1753,8 +1753,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1753
1753
|
}[] | undefined;
|
|
1754
1754
|
images?: {
|
|
1755
1755
|
loc: string;
|
|
1756
|
-
title?: string | undefined;
|
|
1757
1756
|
caption?: string | undefined;
|
|
1757
|
+
title?: string | undefined;
|
|
1758
1758
|
}[] | undefined;
|
|
1759
1759
|
news?: {
|
|
1760
1760
|
title: string;
|
|
@@ -1775,8 +1775,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1775
1775
|
}[] | undefined;
|
|
1776
1776
|
images?: {
|
|
1777
1777
|
loc: string;
|
|
1778
|
-
title?: string | undefined;
|
|
1779
1778
|
caption?: string | undefined;
|
|
1779
|
+
title?: string | undefined;
|
|
1780
1780
|
}[] | undefined;
|
|
1781
1781
|
news?: {
|
|
1782
1782
|
title: string;
|
|
@@ -1801,8 +1801,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1801
1801
|
}[] | undefined;
|
|
1802
1802
|
images?: {
|
|
1803
1803
|
loc: string;
|
|
1804
|
-
title?: string | undefined;
|
|
1805
1804
|
caption?: string | undefined;
|
|
1805
|
+
title?: string | undefined;
|
|
1806
1806
|
}[] | undefined;
|
|
1807
1807
|
news?: {
|
|
1808
1808
|
title: string;
|
|
@@ -1827,8 +1827,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1827
1827
|
}[] | undefined;
|
|
1828
1828
|
images?: {
|
|
1829
1829
|
loc: string;
|
|
1830
|
-
title?: string | undefined;
|
|
1831
1830
|
caption?: string | undefined;
|
|
1831
|
+
title?: string | undefined;
|
|
1832
1832
|
}[] | undefined;
|
|
1833
1833
|
news?: {
|
|
1834
1834
|
title: string;
|
|
@@ -1843,7 +1843,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1843
1843
|
}>;
|
|
1844
1844
|
html: z.ZodString;
|
|
1845
1845
|
}, "strip", z.ZodTypeAny, {
|
|
1846
|
-
html: string;
|
|
1847
1846
|
page: {
|
|
1848
1847
|
path: string;
|
|
1849
1848
|
sitemap?: {
|
|
@@ -1857,8 +1856,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1857
1856
|
}[] | undefined;
|
|
1858
1857
|
images?: {
|
|
1859
1858
|
loc: string;
|
|
1860
|
-
title?: string | undefined;
|
|
1861
1859
|
caption?: string | undefined;
|
|
1860
|
+
title?: string | undefined;
|
|
1862
1861
|
}[] | undefined;
|
|
1863
1862
|
news?: {
|
|
1864
1863
|
title: string;
|
|
@@ -1871,8 +1870,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1871
1870
|
} | undefined;
|
|
1872
1871
|
fromCrawl?: boolean | undefined;
|
|
1873
1872
|
};
|
|
1874
|
-
}, {
|
|
1875
1873
|
html: string;
|
|
1874
|
+
}, {
|
|
1876
1875
|
page: {
|
|
1877
1876
|
path: string;
|
|
1878
1877
|
sitemap?: {
|
|
@@ -1886,8 +1885,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1886
1885
|
}[] | undefined;
|
|
1887
1886
|
images?: {
|
|
1888
1887
|
loc: string;
|
|
1889
|
-
title?: string | undefined;
|
|
1890
1888
|
caption?: string | undefined;
|
|
1889
|
+
title?: string | undefined;
|
|
1891
1890
|
}[] | undefined;
|
|
1892
1891
|
news?: {
|
|
1893
1892
|
title: string;
|
|
@@ -1900,6 +1899,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1900
1899
|
} | undefined;
|
|
1901
1900
|
fromCrawl?: boolean | undefined;
|
|
1902
1901
|
};
|
|
1902
|
+
html: string;
|
|
1903
1903
|
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
1904
1904
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1905
1905
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1910,7 +1910,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1910
1910
|
retryCount?: number | undefined;
|
|
1911
1911
|
retryDelay?: number | undefined;
|
|
1912
1912
|
onSuccess?: ((args_0: {
|
|
1913
|
-
html: string;
|
|
1914
1913
|
page: {
|
|
1915
1914
|
path: string;
|
|
1916
1915
|
sitemap?: {
|
|
@@ -1924,8 +1923,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1924
1923
|
}[] | undefined;
|
|
1925
1924
|
images?: {
|
|
1926
1925
|
loc: string;
|
|
1927
|
-
title?: string | undefined;
|
|
1928
1926
|
caption?: string | undefined;
|
|
1927
|
+
title?: string | undefined;
|
|
1929
1928
|
}[] | undefined;
|
|
1930
1929
|
news?: {
|
|
1931
1930
|
title: string;
|
|
@@ -1938,6 +1937,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1938
1937
|
} | undefined;
|
|
1939
1938
|
fromCrawl?: boolean | undefined;
|
|
1940
1939
|
};
|
|
1940
|
+
html: string;
|
|
1941
1941
|
}, ...args: unknown[]) => any) | undefined;
|
|
1942
1942
|
headers?: Record<string, string> | undefined;
|
|
1943
1943
|
}, {
|
|
@@ -1948,7 +1948,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1948
1948
|
retryCount?: number | undefined;
|
|
1949
1949
|
retryDelay?: number | undefined;
|
|
1950
1950
|
onSuccess?: ((args_0: {
|
|
1951
|
-
html: string;
|
|
1952
1951
|
page: {
|
|
1953
1952
|
path: string;
|
|
1954
1953
|
sitemap?: {
|
|
@@ -1962,8 +1961,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1962
1961
|
}[] | undefined;
|
|
1963
1962
|
images?: {
|
|
1964
1963
|
loc: string;
|
|
1965
|
-
title?: string | undefined;
|
|
1966
1964
|
caption?: string | undefined;
|
|
1965
|
+
title?: string | undefined;
|
|
1967
1966
|
}[] | undefined;
|
|
1968
1967
|
news?: {
|
|
1969
1968
|
title: string;
|
|
@@ -1976,6 +1975,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1976
1975
|
} | undefined;
|
|
1977
1976
|
fromCrawl?: boolean | undefined;
|
|
1978
1977
|
};
|
|
1978
|
+
html: string;
|
|
1979
1979
|
}, ...args: unknown[]) => any) | undefined;
|
|
1980
1980
|
headers?: Record<string, string> | undefined;
|
|
1981
1981
|
}>>;
|
|
@@ -1992,8 +1992,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
1992
1992
|
}[] | undefined;
|
|
1993
1993
|
images?: {
|
|
1994
1994
|
loc: string;
|
|
1995
|
-
title?: string | undefined;
|
|
1996
1995
|
caption?: string | undefined;
|
|
1996
|
+
title?: string | undefined;
|
|
1997
1997
|
}[] | undefined;
|
|
1998
1998
|
news?: {
|
|
1999
1999
|
title: string;
|
|
@@ -2013,7 +2013,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2013
2013
|
retryCount?: number | undefined;
|
|
2014
2014
|
retryDelay?: number | undefined;
|
|
2015
2015
|
onSuccess?: ((args_0: {
|
|
2016
|
-
html: string;
|
|
2017
2016
|
page: {
|
|
2018
2017
|
path: string;
|
|
2019
2018
|
sitemap?: {
|
|
@@ -2027,8 +2026,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2027
2026
|
}[] | undefined;
|
|
2028
2027
|
images?: {
|
|
2029
2028
|
loc: string;
|
|
2030
|
-
title?: string | undefined;
|
|
2031
2029
|
caption?: string | undefined;
|
|
2030
|
+
title?: string | undefined;
|
|
2032
2031
|
}[] | undefined;
|
|
2033
2032
|
news?: {
|
|
2034
2033
|
title: string;
|
|
@@ -2041,6 +2040,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2041
2040
|
} | undefined;
|
|
2042
2041
|
fromCrawl?: boolean | undefined;
|
|
2043
2042
|
};
|
|
2043
|
+
html: string;
|
|
2044
2044
|
}, ...args: unknown[]) => any) | undefined;
|
|
2045
2045
|
headers?: Record<string, string> | undefined;
|
|
2046
2046
|
} | undefined;
|
|
@@ -2057,8 +2057,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2057
2057
|
}[] | undefined;
|
|
2058
2058
|
images?: {
|
|
2059
2059
|
loc: string;
|
|
2060
|
-
title?: string | undefined;
|
|
2061
2060
|
caption?: string | undefined;
|
|
2061
|
+
title?: string | undefined;
|
|
2062
2062
|
}[] | undefined;
|
|
2063
2063
|
news?: {
|
|
2064
2064
|
title: string;
|
|
@@ -2078,7 +2078,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2078
2078
|
retryCount?: number | undefined;
|
|
2079
2079
|
retryDelay?: number | undefined;
|
|
2080
2080
|
onSuccess?: ((args_0: {
|
|
2081
|
-
html: string;
|
|
2082
2081
|
page: {
|
|
2083
2082
|
path: string;
|
|
2084
2083
|
sitemap?: {
|
|
@@ -2092,8 +2091,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2092
2091
|
}[] | undefined;
|
|
2093
2092
|
images?: {
|
|
2094
2093
|
loc: string;
|
|
2095
|
-
title?: string | undefined;
|
|
2096
2094
|
caption?: string | undefined;
|
|
2095
|
+
title?: string | undefined;
|
|
2097
2096
|
}[] | undefined;
|
|
2098
2097
|
news?: {
|
|
2099
2098
|
title: string;
|
|
@@ -2106,6 +2105,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2106
2105
|
} | undefined;
|
|
2107
2106
|
fromCrawl?: boolean | undefined;
|
|
2108
2107
|
};
|
|
2108
|
+
html: string;
|
|
2109
2109
|
}, ...args: unknown[]) => any) | undefined;
|
|
2110
2110
|
headers?: Record<string, string> | undefined;
|
|
2111
2111
|
} | undefined;
|
|
@@ -2127,8 +2127,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2127
2127
|
}[] | undefined;
|
|
2128
2128
|
images?: {
|
|
2129
2129
|
loc: string;
|
|
2130
|
-
title?: string | undefined;
|
|
2131
2130
|
caption?: string | undefined;
|
|
2131
|
+
title?: string | undefined;
|
|
2132
2132
|
}[] | undefined;
|
|
2133
2133
|
news?: {
|
|
2134
2134
|
title: string;
|
|
@@ -2148,7 +2148,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2148
2148
|
retryCount?: number | undefined;
|
|
2149
2149
|
retryDelay?: number | undefined;
|
|
2150
2150
|
onSuccess?: ((args_0: {
|
|
2151
|
-
html: string;
|
|
2152
2151
|
page: {
|
|
2153
2152
|
path: string;
|
|
2154
2153
|
sitemap?: {
|
|
@@ -2162,8 +2161,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2162
2161
|
}[] | undefined;
|
|
2163
2162
|
images?: {
|
|
2164
2163
|
loc: string;
|
|
2165
|
-
title?: string | undefined;
|
|
2166
2164
|
caption?: string | undefined;
|
|
2165
|
+
title?: string | undefined;
|
|
2167
2166
|
}[] | undefined;
|
|
2168
2167
|
news?: {
|
|
2169
2168
|
title: string;
|
|
@@ -2176,6 +2175,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2176
2175
|
} | undefined;
|
|
2177
2176
|
fromCrawl?: boolean | undefined;
|
|
2178
2177
|
};
|
|
2178
|
+
html: string;
|
|
2179
2179
|
}, ...args: unknown[]) => any) | undefined;
|
|
2180
2180
|
headers?: Record<string, string> | undefined;
|
|
2181
2181
|
} | undefined;
|
|
@@ -2199,8 +2199,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2199
2199
|
}[] | undefined;
|
|
2200
2200
|
images?: {
|
|
2201
2201
|
loc: string;
|
|
2202
|
-
title?: string | undefined;
|
|
2203
2202
|
caption?: string | undefined;
|
|
2203
|
+
title?: string | undefined;
|
|
2204
2204
|
}[] | undefined;
|
|
2205
2205
|
news?: {
|
|
2206
2206
|
title: string;
|
|
@@ -2220,7 +2220,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2220
2220
|
retryCount?: number | undefined;
|
|
2221
2221
|
retryDelay?: number | undefined;
|
|
2222
2222
|
onSuccess?: ((args_0: {
|
|
2223
|
-
html: string;
|
|
2224
2223
|
page: {
|
|
2225
2224
|
path: string;
|
|
2226
2225
|
sitemap?: {
|
|
@@ -2234,8 +2233,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2234
2233
|
}[] | undefined;
|
|
2235
2234
|
images?: {
|
|
2236
2235
|
loc: string;
|
|
2237
|
-
title?: string | undefined;
|
|
2238
2236
|
caption?: string | undefined;
|
|
2237
|
+
title?: string | undefined;
|
|
2239
2238
|
}[] | undefined;
|
|
2240
2239
|
news?: {
|
|
2241
2240
|
title: string;
|
|
@@ -2248,6 +2247,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2248
2247
|
} | undefined;
|
|
2249
2248
|
fromCrawl?: boolean | undefined;
|
|
2250
2249
|
};
|
|
2250
|
+
html: string;
|
|
2251
2251
|
}, ...args: unknown[]) => any) | undefined;
|
|
2252
2252
|
headers?: Record<string, string> | undefined;
|
|
2253
2253
|
} | undefined;
|
|
@@ -2288,12 +2288,12 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2288
2288
|
title: z.ZodOptional<z.ZodString>;
|
|
2289
2289
|
}, "strip", z.ZodTypeAny, {
|
|
2290
2290
|
loc: string;
|
|
2291
|
-
title?: string | undefined;
|
|
2292
2291
|
caption?: string | undefined;
|
|
2292
|
+
title?: string | undefined;
|
|
2293
2293
|
}, {
|
|
2294
2294
|
loc: string;
|
|
2295
|
-
title?: string | undefined;
|
|
2296
2295
|
caption?: string | undefined;
|
|
2296
|
+
title?: string | undefined;
|
|
2297
2297
|
}>, "many">>;
|
|
2298
2298
|
news: z.ZodOptional<z.ZodObject<{
|
|
2299
2299
|
publication: z.ZodObject<{
|
|
@@ -2334,8 +2334,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2334
2334
|
}[] | undefined;
|
|
2335
2335
|
images?: {
|
|
2336
2336
|
loc: string;
|
|
2337
|
-
title?: string | undefined;
|
|
2338
2337
|
caption?: string | undefined;
|
|
2338
|
+
title?: string | undefined;
|
|
2339
2339
|
}[] | undefined;
|
|
2340
2340
|
news?: {
|
|
2341
2341
|
title: string;
|
|
@@ -2356,8 +2356,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2356
2356
|
}[] | undefined;
|
|
2357
2357
|
images?: {
|
|
2358
2358
|
loc: string;
|
|
2359
|
-
title?: string | undefined;
|
|
2360
2359
|
caption?: string | undefined;
|
|
2360
|
+
title?: string | undefined;
|
|
2361
2361
|
}[] | undefined;
|
|
2362
2362
|
news?: {
|
|
2363
2363
|
title: string;
|
|
@@ -2382,8 +2382,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2382
2382
|
}[] | undefined;
|
|
2383
2383
|
images?: {
|
|
2384
2384
|
loc: string;
|
|
2385
|
-
title?: string | undefined;
|
|
2386
2385
|
caption?: string | undefined;
|
|
2386
|
+
title?: string | undefined;
|
|
2387
2387
|
}[] | undefined;
|
|
2388
2388
|
news?: {
|
|
2389
2389
|
title: string;
|
|
@@ -2408,8 +2408,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2408
2408
|
}[] | undefined;
|
|
2409
2409
|
images?: {
|
|
2410
2410
|
loc: string;
|
|
2411
|
-
title?: string | undefined;
|
|
2412
2411
|
caption?: string | undefined;
|
|
2412
|
+
title?: string | undefined;
|
|
2413
2413
|
}[] | undefined;
|
|
2414
2414
|
news?: {
|
|
2415
2415
|
title: string;
|
|
@@ -2424,7 +2424,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2424
2424
|
}>;
|
|
2425
2425
|
html: z.ZodString;
|
|
2426
2426
|
}, "strip", z.ZodTypeAny, {
|
|
2427
|
-
html: string;
|
|
2428
2427
|
page: {
|
|
2429
2428
|
path: string;
|
|
2430
2429
|
sitemap?: {
|
|
@@ -2438,8 +2437,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2438
2437
|
}[] | undefined;
|
|
2439
2438
|
images?: {
|
|
2440
2439
|
loc: string;
|
|
2441
|
-
title?: string | undefined;
|
|
2442
2440
|
caption?: string | undefined;
|
|
2441
|
+
title?: string | undefined;
|
|
2443
2442
|
}[] | undefined;
|
|
2444
2443
|
news?: {
|
|
2445
2444
|
title: string;
|
|
@@ -2452,8 +2451,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2452
2451
|
} | undefined;
|
|
2453
2452
|
fromCrawl?: boolean | undefined;
|
|
2454
2453
|
};
|
|
2455
|
-
}, {
|
|
2456
2454
|
html: string;
|
|
2455
|
+
}, {
|
|
2457
2456
|
page: {
|
|
2458
2457
|
path: string;
|
|
2459
2458
|
sitemap?: {
|
|
@@ -2467,8 +2466,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2467
2466
|
}[] | undefined;
|
|
2468
2467
|
images?: {
|
|
2469
2468
|
loc: string;
|
|
2470
|
-
title?: string | undefined;
|
|
2471
2469
|
caption?: string | undefined;
|
|
2470
|
+
title?: string | undefined;
|
|
2472
2471
|
}[] | undefined;
|
|
2473
2472
|
news?: {
|
|
2474
2473
|
title: string;
|
|
@@ -2481,6 +2480,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2481
2480
|
} | undefined;
|
|
2482
2481
|
fromCrawl?: boolean | undefined;
|
|
2483
2482
|
};
|
|
2483
|
+
html: string;
|
|
2484
2484
|
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
2485
2485
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2486
2486
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2491,7 +2491,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2491
2491
|
retryCount?: number | undefined;
|
|
2492
2492
|
retryDelay?: number | undefined;
|
|
2493
2493
|
onSuccess?: ((args_0: {
|
|
2494
|
-
html: string;
|
|
2495
2494
|
page: {
|
|
2496
2495
|
path: string;
|
|
2497
2496
|
sitemap?: {
|
|
@@ -2505,8 +2504,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2505
2504
|
}[] | undefined;
|
|
2506
2505
|
images?: {
|
|
2507
2506
|
loc: string;
|
|
2508
|
-
title?: string | undefined;
|
|
2509
2507
|
caption?: string | undefined;
|
|
2508
|
+
title?: string | undefined;
|
|
2510
2509
|
}[] | undefined;
|
|
2511
2510
|
news?: {
|
|
2512
2511
|
title: string;
|
|
@@ -2519,6 +2518,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2519
2518
|
} | undefined;
|
|
2520
2519
|
fromCrawl?: boolean | undefined;
|
|
2521
2520
|
};
|
|
2521
|
+
html: string;
|
|
2522
2522
|
}, ...args: unknown[]) => any) | undefined;
|
|
2523
2523
|
headers?: Record<string, string> | undefined;
|
|
2524
2524
|
}, {
|
|
@@ -2529,7 +2529,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2529
2529
|
retryCount?: number | undefined;
|
|
2530
2530
|
retryDelay?: number | undefined;
|
|
2531
2531
|
onSuccess?: ((args_0: {
|
|
2532
|
-
html: string;
|
|
2533
2532
|
page: {
|
|
2534
2533
|
path: string;
|
|
2535
2534
|
sitemap?: {
|
|
@@ -2543,8 +2542,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2543
2542
|
}[] | undefined;
|
|
2544
2543
|
images?: {
|
|
2545
2544
|
loc: string;
|
|
2546
|
-
title?: string | undefined;
|
|
2547
2545
|
caption?: string | undefined;
|
|
2546
|
+
title?: string | undefined;
|
|
2548
2547
|
}[] | undefined;
|
|
2549
2548
|
news?: {
|
|
2550
2549
|
title: string;
|
|
@@ -2557,6 +2556,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2557
2556
|
} | undefined;
|
|
2558
2557
|
fromCrawl?: boolean | undefined;
|
|
2559
2558
|
};
|
|
2559
|
+
html: string;
|
|
2560
2560
|
}, ...args: unknown[]) => any) | undefined;
|
|
2561
2561
|
headers?: Record<string, string> | undefined;
|
|
2562
2562
|
}>>>>;
|
|
@@ -2594,12 +2594,12 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2594
2594
|
title: z.ZodOptional<z.ZodString>;
|
|
2595
2595
|
}, "strip", z.ZodTypeAny, {
|
|
2596
2596
|
loc: string;
|
|
2597
|
-
title?: string | undefined;
|
|
2598
2597
|
caption?: string | undefined;
|
|
2598
|
+
title?: string | undefined;
|
|
2599
2599
|
}, {
|
|
2600
2600
|
loc: string;
|
|
2601
|
-
title?: string | undefined;
|
|
2602
2601
|
caption?: string | undefined;
|
|
2602
|
+
title?: string | undefined;
|
|
2603
2603
|
}>, "many">>;
|
|
2604
2604
|
news: z.ZodOptional<z.ZodObject<{
|
|
2605
2605
|
publication: z.ZodObject<{
|
|
@@ -2640,8 +2640,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2640
2640
|
}[] | undefined;
|
|
2641
2641
|
images?: {
|
|
2642
2642
|
loc: string;
|
|
2643
|
-
title?: string | undefined;
|
|
2644
2643
|
caption?: string | undefined;
|
|
2644
|
+
title?: string | undefined;
|
|
2645
2645
|
}[] | undefined;
|
|
2646
2646
|
news?: {
|
|
2647
2647
|
title: string;
|
|
@@ -2662,8 +2662,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2662
2662
|
}[] | undefined;
|
|
2663
2663
|
images?: {
|
|
2664
2664
|
loc: string;
|
|
2665
|
-
title?: string | undefined;
|
|
2666
2665
|
caption?: string | undefined;
|
|
2666
|
+
title?: string | undefined;
|
|
2667
2667
|
}[] | undefined;
|
|
2668
2668
|
news?: {
|
|
2669
2669
|
title: string;
|
|
@@ -2688,8 +2688,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2688
2688
|
}[] | undefined;
|
|
2689
2689
|
images?: {
|
|
2690
2690
|
loc: string;
|
|
2691
|
-
title?: string | undefined;
|
|
2692
2691
|
caption?: string | undefined;
|
|
2692
|
+
title?: string | undefined;
|
|
2693
2693
|
}[] | undefined;
|
|
2694
2694
|
news?: {
|
|
2695
2695
|
title: string;
|
|
@@ -2714,8 +2714,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2714
2714
|
}[] | undefined;
|
|
2715
2715
|
images?: {
|
|
2716
2716
|
loc: string;
|
|
2717
|
-
title?: string | undefined;
|
|
2718
2717
|
caption?: string | undefined;
|
|
2718
|
+
title?: string | undefined;
|
|
2719
2719
|
}[] | undefined;
|
|
2720
2720
|
news?: {
|
|
2721
2721
|
title: string;
|
|
@@ -2730,7 +2730,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2730
2730
|
}>;
|
|
2731
2731
|
html: z.ZodString;
|
|
2732
2732
|
}, "strip", z.ZodTypeAny, {
|
|
2733
|
-
html: string;
|
|
2734
2733
|
page: {
|
|
2735
2734
|
path: string;
|
|
2736
2735
|
sitemap?: {
|
|
@@ -2744,8 +2743,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2744
2743
|
}[] | undefined;
|
|
2745
2744
|
images?: {
|
|
2746
2745
|
loc: string;
|
|
2747
|
-
title?: string | undefined;
|
|
2748
2746
|
caption?: string | undefined;
|
|
2747
|
+
title?: string | undefined;
|
|
2749
2748
|
}[] | undefined;
|
|
2750
2749
|
news?: {
|
|
2751
2750
|
title: string;
|
|
@@ -2758,8 +2757,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2758
2757
|
} | undefined;
|
|
2759
2758
|
fromCrawl?: boolean | undefined;
|
|
2760
2759
|
};
|
|
2761
|
-
}, {
|
|
2762
2760
|
html: string;
|
|
2761
|
+
}, {
|
|
2763
2762
|
page: {
|
|
2764
2763
|
path: string;
|
|
2765
2764
|
sitemap?: {
|
|
@@ -2773,8 +2772,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2773
2772
|
}[] | undefined;
|
|
2774
2773
|
images?: {
|
|
2775
2774
|
loc: string;
|
|
2776
|
-
title?: string | undefined;
|
|
2777
2775
|
caption?: string | undefined;
|
|
2776
|
+
title?: string | undefined;
|
|
2778
2777
|
}[] | undefined;
|
|
2779
2778
|
news?: {
|
|
2780
2779
|
title: string;
|
|
@@ -2787,6 +2786,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2787
2786
|
} | undefined;
|
|
2788
2787
|
fromCrawl?: boolean | undefined;
|
|
2789
2788
|
};
|
|
2789
|
+
html: string;
|
|
2790
2790
|
}>], z.ZodUnknown>, z.ZodAny>>;
|
|
2791
2791
|
headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2792
2792
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2797,7 +2797,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2797
2797
|
retryCount?: number | undefined;
|
|
2798
2798
|
retryDelay?: number | undefined;
|
|
2799
2799
|
onSuccess?: ((args_0: {
|
|
2800
|
-
html: string;
|
|
2801
2800
|
page: {
|
|
2802
2801
|
path: string;
|
|
2803
2802
|
sitemap?: {
|
|
@@ -2811,8 +2810,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2811
2810
|
}[] | undefined;
|
|
2812
2811
|
images?: {
|
|
2813
2812
|
loc: string;
|
|
2814
|
-
title?: string | undefined;
|
|
2815
2813
|
caption?: string | undefined;
|
|
2814
|
+
title?: string | undefined;
|
|
2816
2815
|
}[] | undefined;
|
|
2817
2816
|
news?: {
|
|
2818
2817
|
title: string;
|
|
@@ -2825,6 +2824,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2825
2824
|
} | undefined;
|
|
2826
2825
|
fromCrawl?: boolean | undefined;
|
|
2827
2826
|
};
|
|
2827
|
+
html: string;
|
|
2828
2828
|
}, ...args: unknown[]) => any) | undefined;
|
|
2829
2829
|
headers?: Record<string, string> | undefined;
|
|
2830
2830
|
}, {
|
|
@@ -2835,7 +2835,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2835
2835
|
retryCount?: number | undefined;
|
|
2836
2836
|
retryDelay?: number | undefined;
|
|
2837
2837
|
onSuccess?: ((args_0: {
|
|
2838
|
-
html: string;
|
|
2839
2838
|
page: {
|
|
2840
2839
|
path: string;
|
|
2841
2840
|
sitemap?: {
|
|
@@ -2849,8 +2848,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2849
2848
|
}[] | undefined;
|
|
2850
2849
|
images?: {
|
|
2851
2850
|
loc: string;
|
|
2852
|
-
title?: string | undefined;
|
|
2853
2851
|
caption?: string | undefined;
|
|
2852
|
+
title?: string | undefined;
|
|
2854
2853
|
}[] | undefined;
|
|
2855
2854
|
news?: {
|
|
2856
2855
|
title: string;
|
|
@@ -2863,6 +2862,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2863
2862
|
} | undefined;
|
|
2864
2863
|
fromCrawl?: boolean | undefined;
|
|
2865
2864
|
};
|
|
2865
|
+
html: string;
|
|
2866
2866
|
}, ...args: unknown[]) => any) | undefined;
|
|
2867
2867
|
headers?: Record<string, string> | undefined;
|
|
2868
2868
|
}>>>, {
|
|
@@ -2873,7 +2873,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2873
2873
|
retryCount: number;
|
|
2874
2874
|
retryDelay?: number | undefined;
|
|
2875
2875
|
onSuccess?: ((args_0: {
|
|
2876
|
-
html: string;
|
|
2877
2876
|
page: {
|
|
2878
2877
|
path: string;
|
|
2879
2878
|
sitemap?: {
|
|
@@ -2887,8 +2886,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2887
2886
|
}[] | undefined;
|
|
2888
2887
|
images?: {
|
|
2889
2888
|
loc: string;
|
|
2890
|
-
title?: string | undefined;
|
|
2891
2889
|
caption?: string | undefined;
|
|
2890
|
+
title?: string | undefined;
|
|
2892
2891
|
}[] | undefined;
|
|
2893
2892
|
news?: {
|
|
2894
2893
|
title: string;
|
|
@@ -2901,6 +2900,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2901
2900
|
} | undefined;
|
|
2902
2901
|
fromCrawl?: boolean | undefined;
|
|
2903
2902
|
};
|
|
2903
|
+
html: string;
|
|
2904
2904
|
}, ...args: unknown[]) => any) | undefined;
|
|
2905
2905
|
headers?: Record<string, string> | undefined;
|
|
2906
2906
|
}, {
|
|
@@ -2911,7 +2911,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2911
2911
|
retryCount?: number | undefined;
|
|
2912
2912
|
retryDelay?: number | undefined;
|
|
2913
2913
|
onSuccess?: ((args_0: {
|
|
2914
|
-
html: string;
|
|
2915
2914
|
page: {
|
|
2916
2915
|
path: string;
|
|
2917
2916
|
sitemap?: {
|
|
@@ -2925,8 +2924,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2925
2924
|
}[] | undefined;
|
|
2926
2925
|
images?: {
|
|
2927
2926
|
loc: string;
|
|
2928
|
-
title?: string | undefined;
|
|
2929
2927
|
caption?: string | undefined;
|
|
2928
|
+
title?: string | undefined;
|
|
2930
2929
|
}[] | undefined;
|
|
2931
2930
|
news?: {
|
|
2932
2931
|
title: string;
|
|
@@ -2939,6 +2938,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2939
2938
|
} | undefined;
|
|
2940
2939
|
fromCrawl?: boolean | undefined;
|
|
2941
2940
|
};
|
|
2941
|
+
html: string;
|
|
2942
2942
|
}, ...args: unknown[]) => any) | undefined;
|
|
2943
2943
|
headers?: Record<string, string> | undefined;
|
|
2944
2944
|
} | undefined>;
|
|
@@ -2952,7 +2952,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2952
2952
|
retryCount: number;
|
|
2953
2953
|
retryDelay?: number | undefined;
|
|
2954
2954
|
onSuccess?: ((args_0: {
|
|
2955
|
-
html: string;
|
|
2956
2955
|
page: {
|
|
2957
2956
|
path: string;
|
|
2958
2957
|
sitemap?: {
|
|
@@ -2966,8 +2965,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2966
2965
|
}[] | undefined;
|
|
2967
2966
|
images?: {
|
|
2968
2967
|
loc: string;
|
|
2969
|
-
title?: string | undefined;
|
|
2970
2968
|
caption?: string | undefined;
|
|
2969
|
+
title?: string | undefined;
|
|
2971
2970
|
}[] | undefined;
|
|
2972
2971
|
news?: {
|
|
2973
2972
|
title: string;
|
|
@@ -2980,6 +2979,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2980
2979
|
} | undefined;
|
|
2981
2980
|
fromCrawl?: boolean | undefined;
|
|
2982
2981
|
};
|
|
2982
|
+
html: string;
|
|
2983
2983
|
}, ...args: unknown[]) => any) | undefined;
|
|
2984
2984
|
headers?: Record<string, string> | undefined;
|
|
2985
2985
|
};
|
|
@@ -2994,7 +2994,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
2994
2994
|
retryCount?: number | undefined;
|
|
2995
2995
|
retryDelay?: number | undefined;
|
|
2996
2996
|
onSuccess?: ((args_0: {
|
|
2997
|
-
html: string;
|
|
2998
2997
|
page: {
|
|
2999
2998
|
path: string;
|
|
3000
2999
|
sitemap?: {
|
|
@@ -3008,8 +3007,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3008
3007
|
}[] | undefined;
|
|
3009
3008
|
images?: {
|
|
3010
3009
|
loc: string;
|
|
3011
|
-
title?: string | undefined;
|
|
3012
3010
|
caption?: string | undefined;
|
|
3011
|
+
title?: string | undefined;
|
|
3013
3012
|
}[] | undefined;
|
|
3014
3013
|
news?: {
|
|
3015
3014
|
title: string;
|
|
@@ -3022,6 +3021,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3022
3021
|
} | undefined;
|
|
3023
3022
|
fromCrawl?: boolean | undefined;
|
|
3024
3023
|
};
|
|
3024
|
+
html: string;
|
|
3025
3025
|
}, ...args: unknown[]) => any) | undefined;
|
|
3026
3026
|
headers?: Record<string, string> | undefined;
|
|
3027
3027
|
} | undefined;
|
|
@@ -3035,13 +3035,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3035
3035
|
installDevServerMiddleware?: boolean | undefined;
|
|
3036
3036
|
}>>;
|
|
3037
3037
|
}, "strip", z.ZodTypeAny, {
|
|
3038
|
-
client: {
|
|
3039
|
-
base: string;
|
|
3040
|
-
entry?: string | undefined;
|
|
3041
|
-
};
|
|
3042
|
-
server: {
|
|
3043
|
-
entry?: string | undefined;
|
|
3044
|
-
};
|
|
3045
3038
|
srcDirectory: string;
|
|
3046
3039
|
start: {
|
|
3047
3040
|
entry?: string | undefined;
|
|
@@ -3050,10 +3043,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3050
3043
|
entry?: string | undefined;
|
|
3051
3044
|
basepath?: string | undefined;
|
|
3052
3045
|
} & {
|
|
3053
|
-
plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
|
|
3054
|
-
experimental?: {
|
|
3055
|
-
enableCodeSplitting?: boolean | undefined;
|
|
3056
|
-
} | undefined;
|
|
3057
3046
|
virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
3058
3047
|
routeFilePrefix?: string | undefined;
|
|
3059
3048
|
routeFileIgnorePrefix?: string | undefined;
|
|
@@ -3065,7 +3054,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3065
3054
|
routeTreeFileHeader?: string[] | undefined;
|
|
3066
3055
|
indexToken?: string | undefined;
|
|
3067
3056
|
routeToken?: string | undefined;
|
|
3068
|
-
pathParamsAllowedCharacters?: ("
|
|
3057
|
+
pathParamsAllowedCharacters?: (";" | ":" | "@" | "&" | "=" | "+" | "$" | ",")[] | undefined;
|
|
3069
3058
|
generatedRouteTree?: string | undefined;
|
|
3070
3059
|
disableTypes?: boolean | undefined;
|
|
3071
3060
|
addExtensions?: boolean | undefined;
|
|
@@ -3075,6 +3064,10 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3075
3064
|
routeTemplate?: string | undefined;
|
|
3076
3065
|
lazyRouteTemplate?: string | undefined;
|
|
3077
3066
|
} | undefined;
|
|
3067
|
+
experimental?: {
|
|
3068
|
+
enableCodeSplitting?: boolean | undefined;
|
|
3069
|
+
} | undefined;
|
|
3070
|
+
plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
|
|
3078
3071
|
tmpDir?: string | undefined;
|
|
3079
3072
|
importRoutesUsingAbsolutePaths?: boolean | undefined;
|
|
3080
3073
|
enableRouteGeneration?: boolean | undefined;
|
|
@@ -3085,6 +3078,13 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3085
3078
|
} | undefined;
|
|
3086
3079
|
} | undefined;
|
|
3087
3080
|
};
|
|
3081
|
+
client: {
|
|
3082
|
+
base: string;
|
|
3083
|
+
entry?: string | undefined;
|
|
3084
|
+
};
|
|
3085
|
+
server: {
|
|
3086
|
+
entry?: string | undefined;
|
|
3087
|
+
};
|
|
3088
3088
|
serverFns: {
|
|
3089
3089
|
base: string;
|
|
3090
3090
|
generateFunctionId?: ((args_0: {
|
|
@@ -3105,8 +3105,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3105
3105
|
}[] | undefined;
|
|
3106
3106
|
images?: {
|
|
3107
3107
|
loc: string;
|
|
3108
|
-
title?: string | undefined;
|
|
3109
3108
|
caption?: string | undefined;
|
|
3109
|
+
title?: string | undefined;
|
|
3110
3110
|
}[] | undefined;
|
|
3111
3111
|
news?: {
|
|
3112
3112
|
title: string;
|
|
@@ -3126,7 +3126,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3126
3126
|
retryCount?: number | undefined;
|
|
3127
3127
|
retryDelay?: number | undefined;
|
|
3128
3128
|
onSuccess?: ((args_0: {
|
|
3129
|
-
html: string;
|
|
3130
3129
|
page: {
|
|
3131
3130
|
path: string;
|
|
3132
3131
|
sitemap?: {
|
|
@@ -3140,8 +3139,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3140
3139
|
}[] | undefined;
|
|
3141
3140
|
images?: {
|
|
3142
3141
|
loc: string;
|
|
3143
|
-
title?: string | undefined;
|
|
3144
3142
|
caption?: string | undefined;
|
|
3143
|
+
title?: string | undefined;
|
|
3145
3144
|
}[] | undefined;
|
|
3146
3145
|
news?: {
|
|
3147
3146
|
title: string;
|
|
@@ -3154,53 +3153,11 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3154
3153
|
} | undefined;
|
|
3155
3154
|
fromCrawl?: boolean | undefined;
|
|
3156
3155
|
};
|
|
3156
|
+
html: string;
|
|
3157
3157
|
}, ...args: unknown[]) => any) | undefined;
|
|
3158
3158
|
headers?: Record<string, string> | undefined;
|
|
3159
3159
|
} | undefined;
|
|
3160
3160
|
}[];
|
|
3161
|
-
spa?: {
|
|
3162
|
-
enabled: boolean;
|
|
3163
|
-
prerender: {
|
|
3164
|
-
enabled: boolean;
|
|
3165
|
-
outputPath: string;
|
|
3166
|
-
autoSubfolderIndex?: boolean | undefined;
|
|
3167
|
-
crawlLinks: boolean;
|
|
3168
|
-
retryCount: number;
|
|
3169
|
-
retryDelay?: number | undefined;
|
|
3170
|
-
onSuccess?: ((args_0: {
|
|
3171
|
-
html: string;
|
|
3172
|
-
page: {
|
|
3173
|
-
path: string;
|
|
3174
|
-
sitemap?: {
|
|
3175
|
-
exclude?: boolean | undefined;
|
|
3176
|
-
priority?: number | undefined;
|
|
3177
|
-
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
3178
|
-
lastmod?: string | Date | undefined;
|
|
3179
|
-
alternateRefs?: {
|
|
3180
|
-
href: string;
|
|
3181
|
-
hreflang: string;
|
|
3182
|
-
}[] | undefined;
|
|
3183
|
-
images?: {
|
|
3184
|
-
loc: string;
|
|
3185
|
-
title?: string | undefined;
|
|
3186
|
-
caption?: string | undefined;
|
|
3187
|
-
}[] | undefined;
|
|
3188
|
-
news?: {
|
|
3189
|
-
title: string;
|
|
3190
|
-
publication: {
|
|
3191
|
-
name: string;
|
|
3192
|
-
language: string;
|
|
3193
|
-
};
|
|
3194
|
-
publicationDate: string | Date;
|
|
3195
|
-
} | undefined;
|
|
3196
|
-
} | undefined;
|
|
3197
|
-
fromCrawl?: boolean | undefined;
|
|
3198
|
-
};
|
|
3199
|
-
}, ...args: unknown[]) => any) | undefined;
|
|
3200
|
-
headers?: Record<string, string> | undefined;
|
|
3201
|
-
};
|
|
3202
|
-
maskPath: string;
|
|
3203
|
-
} | undefined;
|
|
3204
3161
|
sitemap?: {
|
|
3205
3162
|
enabled: boolean;
|
|
3206
3163
|
outputPath: string;
|
|
@@ -3220,8 +3177,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3220
3177
|
}[] | undefined;
|
|
3221
3178
|
images?: {
|
|
3222
3179
|
loc: string;
|
|
3223
|
-
title?: string | undefined;
|
|
3224
3180
|
caption?: string | undefined;
|
|
3181
|
+
title?: string | undefined;
|
|
3225
3182
|
}[] | undefined;
|
|
3226
3183
|
news?: {
|
|
3227
3184
|
title: string;
|
|
@@ -3241,7 +3198,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3241
3198
|
retryCount?: number | undefined;
|
|
3242
3199
|
retryDelay?: number | undefined;
|
|
3243
3200
|
onSuccess?: ((args_0: {
|
|
3244
|
-
html: string;
|
|
3245
3201
|
page: {
|
|
3246
3202
|
path: string;
|
|
3247
3203
|
sitemap?: {
|
|
@@ -3255,8 +3211,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3255
3211
|
}[] | undefined;
|
|
3256
3212
|
images?: {
|
|
3257
3213
|
loc: string;
|
|
3258
|
-
title?: string | undefined;
|
|
3259
3214
|
caption?: string | undefined;
|
|
3215
|
+
title?: string | undefined;
|
|
3260
3216
|
}[] | undefined;
|
|
3261
3217
|
news?: {
|
|
3262
3218
|
title: string;
|
|
@@ -3269,6 +3225,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3269
3225
|
} | undefined;
|
|
3270
3226
|
fromCrawl?: boolean | undefined;
|
|
3271
3227
|
};
|
|
3228
|
+
html: string;
|
|
3272
3229
|
}, ...args: unknown[]) => any) | undefined;
|
|
3273
3230
|
headers?: Record<string, string> | undefined;
|
|
3274
3231
|
} | undefined;
|
|
@@ -3286,7 +3243,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3286
3243
|
retryCount?: number | undefined;
|
|
3287
3244
|
retryDelay?: number | undefined;
|
|
3288
3245
|
onSuccess?: ((args_0: {
|
|
3289
|
-
html: string;
|
|
3290
3246
|
page: {
|
|
3291
3247
|
path: string;
|
|
3292
3248
|
sitemap?: {
|
|
@@ -3300,8 +3256,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3300
3256
|
}[] | undefined;
|
|
3301
3257
|
images?: {
|
|
3302
3258
|
loc: string;
|
|
3303
|
-
title?: string | undefined;
|
|
3304
3259
|
caption?: string | undefined;
|
|
3260
|
+
title?: string | undefined;
|
|
3305
3261
|
}[] | undefined;
|
|
3306
3262
|
news?: {
|
|
3307
3263
|
title: string;
|
|
@@ -3314,31 +3270,20 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3314
3270
|
} | undefined;
|
|
3315
3271
|
fromCrawl?: boolean | undefined;
|
|
3316
3272
|
};
|
|
3273
|
+
html: string;
|
|
3317
3274
|
}, ...args: unknown[]) => any) | undefined;
|
|
3318
3275
|
headers?: Record<string, string> | undefined;
|
|
3319
3276
|
}) | undefined;
|
|
3320
|
-
vite?: {
|
|
3321
|
-
installDevServerMiddleware?: boolean | undefined;
|
|
3322
|
-
} | undefined;
|
|
3323
|
-
}, {
|
|
3324
|
-
client?: {
|
|
3325
|
-
base?: string | undefined;
|
|
3326
|
-
entry?: string | undefined;
|
|
3327
|
-
} | undefined;
|
|
3328
|
-
server?: {
|
|
3329
|
-
entry?: string | undefined;
|
|
3330
|
-
} | undefined;
|
|
3331
3277
|
spa?: {
|
|
3332
|
-
enabled
|
|
3333
|
-
prerender
|
|
3334
|
-
enabled
|
|
3335
|
-
outputPath
|
|
3278
|
+
enabled: boolean;
|
|
3279
|
+
prerender: {
|
|
3280
|
+
enabled: boolean;
|
|
3281
|
+
outputPath: string;
|
|
3336
3282
|
autoSubfolderIndex?: boolean | undefined;
|
|
3337
|
-
crawlLinks
|
|
3338
|
-
retryCount
|
|
3283
|
+
crawlLinks: boolean;
|
|
3284
|
+
retryCount: number;
|
|
3339
3285
|
retryDelay?: number | undefined;
|
|
3340
3286
|
onSuccess?: ((args_0: {
|
|
3341
|
-
html: string;
|
|
3342
3287
|
page: {
|
|
3343
3288
|
path: string;
|
|
3344
3289
|
sitemap?: {
|
|
@@ -3352,8 +3297,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3352
3297
|
}[] | undefined;
|
|
3353
3298
|
images?: {
|
|
3354
3299
|
loc: string;
|
|
3355
|
-
title?: string | undefined;
|
|
3356
3300
|
caption?: string | undefined;
|
|
3301
|
+
title?: string | undefined;
|
|
3357
3302
|
}[] | undefined;
|
|
3358
3303
|
news?: {
|
|
3359
3304
|
title: string;
|
|
@@ -3366,11 +3311,16 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3366
3311
|
} | undefined;
|
|
3367
3312
|
fromCrawl?: boolean | undefined;
|
|
3368
3313
|
};
|
|
3314
|
+
html: string;
|
|
3369
3315
|
}, ...args: unknown[]) => any) | undefined;
|
|
3370
3316
|
headers?: Record<string, string> | undefined;
|
|
3371
|
-
}
|
|
3372
|
-
maskPath
|
|
3317
|
+
};
|
|
3318
|
+
maskPath: string;
|
|
3373
3319
|
} | undefined;
|
|
3320
|
+
vite?: {
|
|
3321
|
+
installDevServerMiddleware?: boolean | undefined;
|
|
3322
|
+
} | undefined;
|
|
3323
|
+
}, {
|
|
3374
3324
|
srcDirectory?: string | undefined;
|
|
3375
3325
|
start?: {
|
|
3376
3326
|
entry?: string | undefined;
|
|
@@ -3379,10 +3329,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3379
3329
|
entry?: string | undefined;
|
|
3380
3330
|
basepath?: string | undefined;
|
|
3381
3331
|
} & {
|
|
3382
|
-
plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
|
|
3383
|
-
experimental?: {
|
|
3384
|
-
enableCodeSplitting?: boolean | undefined;
|
|
3385
|
-
} | undefined;
|
|
3386
3332
|
virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
|
|
3387
3333
|
routeFilePrefix?: string | undefined;
|
|
3388
3334
|
routeFileIgnorePrefix?: string | undefined;
|
|
@@ -3394,7 +3340,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3394
3340
|
routeTreeFileHeader?: string[] | undefined;
|
|
3395
3341
|
indexToken?: string | undefined;
|
|
3396
3342
|
routeToken?: string | undefined;
|
|
3397
|
-
pathParamsAllowedCharacters?: ("
|
|
3343
|
+
pathParamsAllowedCharacters?: (";" | ":" | "@" | "&" | "=" | "+" | "$" | ",")[] | undefined;
|
|
3398
3344
|
generatedRouteTree?: string | undefined;
|
|
3399
3345
|
disableTypes?: boolean | undefined;
|
|
3400
3346
|
addExtensions?: boolean | undefined;
|
|
@@ -3404,6 +3350,10 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3404
3350
|
routeTemplate?: string | undefined;
|
|
3405
3351
|
lazyRouteTemplate?: string | undefined;
|
|
3406
3352
|
} | undefined;
|
|
3353
|
+
experimental?: {
|
|
3354
|
+
enableCodeSplitting?: boolean | undefined;
|
|
3355
|
+
} | undefined;
|
|
3356
|
+
plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
|
|
3407
3357
|
tmpDir?: string | undefined;
|
|
3408
3358
|
importRoutesUsingAbsolutePaths?: boolean | undefined;
|
|
3409
3359
|
enableRouteGeneration?: boolean | undefined;
|
|
@@ -3414,6 +3364,13 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3414
3364
|
} | undefined;
|
|
3415
3365
|
} | undefined;
|
|
3416
3366
|
}) | undefined;
|
|
3367
|
+
client?: {
|
|
3368
|
+
entry?: string | undefined;
|
|
3369
|
+
base?: string | undefined;
|
|
3370
|
+
} | undefined;
|
|
3371
|
+
server?: {
|
|
3372
|
+
entry?: string | undefined;
|
|
3373
|
+
} | undefined;
|
|
3417
3374
|
serverFns?: {
|
|
3418
3375
|
base?: string | undefined;
|
|
3419
3376
|
generateFunctionId?: ((args_0: {
|
|
@@ -3440,8 +3397,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3440
3397
|
}[] | undefined;
|
|
3441
3398
|
images?: {
|
|
3442
3399
|
loc: string;
|
|
3443
|
-
title?: string | undefined;
|
|
3444
3400
|
caption?: string | undefined;
|
|
3401
|
+
title?: string | undefined;
|
|
3445
3402
|
}[] | undefined;
|
|
3446
3403
|
news?: {
|
|
3447
3404
|
title: string;
|
|
@@ -3461,7 +3418,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3461
3418
|
retryCount?: number | undefined;
|
|
3462
3419
|
retryDelay?: number | undefined;
|
|
3463
3420
|
onSuccess?: ((args_0: {
|
|
3464
|
-
html: string;
|
|
3465
3421
|
page: {
|
|
3466
3422
|
path: string;
|
|
3467
3423
|
sitemap?: {
|
|
@@ -3475,8 +3431,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3475
3431
|
}[] | undefined;
|
|
3476
3432
|
images?: {
|
|
3477
3433
|
loc: string;
|
|
3478
|
-
title?: string | undefined;
|
|
3479
3434
|
caption?: string | undefined;
|
|
3435
|
+
title?: string | undefined;
|
|
3480
3436
|
}[] | undefined;
|
|
3481
3437
|
news?: {
|
|
3482
3438
|
title: string;
|
|
@@ -3489,6 +3445,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3489
3445
|
} | undefined;
|
|
3490
3446
|
fromCrawl?: boolean | undefined;
|
|
3491
3447
|
};
|
|
3448
|
+
html: string;
|
|
3492
3449
|
}, ...args: unknown[]) => any) | undefined;
|
|
3493
3450
|
headers?: Record<string, string> | undefined;
|
|
3494
3451
|
} | undefined;
|
|
@@ -3506,7 +3463,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3506
3463
|
retryCount?: number | undefined;
|
|
3507
3464
|
retryDelay?: number | undefined;
|
|
3508
3465
|
onSuccess?: ((args_0: {
|
|
3509
|
-
html: string;
|
|
3510
3466
|
page: {
|
|
3511
3467
|
path: string;
|
|
3512
3468
|
sitemap?: {
|
|
@@ -3520,8 +3476,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3520
3476
|
}[] | undefined;
|
|
3521
3477
|
images?: {
|
|
3522
3478
|
loc: string;
|
|
3523
|
-
title?: string | undefined;
|
|
3524
3479
|
caption?: string | undefined;
|
|
3480
|
+
title?: string | undefined;
|
|
3525
3481
|
}[] | undefined;
|
|
3526
3482
|
news?: {
|
|
3527
3483
|
title: string;
|
|
@@ -3534,6 +3490,7 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3534
3490
|
} | undefined;
|
|
3535
3491
|
fromCrawl?: boolean | undefined;
|
|
3536
3492
|
};
|
|
3493
|
+
html: string;
|
|
3537
3494
|
}, ...args: unknown[]) => any) | undefined;
|
|
3538
3495
|
headers?: Record<string, string> | undefined;
|
|
3539
3496
|
}) | undefined;
|
|
@@ -3550,8 +3507,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3550
3507
|
}[] | undefined;
|
|
3551
3508
|
images?: {
|
|
3552
3509
|
loc: string;
|
|
3553
|
-
title?: string | undefined;
|
|
3554
3510
|
caption?: string | undefined;
|
|
3511
|
+
title?: string | undefined;
|
|
3555
3512
|
}[] | undefined;
|
|
3556
3513
|
news?: {
|
|
3557
3514
|
title: string;
|
|
@@ -3571,7 +3528,6 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3571
3528
|
retryCount?: number | undefined;
|
|
3572
3529
|
retryDelay?: number | undefined;
|
|
3573
3530
|
onSuccess?: ((args_0: {
|
|
3574
|
-
html: string;
|
|
3575
3531
|
page: {
|
|
3576
3532
|
path: string;
|
|
3577
3533
|
sitemap?: {
|
|
@@ -3585,8 +3541,8 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3585
3541
|
}[] | undefined;
|
|
3586
3542
|
images?: {
|
|
3587
3543
|
loc: string;
|
|
3588
|
-
title?: string | undefined;
|
|
3589
3544
|
caption?: string | undefined;
|
|
3545
|
+
title?: string | undefined;
|
|
3590
3546
|
}[] | undefined;
|
|
3591
3547
|
news?: {
|
|
3592
3548
|
title: string;
|
|
@@ -3599,10 +3555,54 @@ declare const tanstackStartOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject
|
|
|
3599
3555
|
} | undefined;
|
|
3600
3556
|
fromCrawl?: boolean | undefined;
|
|
3601
3557
|
};
|
|
3558
|
+
html: string;
|
|
3602
3559
|
}, ...args: unknown[]) => any) | undefined;
|
|
3603
3560
|
headers?: Record<string, string> | undefined;
|
|
3604
3561
|
} | undefined;
|
|
3605
3562
|
}[] | undefined;
|
|
3563
|
+
spa?: {
|
|
3564
|
+
enabled?: boolean | undefined;
|
|
3565
|
+
prerender?: {
|
|
3566
|
+
enabled?: boolean | undefined;
|
|
3567
|
+
outputPath?: string | undefined;
|
|
3568
|
+
autoSubfolderIndex?: boolean | undefined;
|
|
3569
|
+
crawlLinks?: boolean | undefined;
|
|
3570
|
+
retryCount?: number | undefined;
|
|
3571
|
+
retryDelay?: number | undefined;
|
|
3572
|
+
onSuccess?: ((args_0: {
|
|
3573
|
+
page: {
|
|
3574
|
+
path: string;
|
|
3575
|
+
sitemap?: {
|
|
3576
|
+
exclude?: boolean | undefined;
|
|
3577
|
+
priority?: number | undefined;
|
|
3578
|
+
changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
|
|
3579
|
+
lastmod?: string | Date | undefined;
|
|
3580
|
+
alternateRefs?: {
|
|
3581
|
+
href: string;
|
|
3582
|
+
hreflang: string;
|
|
3583
|
+
}[] | undefined;
|
|
3584
|
+
images?: {
|
|
3585
|
+
loc: string;
|
|
3586
|
+
caption?: string | undefined;
|
|
3587
|
+
title?: string | undefined;
|
|
3588
|
+
}[] | undefined;
|
|
3589
|
+
news?: {
|
|
3590
|
+
title: string;
|
|
3591
|
+
publication: {
|
|
3592
|
+
name: string;
|
|
3593
|
+
language: string;
|
|
3594
|
+
};
|
|
3595
|
+
publicationDate: string | Date;
|
|
3596
|
+
} | undefined;
|
|
3597
|
+
} | undefined;
|
|
3598
|
+
fromCrawl?: boolean | undefined;
|
|
3599
|
+
};
|
|
3600
|
+
html: string;
|
|
3601
|
+
}, ...args: unknown[]) => any) | undefined;
|
|
3602
|
+
headers?: Record<string, string> | undefined;
|
|
3603
|
+
} | undefined;
|
|
3604
|
+
maskPath?: string | undefined;
|
|
3605
|
+
} | undefined;
|
|
3606
3606
|
vite?: {
|
|
3607
3607
|
installDevServerMiddleware?: boolean | undefined;
|
|
3608
3608
|
} | undefined;
|