@tanstack/start-plugin-core 1.167.18 → 1.167.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (183) hide show
  1. package/dist/esm/config-context.d.ts +26 -0
  2. package/dist/esm/config-context.js +81 -0
  3. package/dist/esm/config-context.js.map +1 -0
  4. package/dist/esm/constants.d.ts +6 -1
  5. package/dist/esm/constants.js +3 -2
  6. package/dist/esm/constants.js.map +1 -1
  7. package/dist/esm/import-protection-plugin/extensionlessAbsoluteIdResolver.js +1 -1
  8. package/dist/esm/import-protection-plugin/plugin.js +1 -1
  9. package/dist/esm/import-protection-plugin/virtualModules.js +1 -1
  10. package/dist/esm/index.d.ts +5 -3
  11. package/dist/esm/index.js +3 -4
  12. package/dist/esm/planning.d.ts +40 -0
  13. package/dist/esm/planning.js +107 -0
  14. package/dist/esm/planning.js.map +1 -0
  15. package/dist/esm/schema.d.ts +3093 -44
  16. package/dist/esm/schema.js +5 -5
  17. package/dist/esm/schema.js.map +1 -1
  18. package/dist/esm/serialization-adapters-module.d.ts +17 -0
  19. package/dist/esm/serialization-adapters-module.js +39 -0
  20. package/dist/esm/serialization-adapters-module.js.map +1 -0
  21. package/dist/esm/{start-compiler-plugin → start-compiler}/compiler.d.ts +2 -3
  22. package/dist/esm/{start-compiler-plugin → start-compiler}/compiler.js +17 -16
  23. package/dist/esm/start-compiler/compiler.js.map +1 -0
  24. package/dist/esm/start-compiler/config.d.ts +4 -0
  25. package/dist/esm/start-compiler/config.js +54 -0
  26. package/dist/esm/start-compiler/config.js.map +1 -0
  27. package/dist/esm/{start-compiler-plugin → start-compiler}/handleClientOnlyJSX.js +1 -1
  28. package/dist/esm/start-compiler/handleClientOnlyJSX.js.map +1 -0
  29. package/dist/esm/{start-compiler-plugin → start-compiler}/handleCreateIsomorphicFn.js +1 -1
  30. package/dist/esm/start-compiler/handleCreateIsomorphicFn.js.map +1 -0
  31. package/dist/esm/{start-compiler-plugin → start-compiler}/handleCreateMiddleware.js +1 -1
  32. package/dist/esm/start-compiler/handleCreateMiddleware.js.map +1 -0
  33. package/dist/esm/{start-compiler-plugin → start-compiler}/handleCreateServerFn.js +6 -17
  34. package/dist/esm/start-compiler/handleCreateServerFn.js.map +1 -0
  35. package/dist/esm/{start-compiler-plugin → start-compiler}/handleEnvOnly.js +1 -1
  36. package/dist/esm/start-compiler/handleEnvOnly.js.map +1 -0
  37. package/dist/esm/start-compiler/host.d.ts +20 -0
  38. package/dist/esm/start-compiler/host.js +38 -0
  39. package/dist/esm/start-compiler/host.js.map +1 -0
  40. package/dist/esm/start-compiler/load-module.d.ts +14 -0
  41. package/dist/esm/start-compiler/load-module.js +18 -0
  42. package/dist/esm/start-compiler/load-module.js.map +1 -0
  43. package/dist/esm/start-compiler/server-fn-resolver-module.d.ts +8 -0
  44. package/dist/esm/start-compiler/server-fn-resolver-module.js +77 -0
  45. package/dist/esm/start-compiler/server-fn-resolver-module.js.map +1 -0
  46. package/dist/esm/{start-compiler-plugin → start-compiler}/types.d.ts +4 -0
  47. package/dist/esm/{start-compiler-plugin → start-compiler}/utils.js +1 -1
  48. package/dist/esm/start-compiler/utils.js.map +1 -0
  49. package/dist/esm/start-manifest-plugin/manifestBuilder.d.ts +16 -16
  50. package/dist/esm/start-manifest-plugin/manifestBuilder.js +14 -45
  51. package/dist/esm/start-manifest-plugin/manifestBuilder.js.map +1 -1
  52. package/dist/esm/start-router-plugin/route-tree-footer.d.ts +6 -0
  53. package/dist/esm/start-router-plugin/route-tree-footer.js +44 -0
  54. package/dist/esm/start-router-plugin/route-tree-footer.js.map +1 -0
  55. package/dist/esm/types.d.ts +44 -10
  56. package/dist/esm/{dev-server-plugin → vite/dev-server-plugin}/dev-styles.js +1 -1
  57. package/dist/esm/vite/dev-server-plugin/dev-styles.js.map +1 -0
  58. package/dist/esm/{dev-server-plugin → vite/dev-server-plugin}/extract-html-scripts.js +1 -1
  59. package/dist/esm/vite/dev-server-plugin/extract-html-scripts.js.map +1 -0
  60. package/dist/esm/vite/dev-server-plugin/plugin.d.ts +7 -0
  61. package/dist/esm/{dev-server-plugin → vite/dev-server-plugin}/plugin.js +5 -6
  62. package/dist/esm/vite/dev-server-plugin/plugin.js.map +1 -0
  63. package/dist/esm/{load-env-plugin → vite/load-env-plugin}/plugin.js +1 -1
  64. package/dist/esm/vite/load-env-plugin/plugin.js.map +1 -0
  65. package/dist/esm/{output-directory.js → vite/output-directory.js} +2 -2
  66. package/dist/esm/vite/output-directory.js.map +1 -0
  67. package/dist/esm/vite/planning.d.ts +105 -0
  68. package/dist/esm/vite/planning.js +116 -0
  69. package/dist/esm/vite/planning.js.map +1 -0
  70. package/dist/esm/vite/plugin.d.ts +4 -0
  71. package/dist/esm/vite/plugin.js +169 -0
  72. package/dist/esm/vite/plugin.js.map +1 -0
  73. package/dist/esm/vite/plugins.d.ts +17 -0
  74. package/dist/esm/vite/plugins.js +50 -0
  75. package/dist/esm/vite/plugins.js.map +1 -0
  76. package/dist/esm/{post-server-build.d.ts → vite/post-server-build.d.ts} +1 -1
  77. package/dist/esm/{post-server-build.js → vite/post-server-build.js} +4 -4
  78. package/dist/esm/vite/post-server-build.js.map +1 -0
  79. package/dist/esm/{prerender.d.ts → vite/prerender.d.ts} +1 -1
  80. package/dist/esm/{prerender.js → vite/prerender.js} +5 -10
  81. package/dist/esm/vite/prerender.js.map +1 -0
  82. package/dist/esm/{preview-server-plugin → vite/preview-server-plugin}/plugin.js +4 -4
  83. package/dist/esm/vite/preview-server-plugin/plugin.js.map +1 -0
  84. package/dist/esm/vite/schema.d.ts +3373 -0
  85. package/dist/esm/vite/schema.js +12 -0
  86. package/dist/esm/vite/schema.js.map +1 -0
  87. package/dist/esm/vite/serialization-adapters-plugin.d.ts +5 -0
  88. package/dist/esm/vite/serialization-adapters-plugin.js +42 -0
  89. package/dist/esm/vite/serialization-adapters-plugin.js.map +1 -0
  90. package/dist/esm/vite/start-compiler-plugin/module-specifier.d.ts +3 -0
  91. package/dist/esm/vite/start-compiler-plugin/module-specifier.js +19 -0
  92. package/dist/esm/vite/start-compiler-plugin/module-specifier.js.map +1 -0
  93. package/dist/esm/{start-compiler-plugin → vite/start-compiler-plugin}/plugin.d.ts +4 -3
  94. package/dist/esm/vite/start-compiler-plugin/plugin.js +202 -0
  95. package/dist/esm/vite/start-compiler-plugin/plugin.js.map +1 -0
  96. package/dist/esm/vite/start-manifest-plugin/normalized-client-build.d.ts +6 -0
  97. package/dist/esm/vite/start-manifest-plugin/normalized-client-build.js +81 -0
  98. package/dist/esm/vite/start-manifest-plugin/normalized-client-build.js.map +1 -0
  99. package/dist/esm/vite/start-manifest-plugin/plugin.d.ts +6 -0
  100. package/dist/esm/{start-manifest-plugin → vite/start-manifest-plugin}/plugin.js +14 -9
  101. package/dist/esm/vite/start-manifest-plugin/plugin.js.map +1 -0
  102. package/dist/esm/{start-router-plugin → vite/start-router-plugin}/plugin.d.ts +3 -2
  103. package/dist/esm/{start-router-plugin → vite/start-router-plugin}/plugin.js +14 -37
  104. package/dist/esm/vite/start-router-plugin/plugin.js.map +1 -0
  105. package/dist/esm/vite/types.d.ts +15 -0
  106. package/package.json +12 -1
  107. package/src/config-context.ts +138 -0
  108. package/src/constants.ts +7 -3
  109. package/src/index.ts +5 -5
  110. package/src/planning.ts +151 -0
  111. package/src/schema.ts +93 -93
  112. package/src/serialization-adapters-module.ts +82 -0
  113. package/src/{start-compiler-plugin → start-compiler}/compiler.ts +67 -61
  114. package/src/start-compiler/config.ts +73 -0
  115. package/src/{start-compiler-plugin → start-compiler}/handleCreateServerFn.ts +14 -41
  116. package/src/start-compiler/host.ts +80 -0
  117. package/src/start-compiler/load-module.ts +31 -0
  118. package/src/start-compiler/server-fn-resolver-module.ts +129 -0
  119. package/src/{start-compiler-plugin → start-compiler}/types.ts +5 -0
  120. package/src/start-manifest-plugin/manifestBuilder.ts +65 -107
  121. package/src/start-router-plugin/route-tree-footer.ts +99 -0
  122. package/src/types.ts +53 -10
  123. package/src/{dev-server-plugin → vite/dev-server-plugin}/plugin.ts +7 -6
  124. package/src/{output-directory.ts → vite/output-directory.ts} +2 -2
  125. package/src/vite/planning.ts +234 -0
  126. package/src/vite/plugin.ts +276 -0
  127. package/src/vite/plugins.ts +81 -0
  128. package/src/{post-server-build.ts → vite/post-server-build.ts} +4 -6
  129. package/src/{prerender.ts → vite/prerender.ts} +21 -46
  130. package/src/{preview-server-plugin → vite/preview-server-plugin}/plugin.ts +2 -2
  131. package/src/vite/schema.ts +30 -0
  132. package/src/vite/serialization-adapters-plugin.ts +69 -0
  133. package/src/vite/start-compiler-plugin/module-specifier.ts +31 -0
  134. package/src/vite/start-compiler-plugin/plugin.ts +345 -0
  135. package/src/vite/start-manifest-plugin/normalized-client-build.ts +131 -0
  136. package/src/{start-manifest-plugin → vite/start-manifest-plugin}/plugin.ts +21 -13
  137. package/src/{start-router-plugin → vite/start-router-plugin}/plugin.ts +14 -80
  138. package/src/vite/types.ts +18 -0
  139. package/dist/esm/dev-server-plugin/dev-styles.js.map +0 -1
  140. package/dist/esm/dev-server-plugin/extract-html-scripts.js.map +0 -1
  141. package/dist/esm/dev-server-plugin/plugin.d.ts +0 -6
  142. package/dist/esm/dev-server-plugin/plugin.js.map +0 -1
  143. package/dist/esm/load-env-plugin/plugin.js.map +0 -1
  144. package/dist/esm/output-directory.js.map +0 -1
  145. package/dist/esm/plugin.d.ts +0 -4
  146. package/dist/esm/plugin.js +0 -301
  147. package/dist/esm/plugin.js.map +0 -1
  148. package/dist/esm/post-server-build.js.map +0 -1
  149. package/dist/esm/prerender.js.map +0 -1
  150. package/dist/esm/preview-server-plugin/plugin.js.map +0 -1
  151. package/dist/esm/start-compiler-plugin/compiler.js.map +0 -1
  152. package/dist/esm/start-compiler-plugin/handleClientOnlyJSX.js.map +0 -1
  153. package/dist/esm/start-compiler-plugin/handleCreateIsomorphicFn.js.map +0 -1
  154. package/dist/esm/start-compiler-plugin/handleCreateMiddleware.js.map +0 -1
  155. package/dist/esm/start-compiler-plugin/handleCreateServerFn.js.map +0 -1
  156. package/dist/esm/start-compiler-plugin/handleEnvOnly.js.map +0 -1
  157. package/dist/esm/start-compiler-plugin/plugin.js +0 -297
  158. package/dist/esm/start-compiler-plugin/plugin.js.map +0 -1
  159. package/dist/esm/start-compiler-plugin/utils.js.map +0 -1
  160. package/dist/esm/start-manifest-plugin/plugin.d.ts +0 -6
  161. package/dist/esm/start-manifest-plugin/plugin.js.map +0 -1
  162. package/dist/esm/start-router-plugin/plugin.js.map +0 -1
  163. package/src/plugin.ts +0 -471
  164. package/src/start-compiler-plugin/plugin.ts +0 -478
  165. /package/dist/esm/{start-compiler-plugin → start-compiler}/handleClientOnlyJSX.d.ts +0 -0
  166. /package/dist/esm/{start-compiler-plugin → start-compiler}/handleCreateIsomorphicFn.d.ts +0 -0
  167. /package/dist/esm/{start-compiler-plugin → start-compiler}/handleCreateMiddleware.d.ts +0 -0
  168. /package/dist/esm/{start-compiler-plugin → start-compiler}/handleCreateServerFn.d.ts +0 -0
  169. /package/dist/esm/{start-compiler-plugin → start-compiler}/handleEnvOnly.d.ts +0 -0
  170. /package/dist/esm/{start-compiler-plugin → start-compiler}/utils.d.ts +0 -0
  171. /package/dist/esm/{dev-server-plugin → vite/dev-server-plugin}/dev-styles.d.ts +0 -0
  172. /package/dist/esm/{dev-server-plugin → vite/dev-server-plugin}/extract-html-scripts.d.ts +0 -0
  173. /package/dist/esm/{load-env-plugin → vite/load-env-plugin}/plugin.d.ts +0 -0
  174. /package/dist/esm/{output-directory.d.ts → vite/output-directory.d.ts} +0 -0
  175. /package/dist/esm/{preview-server-plugin → vite/preview-server-plugin}/plugin.d.ts +0 -0
  176. /package/src/{start-compiler-plugin → start-compiler}/handleClientOnlyJSX.ts +0 -0
  177. /package/src/{start-compiler-plugin → start-compiler}/handleCreateIsomorphicFn.ts +0 -0
  178. /package/src/{start-compiler-plugin → start-compiler}/handleCreateMiddleware.ts +0 -0
  179. /package/src/{start-compiler-plugin → start-compiler}/handleEnvOnly.ts +0 -0
  180. /package/src/{start-compiler-plugin → start-compiler}/utils.ts +0 -0
  181. /package/src/{dev-server-plugin → vite/dev-server-plugin}/dev-styles.ts +0 -0
  182. /package/src/{dev-server-plugin → vite/dev-server-plugin}/extract-html-scripts.ts +0 -0
  183. /package/src/{load-env-plugin → vite/load-env-plugin}/plugin.ts +0 -0
@@ -0,0 +1,3373 @@
1
+ import { z } from 'zod';
2
+ import { CompileStartFrameworkOptions } from '../types.js';
3
+ export declare const tanstackStartViteOptionsSchema: z.ZodDefault<z.ZodOptional<z.ZodObject<{
4
+ srcDirectory: z.ZodDefault<z.ZodOptional<z.ZodString>>;
5
+ start: z.ZodDefault<z.ZodOptional<z.ZodObject<{
6
+ entry: z.ZodOptional<z.ZodString>;
7
+ }, "strip", z.ZodTypeAny, {
8
+ entry?: string | undefined;
9
+ }, {
10
+ entry?: string | undefined;
11
+ }>>>;
12
+ router: z.ZodDefault<z.ZodOptional<z.ZodIntersection<z.ZodObject<{
13
+ entry: z.ZodOptional<z.ZodString>;
14
+ basepath: z.ZodOptional<z.ZodString>;
15
+ }, "strip", z.ZodTypeAny, {
16
+ entry?: string | undefined;
17
+ basepath?: string | undefined;
18
+ }, {
19
+ entry?: string | undefined;
20
+ basepath?: string | undefined;
21
+ }>, z.ZodDefault<z.ZodOptional<z.ZodObject<{
22
+ 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]>>>;
23
+ routeFilePrefix: z.ZodOptional<z.ZodOptional<z.ZodString>>;
24
+ routeFileIgnorePrefix: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodString>>>;
25
+ routeFileIgnorePattern: z.ZodOptional<z.ZodOptional<z.ZodString>>;
26
+ routesDirectory: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodString>>>;
27
+ quoteStyle: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodEnum<["single", "double"]>>>>;
28
+ semicolons: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>;
29
+ disableLogging: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>;
30
+ routeTreeFileHeader: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>>;
31
+ indexToken: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodType<RegExp, z.ZodTypeDef, RegExp>, z.ZodObject<{
32
+ regex: z.ZodString;
33
+ flags: z.ZodOptional<z.ZodString>;
34
+ }, "strip", z.ZodTypeAny, {
35
+ regex: string;
36
+ flags?: string | undefined;
37
+ }, {
38
+ regex: string;
39
+ flags?: string | undefined;
40
+ }>]>>>>;
41
+ routeToken: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodType<RegExp, z.ZodTypeDef, RegExp>, z.ZodObject<{
42
+ regex: z.ZodString;
43
+ flags: z.ZodOptional<z.ZodString>;
44
+ }, "strip", z.ZodTypeAny, {
45
+ regex: string;
46
+ flags?: string | undefined;
47
+ }, {
48
+ regex: string;
49
+ flags?: string | undefined;
50
+ }>]>>>>;
51
+ pathParamsAllowedCharacters: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodEnum<[";", ":", "@", "&", "=", "+", "$", ","]>, "many">>>;
52
+ generatedRouteTree: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodString>>>;
53
+ disableTypes: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>;
54
+ addExtensions: z.ZodOptional<z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>>, string | boolean, string | boolean | undefined>>;
55
+ enableRouteTreeFormatting: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>;
56
+ 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">>]>>>;
57
+ customScaffolding: z.ZodOptional<z.ZodOptional<z.ZodObject<{
58
+ routeTemplate: z.ZodOptional<z.ZodString>;
59
+ lazyRouteTemplate: z.ZodOptional<z.ZodString>;
60
+ }, "strip", z.ZodTypeAny, {
61
+ routeTemplate?: string | undefined;
62
+ lazyRouteTemplate?: string | undefined;
63
+ }, {
64
+ routeTemplate?: string | undefined;
65
+ lazyRouteTemplate?: string | undefined;
66
+ }>>>;
67
+ experimental: z.ZodOptional<z.ZodOptional<z.ZodObject<{
68
+ enableCodeSplitting: z.ZodOptional<z.ZodBoolean>;
69
+ }, "strip", z.ZodTypeAny, {
70
+ enableCodeSplitting?: boolean | undefined;
71
+ }, {
72
+ enableCodeSplitting?: boolean | undefined;
73
+ }>>>;
74
+ plugins: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodType<import('@tanstack/router-generator').GeneratorPlugin, z.ZodTypeDef, import('@tanstack/router-generator').GeneratorPlugin>, "many">>>;
75
+ tmpDir: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodString>>>;
76
+ importRoutesUsingAbsolutePaths: z.ZodOptional<z.ZodDefault<z.ZodOptional<z.ZodBoolean>>>;
77
+ enableRouteGeneration: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
78
+ codeSplittingOptions: z.ZodOptional<z.ZodOptional<z.ZodType<import('@tanstack/router-plugin').CodeSplittingOptions, z.ZodTypeDef, import('@tanstack/router-plugin').CodeSplittingOptions>>>;
79
+ plugin: z.ZodOptional<z.ZodOptional<z.ZodObject<{
80
+ hmr: z.ZodOptional<z.ZodObject<{
81
+ hotExpression: z.ZodOptional<z.ZodString>;
82
+ }, "strip", z.ZodTypeAny, {
83
+ hotExpression?: string | undefined;
84
+ }, {
85
+ hotExpression?: string | undefined;
86
+ }>>;
87
+ vite: z.ZodOptional<z.ZodObject<{
88
+ environmentName: z.ZodOptional<z.ZodString>;
89
+ }, "strip", z.ZodTypeAny, {
90
+ environmentName?: string | undefined;
91
+ }, {
92
+ environmentName?: string | undefined;
93
+ }>>;
94
+ }, "strip", z.ZodTypeAny, {
95
+ hmr?: {
96
+ hotExpression?: string | undefined;
97
+ } | undefined;
98
+ vite?: {
99
+ environmentName?: string | undefined;
100
+ } | undefined;
101
+ }, {
102
+ hmr?: {
103
+ hotExpression?: string | undefined;
104
+ } | undefined;
105
+ vite?: {
106
+ environmentName?: string | undefined;
107
+ } | undefined;
108
+ }>>>;
109
+ }, "strip", z.ZodTypeAny, {
110
+ virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
111
+ routeFilePrefix?: string | undefined;
112
+ routeFileIgnorePrefix?: string | undefined;
113
+ routeFileIgnorePattern?: string | undefined;
114
+ routesDirectory?: string | undefined;
115
+ quoteStyle?: "single" | "double" | undefined;
116
+ semicolons?: boolean | undefined;
117
+ disableLogging?: boolean | undefined;
118
+ routeTreeFileHeader?: string[] | undefined;
119
+ indexToken?: string | RegExp | {
120
+ regex: string;
121
+ flags?: string | undefined;
122
+ } | undefined;
123
+ routeToken?: string | RegExp | {
124
+ regex: string;
125
+ flags?: string | undefined;
126
+ } | undefined;
127
+ pathParamsAllowedCharacters?: (";" | ":" | "@" | "&" | "=" | "+" | "$" | ",")[] | undefined;
128
+ generatedRouteTree?: string | undefined;
129
+ disableTypes?: boolean | undefined;
130
+ addExtensions?: string | boolean | undefined;
131
+ enableRouteTreeFormatting?: boolean | undefined;
132
+ routeTreeFileFooter?: string[] | ((...args: unknown[]) => string[]) | undefined;
133
+ customScaffolding?: {
134
+ routeTemplate?: string | undefined;
135
+ lazyRouteTemplate?: string | undefined;
136
+ } | undefined;
137
+ experimental?: {
138
+ enableCodeSplitting?: boolean | undefined;
139
+ } | undefined;
140
+ plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
141
+ tmpDir?: string | undefined;
142
+ importRoutesUsingAbsolutePaths?: boolean | undefined;
143
+ enableRouteGeneration?: boolean | undefined;
144
+ codeSplittingOptions?: import('@tanstack/router-plugin').CodeSplittingOptions | undefined;
145
+ plugin?: {
146
+ hmr?: {
147
+ hotExpression?: string | undefined;
148
+ } | undefined;
149
+ vite?: {
150
+ environmentName?: string | undefined;
151
+ } | undefined;
152
+ } | undefined;
153
+ }, {
154
+ virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
155
+ routeFilePrefix?: string | undefined;
156
+ routeFileIgnorePrefix?: string | undefined;
157
+ routeFileIgnorePattern?: string | undefined;
158
+ routesDirectory?: string | undefined;
159
+ quoteStyle?: "single" | "double" | undefined;
160
+ semicolons?: boolean | undefined;
161
+ disableLogging?: boolean | undefined;
162
+ routeTreeFileHeader?: string[] | undefined;
163
+ indexToken?: string | RegExp | {
164
+ regex: string;
165
+ flags?: string | undefined;
166
+ } | undefined;
167
+ routeToken?: string | RegExp | {
168
+ regex: string;
169
+ flags?: string | undefined;
170
+ } | undefined;
171
+ pathParamsAllowedCharacters?: (";" | ":" | "@" | "&" | "=" | "+" | "$" | ",")[] | undefined;
172
+ generatedRouteTree?: string | undefined;
173
+ disableTypes?: boolean | undefined;
174
+ addExtensions?: string | boolean | undefined;
175
+ enableRouteTreeFormatting?: boolean | undefined;
176
+ routeTreeFileFooter?: string[] | ((...args: unknown[]) => string[]) | undefined;
177
+ customScaffolding?: {
178
+ routeTemplate?: string | undefined;
179
+ lazyRouteTemplate?: string | undefined;
180
+ } | undefined;
181
+ experimental?: {
182
+ enableCodeSplitting?: boolean | undefined;
183
+ } | undefined;
184
+ plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
185
+ tmpDir?: string | undefined;
186
+ importRoutesUsingAbsolutePaths?: boolean | undefined;
187
+ enableRouteGeneration?: boolean | undefined;
188
+ codeSplittingOptions?: import('@tanstack/router-plugin').CodeSplittingOptions | undefined;
189
+ plugin?: {
190
+ hmr?: {
191
+ hotExpression?: string | undefined;
192
+ } | undefined;
193
+ vite?: {
194
+ environmentName?: string | undefined;
195
+ } | undefined;
196
+ } | undefined;
197
+ }>>>>>>;
198
+ client: z.ZodDefault<z.ZodOptional<z.ZodObject<{
199
+ entry: z.ZodOptional<z.ZodString>;
200
+ base: z.ZodDefault<z.ZodOptional<z.ZodString>>;
201
+ }, "strip", z.ZodTypeAny, {
202
+ base: string;
203
+ entry?: string | undefined;
204
+ }, {
205
+ entry?: string | undefined;
206
+ base?: string | undefined;
207
+ }>>>;
208
+ server: z.ZodDefault<z.ZodOptional<z.ZodObject<{
209
+ entry: z.ZodOptional<z.ZodString>;
210
+ build: z.ZodDefault<z.ZodOptional<z.ZodObject<{
211
+ staticNodeEnv: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
212
+ }, "strip", z.ZodTypeAny, {
213
+ staticNodeEnv: boolean;
214
+ }, {
215
+ staticNodeEnv?: boolean | undefined;
216
+ }>>>;
217
+ }, "strip", z.ZodTypeAny, {
218
+ build: {
219
+ staticNodeEnv: boolean;
220
+ };
221
+ entry?: string | undefined;
222
+ }, {
223
+ entry?: string | undefined;
224
+ build?: {
225
+ staticNodeEnv?: boolean | undefined;
226
+ } | undefined;
227
+ }>>>;
228
+ serverFns: z.ZodDefault<z.ZodOptional<z.ZodObject<{
229
+ base: z.ZodDefault<z.ZodOptional<z.ZodString>>;
230
+ generateFunctionId: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
231
+ filename: z.ZodString;
232
+ functionName: z.ZodString;
233
+ }, "strip", z.ZodTypeAny, {
234
+ filename: string;
235
+ functionName: string;
236
+ }, {
237
+ filename: string;
238
+ functionName: string;
239
+ }>], z.ZodUnknown>, z.ZodOptional<z.ZodString>>>;
240
+ }, "strip", z.ZodTypeAny, {
241
+ base: string;
242
+ generateFunctionId?: ((args_0: {
243
+ filename: string;
244
+ functionName: string;
245
+ }, ...args: unknown[]) => string | undefined) | undefined;
246
+ }, {
247
+ base?: string | undefined;
248
+ generateFunctionId?: ((args_0: {
249
+ filename: string;
250
+ functionName: string;
251
+ }, ...args: unknown[]) => string | undefined) | undefined;
252
+ }>>>;
253
+ pages: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
254
+ path: z.ZodString;
255
+ sitemap: z.ZodOptional<z.ZodObject<{
256
+ exclude: z.ZodOptional<z.ZodBoolean>;
257
+ priority: z.ZodOptional<z.ZodNumber>;
258
+ changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
259
+ lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
260
+ alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
261
+ href: z.ZodString;
262
+ hreflang: z.ZodString;
263
+ }, "strip", z.ZodTypeAny, {
264
+ href: string;
265
+ hreflang: string;
266
+ }, {
267
+ href: string;
268
+ hreflang: string;
269
+ }>, "many">>;
270
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
271
+ loc: z.ZodString;
272
+ caption: z.ZodOptional<z.ZodString>;
273
+ title: z.ZodOptional<z.ZodString>;
274
+ }, "strip", z.ZodTypeAny, {
275
+ loc: string;
276
+ caption?: string | undefined;
277
+ title?: string | undefined;
278
+ }, {
279
+ loc: string;
280
+ caption?: string | undefined;
281
+ title?: string | undefined;
282
+ }>, "many">>;
283
+ news: z.ZodOptional<z.ZodObject<{
284
+ publication: z.ZodObject<{
285
+ name: z.ZodString;
286
+ language: z.ZodString;
287
+ }, "strip", z.ZodTypeAny, {
288
+ name: string;
289
+ language: string;
290
+ }, {
291
+ name: string;
292
+ language: string;
293
+ }>;
294
+ publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
295
+ title: z.ZodString;
296
+ }, "strip", z.ZodTypeAny, {
297
+ title: string;
298
+ publication: {
299
+ name: string;
300
+ language: string;
301
+ };
302
+ publicationDate: string | Date;
303
+ }, {
304
+ title: string;
305
+ publication: {
306
+ name: string;
307
+ language: string;
308
+ };
309
+ publicationDate: string | Date;
310
+ }>>;
311
+ }, "strip", z.ZodTypeAny, {
312
+ exclude?: boolean | undefined;
313
+ priority?: number | undefined;
314
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
315
+ lastmod?: string | Date | undefined;
316
+ alternateRefs?: {
317
+ href: string;
318
+ hreflang: string;
319
+ }[] | undefined;
320
+ images?: {
321
+ loc: string;
322
+ caption?: string | undefined;
323
+ title?: string | undefined;
324
+ }[] | undefined;
325
+ news?: {
326
+ title: string;
327
+ publication: {
328
+ name: string;
329
+ language: string;
330
+ };
331
+ publicationDate: string | Date;
332
+ } | undefined;
333
+ }, {
334
+ exclude?: boolean | undefined;
335
+ priority?: number | undefined;
336
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
337
+ lastmod?: string | Date | undefined;
338
+ alternateRefs?: {
339
+ href: string;
340
+ hreflang: string;
341
+ }[] | undefined;
342
+ images?: {
343
+ loc: string;
344
+ caption?: string | undefined;
345
+ title?: string | undefined;
346
+ }[] | undefined;
347
+ news?: {
348
+ title: string;
349
+ publication: {
350
+ name: string;
351
+ language: string;
352
+ };
353
+ publicationDate: string | Date;
354
+ } | undefined;
355
+ }>>;
356
+ fromCrawl: z.ZodOptional<z.ZodBoolean>;
357
+ } & {
358
+ prerender: z.ZodOptional<z.ZodObject<{
359
+ enabled: z.ZodOptional<z.ZodBoolean>;
360
+ outputPath: z.ZodOptional<z.ZodString>;
361
+ autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
362
+ crawlLinks: z.ZodOptional<z.ZodBoolean>;
363
+ retryCount: z.ZodOptional<z.ZodNumber>;
364
+ retryDelay: z.ZodOptional<z.ZodNumber>;
365
+ onSuccess: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
366
+ page: z.ZodObject<{
367
+ path: z.ZodString;
368
+ sitemap: z.ZodOptional<z.ZodObject<{
369
+ exclude: z.ZodOptional<z.ZodBoolean>;
370
+ priority: z.ZodOptional<z.ZodNumber>;
371
+ changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
372
+ lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
373
+ alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
374
+ href: z.ZodString;
375
+ hreflang: z.ZodString;
376
+ }, "strip", z.ZodTypeAny, {
377
+ href: string;
378
+ hreflang: string;
379
+ }, {
380
+ href: string;
381
+ hreflang: string;
382
+ }>, "many">>;
383
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
384
+ loc: z.ZodString;
385
+ caption: z.ZodOptional<z.ZodString>;
386
+ title: z.ZodOptional<z.ZodString>;
387
+ }, "strip", z.ZodTypeAny, {
388
+ loc: string;
389
+ caption?: string | undefined;
390
+ title?: string | undefined;
391
+ }, {
392
+ loc: string;
393
+ caption?: string | undefined;
394
+ title?: string | undefined;
395
+ }>, "many">>;
396
+ news: z.ZodOptional<z.ZodObject<{
397
+ publication: z.ZodObject<{
398
+ name: z.ZodString;
399
+ language: z.ZodString;
400
+ }, "strip", z.ZodTypeAny, {
401
+ name: string;
402
+ language: string;
403
+ }, {
404
+ name: string;
405
+ language: string;
406
+ }>;
407
+ publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
408
+ title: z.ZodString;
409
+ }, "strip", z.ZodTypeAny, {
410
+ title: string;
411
+ publication: {
412
+ name: string;
413
+ language: string;
414
+ };
415
+ publicationDate: string | Date;
416
+ }, {
417
+ title: string;
418
+ publication: {
419
+ name: string;
420
+ language: string;
421
+ };
422
+ publicationDate: string | Date;
423
+ }>>;
424
+ }, "strip", z.ZodTypeAny, {
425
+ exclude?: boolean | undefined;
426
+ priority?: number | undefined;
427
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
428
+ lastmod?: string | Date | undefined;
429
+ alternateRefs?: {
430
+ href: string;
431
+ hreflang: string;
432
+ }[] | undefined;
433
+ images?: {
434
+ loc: string;
435
+ caption?: string | undefined;
436
+ title?: string | undefined;
437
+ }[] | undefined;
438
+ news?: {
439
+ title: string;
440
+ publication: {
441
+ name: string;
442
+ language: string;
443
+ };
444
+ publicationDate: string | Date;
445
+ } | undefined;
446
+ }, {
447
+ exclude?: boolean | undefined;
448
+ priority?: number | undefined;
449
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
450
+ lastmod?: string | Date | undefined;
451
+ alternateRefs?: {
452
+ href: string;
453
+ hreflang: string;
454
+ }[] | undefined;
455
+ images?: {
456
+ loc: string;
457
+ caption?: string | undefined;
458
+ title?: string | undefined;
459
+ }[] | undefined;
460
+ news?: {
461
+ title: string;
462
+ publication: {
463
+ name: string;
464
+ language: string;
465
+ };
466
+ publicationDate: string | Date;
467
+ } | undefined;
468
+ }>>;
469
+ fromCrawl: z.ZodOptional<z.ZodBoolean>;
470
+ }, "strip", z.ZodTypeAny, {
471
+ path: string;
472
+ sitemap?: {
473
+ exclude?: boolean | undefined;
474
+ priority?: number | undefined;
475
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
476
+ lastmod?: string | Date | undefined;
477
+ alternateRefs?: {
478
+ href: string;
479
+ hreflang: string;
480
+ }[] | undefined;
481
+ images?: {
482
+ loc: string;
483
+ caption?: string | undefined;
484
+ title?: string | undefined;
485
+ }[] | undefined;
486
+ news?: {
487
+ title: string;
488
+ publication: {
489
+ name: string;
490
+ language: string;
491
+ };
492
+ publicationDate: string | Date;
493
+ } | undefined;
494
+ } | undefined;
495
+ fromCrawl?: boolean | undefined;
496
+ }, {
497
+ path: string;
498
+ sitemap?: {
499
+ exclude?: boolean | undefined;
500
+ priority?: number | undefined;
501
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
502
+ lastmod?: string | Date | undefined;
503
+ alternateRefs?: {
504
+ href: string;
505
+ hreflang: string;
506
+ }[] | undefined;
507
+ images?: {
508
+ loc: string;
509
+ caption?: string | undefined;
510
+ title?: string | undefined;
511
+ }[] | undefined;
512
+ news?: {
513
+ title: string;
514
+ publication: {
515
+ name: string;
516
+ language: string;
517
+ };
518
+ publicationDate: string | Date;
519
+ } | undefined;
520
+ } | undefined;
521
+ fromCrawl?: boolean | undefined;
522
+ }>;
523
+ html: z.ZodString;
524
+ }, "strip", z.ZodTypeAny, {
525
+ page: {
526
+ path: string;
527
+ sitemap?: {
528
+ exclude?: boolean | undefined;
529
+ priority?: number | undefined;
530
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
531
+ lastmod?: string | Date | undefined;
532
+ alternateRefs?: {
533
+ href: string;
534
+ hreflang: string;
535
+ }[] | undefined;
536
+ images?: {
537
+ loc: string;
538
+ caption?: string | undefined;
539
+ title?: string | undefined;
540
+ }[] | undefined;
541
+ news?: {
542
+ title: string;
543
+ publication: {
544
+ name: string;
545
+ language: string;
546
+ };
547
+ publicationDate: string | Date;
548
+ } | undefined;
549
+ } | undefined;
550
+ fromCrawl?: boolean | undefined;
551
+ };
552
+ html: string;
553
+ }, {
554
+ page: {
555
+ path: string;
556
+ sitemap?: {
557
+ exclude?: boolean | undefined;
558
+ priority?: number | undefined;
559
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
560
+ lastmod?: string | Date | undefined;
561
+ alternateRefs?: {
562
+ href: string;
563
+ hreflang: string;
564
+ }[] | undefined;
565
+ images?: {
566
+ loc: string;
567
+ caption?: string | undefined;
568
+ title?: string | undefined;
569
+ }[] | undefined;
570
+ news?: {
571
+ title: string;
572
+ publication: {
573
+ name: string;
574
+ language: string;
575
+ };
576
+ publicationDate: string | Date;
577
+ } | undefined;
578
+ } | undefined;
579
+ fromCrawl?: boolean | undefined;
580
+ };
581
+ html: string;
582
+ }>], z.ZodUnknown>, z.ZodAny>>;
583
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
584
+ }, "strip", z.ZodTypeAny, {
585
+ enabled?: boolean | undefined;
586
+ outputPath?: string | undefined;
587
+ autoSubfolderIndex?: boolean | undefined;
588
+ crawlLinks?: boolean | undefined;
589
+ retryCount?: number | undefined;
590
+ retryDelay?: number | undefined;
591
+ onSuccess?: ((args_0: {
592
+ page: {
593
+ path: string;
594
+ sitemap?: {
595
+ exclude?: boolean | undefined;
596
+ priority?: number | undefined;
597
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
598
+ lastmod?: string | Date | undefined;
599
+ alternateRefs?: {
600
+ href: string;
601
+ hreflang: string;
602
+ }[] | undefined;
603
+ images?: {
604
+ loc: string;
605
+ caption?: string | undefined;
606
+ title?: string | undefined;
607
+ }[] | undefined;
608
+ news?: {
609
+ title: string;
610
+ publication: {
611
+ name: string;
612
+ language: string;
613
+ };
614
+ publicationDate: string | Date;
615
+ } | undefined;
616
+ } | undefined;
617
+ fromCrawl?: boolean | undefined;
618
+ };
619
+ html: string;
620
+ }, ...args: unknown[]) => any) | undefined;
621
+ headers?: Record<string, string> | undefined;
622
+ }, {
623
+ enabled?: boolean | undefined;
624
+ outputPath?: string | undefined;
625
+ autoSubfolderIndex?: boolean | undefined;
626
+ crawlLinks?: boolean | undefined;
627
+ retryCount?: number | undefined;
628
+ retryDelay?: number | undefined;
629
+ onSuccess?: ((args_0: {
630
+ page: {
631
+ path: string;
632
+ sitemap?: {
633
+ exclude?: boolean | undefined;
634
+ priority?: number | undefined;
635
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
636
+ lastmod?: string | Date | undefined;
637
+ alternateRefs?: {
638
+ href: string;
639
+ hreflang: string;
640
+ }[] | undefined;
641
+ images?: {
642
+ loc: string;
643
+ caption?: string | undefined;
644
+ title?: string | undefined;
645
+ }[] | undefined;
646
+ news?: {
647
+ title: string;
648
+ publication: {
649
+ name: string;
650
+ language: string;
651
+ };
652
+ publicationDate: string | Date;
653
+ } | undefined;
654
+ } | undefined;
655
+ fromCrawl?: boolean | undefined;
656
+ };
657
+ html: string;
658
+ }, ...args: unknown[]) => any) | undefined;
659
+ headers?: Record<string, string> | undefined;
660
+ }>>;
661
+ }, "strip", z.ZodTypeAny, {
662
+ path: string;
663
+ sitemap?: {
664
+ exclude?: boolean | undefined;
665
+ priority?: number | undefined;
666
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
667
+ lastmod?: string | Date | undefined;
668
+ alternateRefs?: {
669
+ href: string;
670
+ hreflang: string;
671
+ }[] | undefined;
672
+ images?: {
673
+ loc: string;
674
+ caption?: string | undefined;
675
+ title?: string | undefined;
676
+ }[] | undefined;
677
+ news?: {
678
+ title: string;
679
+ publication: {
680
+ name: string;
681
+ language: string;
682
+ };
683
+ publicationDate: string | Date;
684
+ } | undefined;
685
+ } | undefined;
686
+ fromCrawl?: boolean | undefined;
687
+ prerender?: {
688
+ enabled?: boolean | undefined;
689
+ outputPath?: string | undefined;
690
+ autoSubfolderIndex?: boolean | undefined;
691
+ crawlLinks?: boolean | undefined;
692
+ retryCount?: number | undefined;
693
+ retryDelay?: number | undefined;
694
+ onSuccess?: ((args_0: {
695
+ page: {
696
+ path: string;
697
+ sitemap?: {
698
+ exclude?: boolean | undefined;
699
+ priority?: number | undefined;
700
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
701
+ lastmod?: string | Date | undefined;
702
+ alternateRefs?: {
703
+ href: string;
704
+ hreflang: string;
705
+ }[] | undefined;
706
+ images?: {
707
+ loc: string;
708
+ caption?: string | undefined;
709
+ title?: string | undefined;
710
+ }[] | undefined;
711
+ news?: {
712
+ title: string;
713
+ publication: {
714
+ name: string;
715
+ language: string;
716
+ };
717
+ publicationDate: string | Date;
718
+ } | undefined;
719
+ } | undefined;
720
+ fromCrawl?: boolean | undefined;
721
+ };
722
+ html: string;
723
+ }, ...args: unknown[]) => any) | undefined;
724
+ headers?: Record<string, string> | undefined;
725
+ } | undefined;
726
+ }, {
727
+ path: string;
728
+ sitemap?: {
729
+ exclude?: boolean | undefined;
730
+ priority?: number | undefined;
731
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
732
+ lastmod?: string | Date | undefined;
733
+ alternateRefs?: {
734
+ href: string;
735
+ hreflang: string;
736
+ }[] | undefined;
737
+ images?: {
738
+ loc: string;
739
+ caption?: string | undefined;
740
+ title?: string | undefined;
741
+ }[] | undefined;
742
+ news?: {
743
+ title: string;
744
+ publication: {
745
+ name: string;
746
+ language: string;
747
+ };
748
+ publicationDate: string | Date;
749
+ } | undefined;
750
+ } | undefined;
751
+ fromCrawl?: boolean | undefined;
752
+ prerender?: {
753
+ enabled?: boolean | undefined;
754
+ outputPath?: string | undefined;
755
+ autoSubfolderIndex?: boolean | undefined;
756
+ crawlLinks?: boolean | undefined;
757
+ retryCount?: number | undefined;
758
+ retryDelay?: number | undefined;
759
+ onSuccess?: ((args_0: {
760
+ page: {
761
+ path: string;
762
+ sitemap?: {
763
+ exclude?: boolean | undefined;
764
+ priority?: number | undefined;
765
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
766
+ lastmod?: string | Date | undefined;
767
+ alternateRefs?: {
768
+ href: string;
769
+ hreflang: string;
770
+ }[] | undefined;
771
+ images?: {
772
+ loc: string;
773
+ caption?: string | undefined;
774
+ title?: string | undefined;
775
+ }[] | undefined;
776
+ news?: {
777
+ title: string;
778
+ publication: {
779
+ name: string;
780
+ language: string;
781
+ };
782
+ publicationDate: string | Date;
783
+ } | undefined;
784
+ } | undefined;
785
+ fromCrawl?: boolean | undefined;
786
+ };
787
+ html: string;
788
+ }, ...args: unknown[]) => any) | undefined;
789
+ headers?: Record<string, string> | undefined;
790
+ } | undefined;
791
+ }>, "many">>>;
792
+ sitemap: z.ZodOptional<z.ZodObject<{
793
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
794
+ host: z.ZodOptional<z.ZodString>;
795
+ outputPath: z.ZodDefault<z.ZodOptional<z.ZodString>>;
796
+ }, "strip", z.ZodTypeAny, {
797
+ enabled: boolean;
798
+ outputPath: string;
799
+ host?: string | undefined;
800
+ }, {
801
+ enabled?: boolean | undefined;
802
+ outputPath?: string | undefined;
803
+ host?: string | undefined;
804
+ }>>;
805
+ prerender: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
806
+ enabled: z.ZodOptional<z.ZodBoolean>;
807
+ concurrency: z.ZodOptional<z.ZodNumber>;
808
+ filter: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
809
+ path: z.ZodString;
810
+ sitemap: z.ZodOptional<z.ZodObject<{
811
+ exclude: z.ZodOptional<z.ZodBoolean>;
812
+ priority: z.ZodOptional<z.ZodNumber>;
813
+ changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
814
+ lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
815
+ alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
816
+ href: z.ZodString;
817
+ hreflang: z.ZodString;
818
+ }, "strip", z.ZodTypeAny, {
819
+ href: string;
820
+ hreflang: string;
821
+ }, {
822
+ href: string;
823
+ hreflang: string;
824
+ }>, "many">>;
825
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
826
+ loc: z.ZodString;
827
+ caption: z.ZodOptional<z.ZodString>;
828
+ title: z.ZodOptional<z.ZodString>;
829
+ }, "strip", z.ZodTypeAny, {
830
+ loc: string;
831
+ caption?: string | undefined;
832
+ title?: string | undefined;
833
+ }, {
834
+ loc: string;
835
+ caption?: string | undefined;
836
+ title?: string | undefined;
837
+ }>, "many">>;
838
+ news: z.ZodOptional<z.ZodObject<{
839
+ publication: z.ZodObject<{
840
+ name: z.ZodString;
841
+ language: z.ZodString;
842
+ }, "strip", z.ZodTypeAny, {
843
+ name: string;
844
+ language: string;
845
+ }, {
846
+ name: string;
847
+ language: string;
848
+ }>;
849
+ publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
850
+ title: z.ZodString;
851
+ }, "strip", z.ZodTypeAny, {
852
+ title: string;
853
+ publication: {
854
+ name: string;
855
+ language: string;
856
+ };
857
+ publicationDate: string | Date;
858
+ }, {
859
+ title: string;
860
+ publication: {
861
+ name: string;
862
+ language: string;
863
+ };
864
+ publicationDate: string | Date;
865
+ }>>;
866
+ }, "strip", z.ZodTypeAny, {
867
+ exclude?: boolean | undefined;
868
+ priority?: number | undefined;
869
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
870
+ lastmod?: string | Date | undefined;
871
+ alternateRefs?: {
872
+ href: string;
873
+ hreflang: string;
874
+ }[] | undefined;
875
+ images?: {
876
+ loc: string;
877
+ caption?: string | undefined;
878
+ title?: string | undefined;
879
+ }[] | undefined;
880
+ news?: {
881
+ title: string;
882
+ publication: {
883
+ name: string;
884
+ language: string;
885
+ };
886
+ publicationDate: string | Date;
887
+ } | undefined;
888
+ }, {
889
+ exclude?: boolean | undefined;
890
+ priority?: number | undefined;
891
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
892
+ lastmod?: string | Date | undefined;
893
+ alternateRefs?: {
894
+ href: string;
895
+ hreflang: string;
896
+ }[] | undefined;
897
+ images?: {
898
+ loc: string;
899
+ caption?: string | undefined;
900
+ title?: string | undefined;
901
+ }[] | undefined;
902
+ news?: {
903
+ title: string;
904
+ publication: {
905
+ name: string;
906
+ language: string;
907
+ };
908
+ publicationDate: string | Date;
909
+ } | undefined;
910
+ }>>;
911
+ fromCrawl: z.ZodOptional<z.ZodBoolean>;
912
+ } & {
913
+ prerender: z.ZodOptional<z.ZodObject<{
914
+ enabled: z.ZodOptional<z.ZodBoolean>;
915
+ outputPath: z.ZodOptional<z.ZodString>;
916
+ autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
917
+ crawlLinks: z.ZodOptional<z.ZodBoolean>;
918
+ retryCount: z.ZodOptional<z.ZodNumber>;
919
+ retryDelay: z.ZodOptional<z.ZodNumber>;
920
+ onSuccess: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
921
+ page: z.ZodObject<{
922
+ path: z.ZodString;
923
+ sitemap: z.ZodOptional<z.ZodObject<{
924
+ exclude: z.ZodOptional<z.ZodBoolean>;
925
+ priority: z.ZodOptional<z.ZodNumber>;
926
+ changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
927
+ lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
928
+ alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
929
+ href: z.ZodString;
930
+ hreflang: z.ZodString;
931
+ }, "strip", z.ZodTypeAny, {
932
+ href: string;
933
+ hreflang: string;
934
+ }, {
935
+ href: string;
936
+ hreflang: string;
937
+ }>, "many">>;
938
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
939
+ loc: z.ZodString;
940
+ caption: z.ZodOptional<z.ZodString>;
941
+ title: z.ZodOptional<z.ZodString>;
942
+ }, "strip", z.ZodTypeAny, {
943
+ loc: string;
944
+ caption?: string | undefined;
945
+ title?: string | undefined;
946
+ }, {
947
+ loc: string;
948
+ caption?: string | undefined;
949
+ title?: string | undefined;
950
+ }>, "many">>;
951
+ news: z.ZodOptional<z.ZodObject<{
952
+ publication: z.ZodObject<{
953
+ name: z.ZodString;
954
+ language: z.ZodString;
955
+ }, "strip", z.ZodTypeAny, {
956
+ name: string;
957
+ language: string;
958
+ }, {
959
+ name: string;
960
+ language: string;
961
+ }>;
962
+ publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
963
+ title: z.ZodString;
964
+ }, "strip", z.ZodTypeAny, {
965
+ title: string;
966
+ publication: {
967
+ name: string;
968
+ language: string;
969
+ };
970
+ publicationDate: string | Date;
971
+ }, {
972
+ title: string;
973
+ publication: {
974
+ name: string;
975
+ language: string;
976
+ };
977
+ publicationDate: string | Date;
978
+ }>>;
979
+ }, "strip", z.ZodTypeAny, {
980
+ exclude?: boolean | undefined;
981
+ priority?: number | undefined;
982
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
983
+ lastmod?: string | Date | undefined;
984
+ alternateRefs?: {
985
+ href: string;
986
+ hreflang: string;
987
+ }[] | undefined;
988
+ images?: {
989
+ loc: string;
990
+ caption?: string | undefined;
991
+ title?: string | undefined;
992
+ }[] | undefined;
993
+ news?: {
994
+ title: string;
995
+ publication: {
996
+ name: string;
997
+ language: string;
998
+ };
999
+ publicationDate: string | Date;
1000
+ } | undefined;
1001
+ }, {
1002
+ exclude?: boolean | undefined;
1003
+ priority?: number | undefined;
1004
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1005
+ lastmod?: string | Date | undefined;
1006
+ alternateRefs?: {
1007
+ href: string;
1008
+ hreflang: string;
1009
+ }[] | undefined;
1010
+ images?: {
1011
+ loc: string;
1012
+ caption?: string | undefined;
1013
+ title?: string | undefined;
1014
+ }[] | undefined;
1015
+ news?: {
1016
+ title: string;
1017
+ publication: {
1018
+ name: string;
1019
+ language: string;
1020
+ };
1021
+ publicationDate: string | Date;
1022
+ } | undefined;
1023
+ }>>;
1024
+ fromCrawl: z.ZodOptional<z.ZodBoolean>;
1025
+ }, "strip", z.ZodTypeAny, {
1026
+ path: string;
1027
+ sitemap?: {
1028
+ exclude?: boolean | undefined;
1029
+ priority?: number | undefined;
1030
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1031
+ lastmod?: string | Date | undefined;
1032
+ alternateRefs?: {
1033
+ href: string;
1034
+ hreflang: string;
1035
+ }[] | undefined;
1036
+ images?: {
1037
+ loc: string;
1038
+ caption?: string | undefined;
1039
+ title?: string | undefined;
1040
+ }[] | undefined;
1041
+ news?: {
1042
+ title: string;
1043
+ publication: {
1044
+ name: string;
1045
+ language: string;
1046
+ };
1047
+ publicationDate: string | Date;
1048
+ } | undefined;
1049
+ } | undefined;
1050
+ fromCrawl?: boolean | undefined;
1051
+ }, {
1052
+ path: string;
1053
+ sitemap?: {
1054
+ exclude?: boolean | undefined;
1055
+ priority?: number | undefined;
1056
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1057
+ lastmod?: string | Date | undefined;
1058
+ alternateRefs?: {
1059
+ href: string;
1060
+ hreflang: string;
1061
+ }[] | undefined;
1062
+ images?: {
1063
+ loc: string;
1064
+ caption?: string | undefined;
1065
+ title?: string | undefined;
1066
+ }[] | undefined;
1067
+ news?: {
1068
+ title: string;
1069
+ publication: {
1070
+ name: string;
1071
+ language: string;
1072
+ };
1073
+ publicationDate: string | Date;
1074
+ } | undefined;
1075
+ } | undefined;
1076
+ fromCrawl?: boolean | undefined;
1077
+ }>;
1078
+ html: z.ZodString;
1079
+ }, "strip", z.ZodTypeAny, {
1080
+ page: {
1081
+ path: string;
1082
+ sitemap?: {
1083
+ exclude?: boolean | undefined;
1084
+ priority?: number | undefined;
1085
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1086
+ lastmod?: string | Date | undefined;
1087
+ alternateRefs?: {
1088
+ href: string;
1089
+ hreflang: string;
1090
+ }[] | undefined;
1091
+ images?: {
1092
+ loc: string;
1093
+ caption?: string | undefined;
1094
+ title?: string | undefined;
1095
+ }[] | undefined;
1096
+ news?: {
1097
+ title: string;
1098
+ publication: {
1099
+ name: string;
1100
+ language: string;
1101
+ };
1102
+ publicationDate: string | Date;
1103
+ } | undefined;
1104
+ } | undefined;
1105
+ fromCrawl?: boolean | undefined;
1106
+ };
1107
+ html: string;
1108
+ }, {
1109
+ page: {
1110
+ path: string;
1111
+ sitemap?: {
1112
+ exclude?: boolean | undefined;
1113
+ priority?: number | undefined;
1114
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1115
+ lastmod?: string | Date | undefined;
1116
+ alternateRefs?: {
1117
+ href: string;
1118
+ hreflang: string;
1119
+ }[] | undefined;
1120
+ images?: {
1121
+ loc: string;
1122
+ caption?: string | undefined;
1123
+ title?: string | undefined;
1124
+ }[] | undefined;
1125
+ news?: {
1126
+ title: string;
1127
+ publication: {
1128
+ name: string;
1129
+ language: string;
1130
+ };
1131
+ publicationDate: string | Date;
1132
+ } | undefined;
1133
+ } | undefined;
1134
+ fromCrawl?: boolean | undefined;
1135
+ };
1136
+ html: string;
1137
+ }>], z.ZodUnknown>, z.ZodAny>>;
1138
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1139
+ }, "strip", z.ZodTypeAny, {
1140
+ enabled?: boolean | undefined;
1141
+ outputPath?: string | undefined;
1142
+ autoSubfolderIndex?: boolean | undefined;
1143
+ crawlLinks?: boolean | undefined;
1144
+ retryCount?: number | undefined;
1145
+ retryDelay?: number | undefined;
1146
+ onSuccess?: ((args_0: {
1147
+ page: {
1148
+ path: string;
1149
+ sitemap?: {
1150
+ exclude?: boolean | undefined;
1151
+ priority?: number | undefined;
1152
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1153
+ lastmod?: string | Date | undefined;
1154
+ alternateRefs?: {
1155
+ href: string;
1156
+ hreflang: string;
1157
+ }[] | undefined;
1158
+ images?: {
1159
+ loc: string;
1160
+ caption?: string | undefined;
1161
+ title?: string | undefined;
1162
+ }[] | undefined;
1163
+ news?: {
1164
+ title: string;
1165
+ publication: {
1166
+ name: string;
1167
+ language: string;
1168
+ };
1169
+ publicationDate: string | Date;
1170
+ } | undefined;
1171
+ } | undefined;
1172
+ fromCrawl?: boolean | undefined;
1173
+ };
1174
+ html: string;
1175
+ }, ...args: unknown[]) => any) | undefined;
1176
+ headers?: Record<string, string> | undefined;
1177
+ }, {
1178
+ enabled?: boolean | undefined;
1179
+ outputPath?: string | undefined;
1180
+ autoSubfolderIndex?: boolean | undefined;
1181
+ crawlLinks?: boolean | undefined;
1182
+ retryCount?: number | undefined;
1183
+ retryDelay?: number | undefined;
1184
+ onSuccess?: ((args_0: {
1185
+ page: {
1186
+ path: string;
1187
+ sitemap?: {
1188
+ exclude?: boolean | undefined;
1189
+ priority?: number | undefined;
1190
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1191
+ lastmod?: string | Date | undefined;
1192
+ alternateRefs?: {
1193
+ href: string;
1194
+ hreflang: string;
1195
+ }[] | undefined;
1196
+ images?: {
1197
+ loc: string;
1198
+ caption?: string | undefined;
1199
+ title?: string | undefined;
1200
+ }[] | undefined;
1201
+ news?: {
1202
+ title: string;
1203
+ publication: {
1204
+ name: string;
1205
+ language: string;
1206
+ };
1207
+ publicationDate: string | Date;
1208
+ } | undefined;
1209
+ } | undefined;
1210
+ fromCrawl?: boolean | undefined;
1211
+ };
1212
+ html: string;
1213
+ }, ...args: unknown[]) => any) | undefined;
1214
+ headers?: Record<string, string> | undefined;
1215
+ }>>;
1216
+ }, "strip", z.ZodTypeAny, {
1217
+ path: string;
1218
+ sitemap?: {
1219
+ exclude?: boolean | undefined;
1220
+ priority?: number | undefined;
1221
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1222
+ lastmod?: string | Date | undefined;
1223
+ alternateRefs?: {
1224
+ href: string;
1225
+ hreflang: string;
1226
+ }[] | undefined;
1227
+ images?: {
1228
+ loc: string;
1229
+ caption?: string | undefined;
1230
+ title?: string | undefined;
1231
+ }[] | undefined;
1232
+ news?: {
1233
+ title: string;
1234
+ publication: {
1235
+ name: string;
1236
+ language: string;
1237
+ };
1238
+ publicationDate: string | Date;
1239
+ } | undefined;
1240
+ } | undefined;
1241
+ fromCrawl?: boolean | undefined;
1242
+ prerender?: {
1243
+ enabled?: boolean | undefined;
1244
+ outputPath?: string | undefined;
1245
+ autoSubfolderIndex?: boolean | undefined;
1246
+ crawlLinks?: boolean | undefined;
1247
+ retryCount?: number | undefined;
1248
+ retryDelay?: number | undefined;
1249
+ onSuccess?: ((args_0: {
1250
+ page: {
1251
+ path: string;
1252
+ sitemap?: {
1253
+ exclude?: boolean | undefined;
1254
+ priority?: number | undefined;
1255
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1256
+ lastmod?: string | Date | undefined;
1257
+ alternateRefs?: {
1258
+ href: string;
1259
+ hreflang: string;
1260
+ }[] | undefined;
1261
+ images?: {
1262
+ loc: string;
1263
+ caption?: string | undefined;
1264
+ title?: string | undefined;
1265
+ }[] | undefined;
1266
+ news?: {
1267
+ title: string;
1268
+ publication: {
1269
+ name: string;
1270
+ language: string;
1271
+ };
1272
+ publicationDate: string | Date;
1273
+ } | undefined;
1274
+ } | undefined;
1275
+ fromCrawl?: boolean | undefined;
1276
+ };
1277
+ html: string;
1278
+ }, ...args: unknown[]) => any) | undefined;
1279
+ headers?: Record<string, string> | undefined;
1280
+ } | undefined;
1281
+ }, {
1282
+ path: string;
1283
+ sitemap?: {
1284
+ exclude?: boolean | undefined;
1285
+ priority?: number | undefined;
1286
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1287
+ lastmod?: string | Date | undefined;
1288
+ alternateRefs?: {
1289
+ href: string;
1290
+ hreflang: string;
1291
+ }[] | undefined;
1292
+ images?: {
1293
+ loc: string;
1294
+ caption?: string | undefined;
1295
+ title?: string | undefined;
1296
+ }[] | undefined;
1297
+ news?: {
1298
+ title: string;
1299
+ publication: {
1300
+ name: string;
1301
+ language: string;
1302
+ };
1303
+ publicationDate: string | Date;
1304
+ } | undefined;
1305
+ } | undefined;
1306
+ fromCrawl?: boolean | undefined;
1307
+ prerender?: {
1308
+ enabled?: boolean | undefined;
1309
+ outputPath?: string | undefined;
1310
+ autoSubfolderIndex?: boolean | undefined;
1311
+ crawlLinks?: boolean | undefined;
1312
+ retryCount?: number | undefined;
1313
+ retryDelay?: number | undefined;
1314
+ onSuccess?: ((args_0: {
1315
+ page: {
1316
+ path: string;
1317
+ sitemap?: {
1318
+ exclude?: boolean | undefined;
1319
+ priority?: number | undefined;
1320
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1321
+ lastmod?: string | Date | undefined;
1322
+ alternateRefs?: {
1323
+ href: string;
1324
+ hreflang: string;
1325
+ }[] | undefined;
1326
+ images?: {
1327
+ loc: string;
1328
+ caption?: string | undefined;
1329
+ title?: string | undefined;
1330
+ }[] | undefined;
1331
+ news?: {
1332
+ title: string;
1333
+ publication: {
1334
+ name: string;
1335
+ language: string;
1336
+ };
1337
+ publicationDate: string | Date;
1338
+ } | undefined;
1339
+ } | undefined;
1340
+ fromCrawl?: boolean | undefined;
1341
+ };
1342
+ html: string;
1343
+ }, ...args: unknown[]) => any) | undefined;
1344
+ headers?: Record<string, string> | undefined;
1345
+ } | undefined;
1346
+ }>], z.ZodUnknown>, z.ZodAny>>;
1347
+ failOnError: z.ZodOptional<z.ZodBoolean>;
1348
+ autoStaticPathsDiscovery: z.ZodOptional<z.ZodBoolean>;
1349
+ maxRedirects: z.ZodOptional<z.ZodNumber>;
1350
+ }, "strip", z.ZodTypeAny, {
1351
+ filter?: ((args_0: {
1352
+ path: string;
1353
+ sitemap?: {
1354
+ exclude?: boolean | undefined;
1355
+ priority?: number | undefined;
1356
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1357
+ lastmod?: string | Date | undefined;
1358
+ alternateRefs?: {
1359
+ href: string;
1360
+ hreflang: string;
1361
+ }[] | undefined;
1362
+ images?: {
1363
+ loc: string;
1364
+ caption?: string | undefined;
1365
+ title?: string | undefined;
1366
+ }[] | undefined;
1367
+ news?: {
1368
+ title: string;
1369
+ publication: {
1370
+ name: string;
1371
+ language: string;
1372
+ };
1373
+ publicationDate: string | Date;
1374
+ } | undefined;
1375
+ } | undefined;
1376
+ fromCrawl?: boolean | undefined;
1377
+ prerender?: {
1378
+ enabled?: boolean | undefined;
1379
+ outputPath?: string | undefined;
1380
+ autoSubfolderIndex?: boolean | undefined;
1381
+ crawlLinks?: boolean | undefined;
1382
+ retryCount?: number | undefined;
1383
+ retryDelay?: number | undefined;
1384
+ onSuccess?: ((args_0: {
1385
+ page: {
1386
+ path: string;
1387
+ sitemap?: {
1388
+ exclude?: boolean | undefined;
1389
+ priority?: number | undefined;
1390
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1391
+ lastmod?: string | Date | undefined;
1392
+ alternateRefs?: {
1393
+ href: string;
1394
+ hreflang: string;
1395
+ }[] | undefined;
1396
+ images?: {
1397
+ loc: string;
1398
+ caption?: string | undefined;
1399
+ title?: string | undefined;
1400
+ }[] | undefined;
1401
+ news?: {
1402
+ title: string;
1403
+ publication: {
1404
+ name: string;
1405
+ language: string;
1406
+ };
1407
+ publicationDate: string | Date;
1408
+ } | undefined;
1409
+ } | undefined;
1410
+ fromCrawl?: boolean | undefined;
1411
+ };
1412
+ html: string;
1413
+ }, ...args: unknown[]) => any) | undefined;
1414
+ headers?: Record<string, string> | undefined;
1415
+ } | undefined;
1416
+ }, ...args: unknown[]) => any) | undefined;
1417
+ enabled?: boolean | undefined;
1418
+ concurrency?: number | undefined;
1419
+ failOnError?: boolean | undefined;
1420
+ autoStaticPathsDiscovery?: boolean | undefined;
1421
+ maxRedirects?: number | undefined;
1422
+ }, {
1423
+ filter?: ((args_0: {
1424
+ path: string;
1425
+ sitemap?: {
1426
+ exclude?: boolean | undefined;
1427
+ priority?: number | undefined;
1428
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1429
+ lastmod?: string | Date | undefined;
1430
+ alternateRefs?: {
1431
+ href: string;
1432
+ hreflang: string;
1433
+ }[] | undefined;
1434
+ images?: {
1435
+ loc: string;
1436
+ caption?: string | undefined;
1437
+ title?: string | undefined;
1438
+ }[] | undefined;
1439
+ news?: {
1440
+ title: string;
1441
+ publication: {
1442
+ name: string;
1443
+ language: string;
1444
+ };
1445
+ publicationDate: string | Date;
1446
+ } | undefined;
1447
+ } | undefined;
1448
+ fromCrawl?: boolean | undefined;
1449
+ prerender?: {
1450
+ enabled?: boolean | undefined;
1451
+ outputPath?: string | undefined;
1452
+ autoSubfolderIndex?: boolean | undefined;
1453
+ crawlLinks?: boolean | undefined;
1454
+ retryCount?: number | undefined;
1455
+ retryDelay?: number | undefined;
1456
+ onSuccess?: ((args_0: {
1457
+ page: {
1458
+ path: string;
1459
+ sitemap?: {
1460
+ exclude?: boolean | undefined;
1461
+ priority?: number | undefined;
1462
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1463
+ lastmod?: string | Date | undefined;
1464
+ alternateRefs?: {
1465
+ href: string;
1466
+ hreflang: string;
1467
+ }[] | undefined;
1468
+ images?: {
1469
+ loc: string;
1470
+ caption?: string | undefined;
1471
+ title?: string | undefined;
1472
+ }[] | undefined;
1473
+ news?: {
1474
+ title: string;
1475
+ publication: {
1476
+ name: string;
1477
+ language: string;
1478
+ };
1479
+ publicationDate: string | Date;
1480
+ } | undefined;
1481
+ } | undefined;
1482
+ fromCrawl?: boolean | undefined;
1483
+ };
1484
+ html: string;
1485
+ }, ...args: unknown[]) => any) | undefined;
1486
+ headers?: Record<string, string> | undefined;
1487
+ } | undefined;
1488
+ }, ...args: unknown[]) => any) | undefined;
1489
+ enabled?: boolean | undefined;
1490
+ concurrency?: number | undefined;
1491
+ failOnError?: boolean | undefined;
1492
+ autoStaticPathsDiscovery?: boolean | undefined;
1493
+ maxRedirects?: number | undefined;
1494
+ }>, z.ZodOptional<z.ZodObject<{
1495
+ enabled: z.ZodOptional<z.ZodBoolean>;
1496
+ outputPath: z.ZodOptional<z.ZodString>;
1497
+ autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
1498
+ crawlLinks: z.ZodOptional<z.ZodBoolean>;
1499
+ retryCount: z.ZodOptional<z.ZodNumber>;
1500
+ retryDelay: z.ZodOptional<z.ZodNumber>;
1501
+ onSuccess: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
1502
+ page: z.ZodObject<{
1503
+ path: z.ZodString;
1504
+ sitemap: z.ZodOptional<z.ZodObject<{
1505
+ exclude: z.ZodOptional<z.ZodBoolean>;
1506
+ priority: z.ZodOptional<z.ZodNumber>;
1507
+ changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
1508
+ lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
1509
+ alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
1510
+ href: z.ZodString;
1511
+ hreflang: z.ZodString;
1512
+ }, "strip", z.ZodTypeAny, {
1513
+ href: string;
1514
+ hreflang: string;
1515
+ }, {
1516
+ href: string;
1517
+ hreflang: string;
1518
+ }>, "many">>;
1519
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
1520
+ loc: z.ZodString;
1521
+ caption: z.ZodOptional<z.ZodString>;
1522
+ title: z.ZodOptional<z.ZodString>;
1523
+ }, "strip", z.ZodTypeAny, {
1524
+ loc: string;
1525
+ caption?: string | undefined;
1526
+ title?: string | undefined;
1527
+ }, {
1528
+ loc: string;
1529
+ caption?: string | undefined;
1530
+ title?: string | undefined;
1531
+ }>, "many">>;
1532
+ news: z.ZodOptional<z.ZodObject<{
1533
+ publication: z.ZodObject<{
1534
+ name: z.ZodString;
1535
+ language: z.ZodString;
1536
+ }, "strip", z.ZodTypeAny, {
1537
+ name: string;
1538
+ language: string;
1539
+ }, {
1540
+ name: string;
1541
+ language: string;
1542
+ }>;
1543
+ publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
1544
+ title: z.ZodString;
1545
+ }, "strip", z.ZodTypeAny, {
1546
+ title: string;
1547
+ publication: {
1548
+ name: string;
1549
+ language: string;
1550
+ };
1551
+ publicationDate: string | Date;
1552
+ }, {
1553
+ title: string;
1554
+ publication: {
1555
+ name: string;
1556
+ language: string;
1557
+ };
1558
+ publicationDate: string | Date;
1559
+ }>>;
1560
+ }, "strip", z.ZodTypeAny, {
1561
+ exclude?: boolean | undefined;
1562
+ priority?: number | undefined;
1563
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1564
+ lastmod?: string | Date | undefined;
1565
+ alternateRefs?: {
1566
+ href: string;
1567
+ hreflang: string;
1568
+ }[] | undefined;
1569
+ images?: {
1570
+ loc: string;
1571
+ caption?: string | undefined;
1572
+ title?: string | undefined;
1573
+ }[] | undefined;
1574
+ news?: {
1575
+ title: string;
1576
+ publication: {
1577
+ name: string;
1578
+ language: string;
1579
+ };
1580
+ publicationDate: string | Date;
1581
+ } | undefined;
1582
+ }, {
1583
+ exclude?: boolean | undefined;
1584
+ priority?: number | undefined;
1585
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1586
+ lastmod?: string | Date | undefined;
1587
+ alternateRefs?: {
1588
+ href: string;
1589
+ hreflang: string;
1590
+ }[] | undefined;
1591
+ images?: {
1592
+ loc: string;
1593
+ caption?: string | undefined;
1594
+ title?: string | undefined;
1595
+ }[] | undefined;
1596
+ news?: {
1597
+ title: string;
1598
+ publication: {
1599
+ name: string;
1600
+ language: string;
1601
+ };
1602
+ publicationDate: string | Date;
1603
+ } | undefined;
1604
+ }>>;
1605
+ fromCrawl: z.ZodOptional<z.ZodBoolean>;
1606
+ }, "strip", z.ZodTypeAny, {
1607
+ path: string;
1608
+ sitemap?: {
1609
+ exclude?: boolean | undefined;
1610
+ priority?: number | undefined;
1611
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1612
+ lastmod?: string | Date | undefined;
1613
+ alternateRefs?: {
1614
+ href: string;
1615
+ hreflang: string;
1616
+ }[] | undefined;
1617
+ images?: {
1618
+ loc: string;
1619
+ caption?: string | undefined;
1620
+ title?: string | undefined;
1621
+ }[] | undefined;
1622
+ news?: {
1623
+ title: string;
1624
+ publication: {
1625
+ name: string;
1626
+ language: string;
1627
+ };
1628
+ publicationDate: string | Date;
1629
+ } | undefined;
1630
+ } | undefined;
1631
+ fromCrawl?: boolean | undefined;
1632
+ }, {
1633
+ path: string;
1634
+ sitemap?: {
1635
+ exclude?: boolean | undefined;
1636
+ priority?: number | undefined;
1637
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1638
+ lastmod?: string | Date | undefined;
1639
+ alternateRefs?: {
1640
+ href: string;
1641
+ hreflang: string;
1642
+ }[] | undefined;
1643
+ images?: {
1644
+ loc: string;
1645
+ caption?: string | undefined;
1646
+ title?: string | undefined;
1647
+ }[] | undefined;
1648
+ news?: {
1649
+ title: string;
1650
+ publication: {
1651
+ name: string;
1652
+ language: string;
1653
+ };
1654
+ publicationDate: string | Date;
1655
+ } | undefined;
1656
+ } | undefined;
1657
+ fromCrawl?: boolean | undefined;
1658
+ }>;
1659
+ html: z.ZodString;
1660
+ }, "strip", z.ZodTypeAny, {
1661
+ page: {
1662
+ path: string;
1663
+ sitemap?: {
1664
+ exclude?: boolean | undefined;
1665
+ priority?: number | undefined;
1666
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1667
+ lastmod?: string | Date | undefined;
1668
+ alternateRefs?: {
1669
+ href: string;
1670
+ hreflang: string;
1671
+ }[] | undefined;
1672
+ images?: {
1673
+ loc: string;
1674
+ caption?: string | undefined;
1675
+ title?: string | undefined;
1676
+ }[] | undefined;
1677
+ news?: {
1678
+ title: string;
1679
+ publication: {
1680
+ name: string;
1681
+ language: string;
1682
+ };
1683
+ publicationDate: string | Date;
1684
+ } | undefined;
1685
+ } | undefined;
1686
+ fromCrawl?: boolean | undefined;
1687
+ };
1688
+ html: string;
1689
+ }, {
1690
+ page: {
1691
+ path: string;
1692
+ sitemap?: {
1693
+ exclude?: boolean | undefined;
1694
+ priority?: number | undefined;
1695
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1696
+ lastmod?: string | Date | undefined;
1697
+ alternateRefs?: {
1698
+ href: string;
1699
+ hreflang: string;
1700
+ }[] | undefined;
1701
+ images?: {
1702
+ loc: string;
1703
+ caption?: string | undefined;
1704
+ title?: string | undefined;
1705
+ }[] | undefined;
1706
+ news?: {
1707
+ title: string;
1708
+ publication: {
1709
+ name: string;
1710
+ language: string;
1711
+ };
1712
+ publicationDate: string | Date;
1713
+ } | undefined;
1714
+ } | undefined;
1715
+ fromCrawl?: boolean | undefined;
1716
+ };
1717
+ html: string;
1718
+ }>], z.ZodUnknown>, z.ZodAny>>;
1719
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1720
+ }, "strip", z.ZodTypeAny, {
1721
+ enabled?: boolean | undefined;
1722
+ outputPath?: string | undefined;
1723
+ autoSubfolderIndex?: boolean | undefined;
1724
+ crawlLinks?: boolean | undefined;
1725
+ retryCount?: number | undefined;
1726
+ retryDelay?: number | undefined;
1727
+ onSuccess?: ((args_0: {
1728
+ page: {
1729
+ path: string;
1730
+ sitemap?: {
1731
+ exclude?: boolean | undefined;
1732
+ priority?: number | undefined;
1733
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1734
+ lastmod?: string | Date | undefined;
1735
+ alternateRefs?: {
1736
+ href: string;
1737
+ hreflang: string;
1738
+ }[] | undefined;
1739
+ images?: {
1740
+ loc: string;
1741
+ caption?: string | undefined;
1742
+ title?: string | undefined;
1743
+ }[] | undefined;
1744
+ news?: {
1745
+ title: string;
1746
+ publication: {
1747
+ name: string;
1748
+ language: string;
1749
+ };
1750
+ publicationDate: string | Date;
1751
+ } | undefined;
1752
+ } | undefined;
1753
+ fromCrawl?: boolean | undefined;
1754
+ };
1755
+ html: string;
1756
+ }, ...args: unknown[]) => any) | undefined;
1757
+ headers?: Record<string, string> | undefined;
1758
+ }, {
1759
+ enabled?: boolean | undefined;
1760
+ outputPath?: string | undefined;
1761
+ autoSubfolderIndex?: boolean | undefined;
1762
+ crawlLinks?: boolean | undefined;
1763
+ retryCount?: number | undefined;
1764
+ retryDelay?: number | undefined;
1765
+ onSuccess?: ((args_0: {
1766
+ page: {
1767
+ path: string;
1768
+ sitemap?: {
1769
+ exclude?: boolean | undefined;
1770
+ priority?: number | undefined;
1771
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1772
+ lastmod?: string | Date | undefined;
1773
+ alternateRefs?: {
1774
+ href: string;
1775
+ hreflang: string;
1776
+ }[] | undefined;
1777
+ images?: {
1778
+ loc: string;
1779
+ caption?: string | undefined;
1780
+ title?: string | undefined;
1781
+ }[] | undefined;
1782
+ news?: {
1783
+ title: string;
1784
+ publication: {
1785
+ name: string;
1786
+ language: string;
1787
+ };
1788
+ publicationDate: string | Date;
1789
+ } | undefined;
1790
+ } | undefined;
1791
+ fromCrawl?: boolean | undefined;
1792
+ };
1793
+ html: string;
1794
+ }, ...args: unknown[]) => any) | undefined;
1795
+ headers?: Record<string, string> | undefined;
1796
+ }>>>>;
1797
+ dev: z.ZodDefault<z.ZodOptional<z.ZodObject<{
1798
+ ssrStyles: z.ZodDefault<z.ZodOptional<z.ZodObject<{
1799
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1800
+ basepath: z.ZodOptional<z.ZodString>;
1801
+ }, "strip", z.ZodTypeAny, {
1802
+ enabled: boolean;
1803
+ basepath?: string | undefined;
1804
+ }, {
1805
+ basepath?: string | undefined;
1806
+ enabled?: boolean | undefined;
1807
+ }>>>;
1808
+ }, "strip", z.ZodTypeAny, {
1809
+ ssrStyles: {
1810
+ enabled: boolean;
1811
+ basepath?: string | undefined;
1812
+ };
1813
+ }, {
1814
+ ssrStyles?: {
1815
+ basepath?: string | undefined;
1816
+ enabled?: boolean | undefined;
1817
+ } | undefined;
1818
+ }>>>;
1819
+ spa: z.ZodOptional<z.ZodObject<{
1820
+ enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1821
+ maskPath: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1822
+ prerender: z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodObject<{
1823
+ enabled: z.ZodOptional<z.ZodBoolean>;
1824
+ outputPath: z.ZodOptional<z.ZodString>;
1825
+ autoSubfolderIndex: z.ZodOptional<z.ZodBoolean>;
1826
+ crawlLinks: z.ZodOptional<z.ZodBoolean>;
1827
+ retryCount: z.ZodOptional<z.ZodNumber>;
1828
+ retryDelay: z.ZodOptional<z.ZodNumber>;
1829
+ onSuccess: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
1830
+ page: z.ZodObject<{
1831
+ path: z.ZodString;
1832
+ sitemap: z.ZodOptional<z.ZodObject<{
1833
+ exclude: z.ZodOptional<z.ZodBoolean>;
1834
+ priority: z.ZodOptional<z.ZodNumber>;
1835
+ changefreq: z.ZodOptional<z.ZodEnum<["always", "hourly", "daily", "weekly", "monthly", "yearly", "never"]>>;
1836
+ lastmod: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
1837
+ alternateRefs: z.ZodOptional<z.ZodArray<z.ZodObject<{
1838
+ href: z.ZodString;
1839
+ hreflang: z.ZodString;
1840
+ }, "strip", z.ZodTypeAny, {
1841
+ href: string;
1842
+ hreflang: string;
1843
+ }, {
1844
+ href: string;
1845
+ hreflang: string;
1846
+ }>, "many">>;
1847
+ images: z.ZodOptional<z.ZodArray<z.ZodObject<{
1848
+ loc: z.ZodString;
1849
+ caption: z.ZodOptional<z.ZodString>;
1850
+ title: z.ZodOptional<z.ZodString>;
1851
+ }, "strip", z.ZodTypeAny, {
1852
+ loc: string;
1853
+ caption?: string | undefined;
1854
+ title?: string | undefined;
1855
+ }, {
1856
+ loc: string;
1857
+ caption?: string | undefined;
1858
+ title?: string | undefined;
1859
+ }>, "many">>;
1860
+ news: z.ZodOptional<z.ZodObject<{
1861
+ publication: z.ZodObject<{
1862
+ name: z.ZodString;
1863
+ language: z.ZodString;
1864
+ }, "strip", z.ZodTypeAny, {
1865
+ name: string;
1866
+ language: string;
1867
+ }, {
1868
+ name: string;
1869
+ language: string;
1870
+ }>;
1871
+ publicationDate: z.ZodUnion<[z.ZodString, z.ZodDate]>;
1872
+ title: z.ZodString;
1873
+ }, "strip", z.ZodTypeAny, {
1874
+ title: string;
1875
+ publication: {
1876
+ name: string;
1877
+ language: string;
1878
+ };
1879
+ publicationDate: string | Date;
1880
+ }, {
1881
+ title: string;
1882
+ publication: {
1883
+ name: string;
1884
+ language: string;
1885
+ };
1886
+ publicationDate: string | Date;
1887
+ }>>;
1888
+ }, "strip", z.ZodTypeAny, {
1889
+ exclude?: boolean | undefined;
1890
+ priority?: number | undefined;
1891
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1892
+ lastmod?: string | Date | undefined;
1893
+ alternateRefs?: {
1894
+ href: string;
1895
+ hreflang: string;
1896
+ }[] | undefined;
1897
+ images?: {
1898
+ loc: string;
1899
+ caption?: string | undefined;
1900
+ title?: string | undefined;
1901
+ }[] | undefined;
1902
+ news?: {
1903
+ title: string;
1904
+ publication: {
1905
+ name: string;
1906
+ language: string;
1907
+ };
1908
+ publicationDate: string | Date;
1909
+ } | undefined;
1910
+ }, {
1911
+ exclude?: boolean | undefined;
1912
+ priority?: number | undefined;
1913
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1914
+ lastmod?: string | Date | undefined;
1915
+ alternateRefs?: {
1916
+ href: string;
1917
+ hreflang: string;
1918
+ }[] | undefined;
1919
+ images?: {
1920
+ loc: string;
1921
+ caption?: string | undefined;
1922
+ title?: string | undefined;
1923
+ }[] | undefined;
1924
+ news?: {
1925
+ title: string;
1926
+ publication: {
1927
+ name: string;
1928
+ language: string;
1929
+ };
1930
+ publicationDate: string | Date;
1931
+ } | undefined;
1932
+ }>>;
1933
+ fromCrawl: z.ZodOptional<z.ZodBoolean>;
1934
+ }, "strip", z.ZodTypeAny, {
1935
+ path: string;
1936
+ sitemap?: {
1937
+ exclude?: boolean | undefined;
1938
+ priority?: number | undefined;
1939
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1940
+ lastmod?: string | Date | undefined;
1941
+ alternateRefs?: {
1942
+ href: string;
1943
+ hreflang: string;
1944
+ }[] | undefined;
1945
+ images?: {
1946
+ loc: string;
1947
+ caption?: string | undefined;
1948
+ title?: string | undefined;
1949
+ }[] | undefined;
1950
+ news?: {
1951
+ title: string;
1952
+ publication: {
1953
+ name: string;
1954
+ language: string;
1955
+ };
1956
+ publicationDate: string | Date;
1957
+ } | undefined;
1958
+ } | undefined;
1959
+ fromCrawl?: boolean | undefined;
1960
+ }, {
1961
+ path: string;
1962
+ sitemap?: {
1963
+ exclude?: boolean | undefined;
1964
+ priority?: number | undefined;
1965
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1966
+ lastmod?: string | Date | undefined;
1967
+ alternateRefs?: {
1968
+ href: string;
1969
+ hreflang: string;
1970
+ }[] | undefined;
1971
+ images?: {
1972
+ loc: string;
1973
+ caption?: string | undefined;
1974
+ title?: string | undefined;
1975
+ }[] | undefined;
1976
+ news?: {
1977
+ title: string;
1978
+ publication: {
1979
+ name: string;
1980
+ language: string;
1981
+ };
1982
+ publicationDate: string | Date;
1983
+ } | undefined;
1984
+ } | undefined;
1985
+ fromCrawl?: boolean | undefined;
1986
+ }>;
1987
+ html: z.ZodString;
1988
+ }, "strip", z.ZodTypeAny, {
1989
+ page: {
1990
+ path: string;
1991
+ sitemap?: {
1992
+ exclude?: boolean | undefined;
1993
+ priority?: number | undefined;
1994
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
1995
+ lastmod?: string | Date | undefined;
1996
+ alternateRefs?: {
1997
+ href: string;
1998
+ hreflang: string;
1999
+ }[] | undefined;
2000
+ images?: {
2001
+ loc: string;
2002
+ caption?: string | undefined;
2003
+ title?: string | undefined;
2004
+ }[] | undefined;
2005
+ news?: {
2006
+ title: string;
2007
+ publication: {
2008
+ name: string;
2009
+ language: string;
2010
+ };
2011
+ publicationDate: string | Date;
2012
+ } | undefined;
2013
+ } | undefined;
2014
+ fromCrawl?: boolean | undefined;
2015
+ };
2016
+ html: string;
2017
+ }, {
2018
+ page: {
2019
+ path: string;
2020
+ sitemap?: {
2021
+ exclude?: boolean | undefined;
2022
+ priority?: number | undefined;
2023
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2024
+ lastmod?: string | Date | undefined;
2025
+ alternateRefs?: {
2026
+ href: string;
2027
+ hreflang: string;
2028
+ }[] | undefined;
2029
+ images?: {
2030
+ loc: string;
2031
+ caption?: string | undefined;
2032
+ title?: string | undefined;
2033
+ }[] | undefined;
2034
+ news?: {
2035
+ title: string;
2036
+ publication: {
2037
+ name: string;
2038
+ language: string;
2039
+ };
2040
+ publicationDate: string | Date;
2041
+ } | undefined;
2042
+ } | undefined;
2043
+ fromCrawl?: boolean | undefined;
2044
+ };
2045
+ html: string;
2046
+ }>], z.ZodUnknown>, z.ZodAny>>;
2047
+ headers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2048
+ }, "strip", z.ZodTypeAny, {
2049
+ enabled?: boolean | undefined;
2050
+ outputPath?: string | undefined;
2051
+ autoSubfolderIndex?: boolean | undefined;
2052
+ crawlLinks?: boolean | undefined;
2053
+ retryCount?: number | undefined;
2054
+ retryDelay?: number | undefined;
2055
+ onSuccess?: ((args_0: {
2056
+ page: {
2057
+ path: string;
2058
+ sitemap?: {
2059
+ exclude?: boolean | undefined;
2060
+ priority?: number | undefined;
2061
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2062
+ lastmod?: string | Date | undefined;
2063
+ alternateRefs?: {
2064
+ href: string;
2065
+ hreflang: string;
2066
+ }[] | undefined;
2067
+ images?: {
2068
+ loc: string;
2069
+ caption?: string | undefined;
2070
+ title?: string | undefined;
2071
+ }[] | undefined;
2072
+ news?: {
2073
+ title: string;
2074
+ publication: {
2075
+ name: string;
2076
+ language: string;
2077
+ };
2078
+ publicationDate: string | Date;
2079
+ } | undefined;
2080
+ } | undefined;
2081
+ fromCrawl?: boolean | undefined;
2082
+ };
2083
+ html: string;
2084
+ }, ...args: unknown[]) => any) | undefined;
2085
+ headers?: Record<string, string> | undefined;
2086
+ }, {
2087
+ enabled?: boolean | undefined;
2088
+ outputPath?: string | undefined;
2089
+ autoSubfolderIndex?: boolean | undefined;
2090
+ crawlLinks?: boolean | undefined;
2091
+ retryCount?: number | undefined;
2092
+ retryDelay?: number | undefined;
2093
+ onSuccess?: ((args_0: {
2094
+ page: {
2095
+ path: string;
2096
+ sitemap?: {
2097
+ exclude?: boolean | undefined;
2098
+ priority?: number | undefined;
2099
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2100
+ lastmod?: string | Date | undefined;
2101
+ alternateRefs?: {
2102
+ href: string;
2103
+ hreflang: string;
2104
+ }[] | undefined;
2105
+ images?: {
2106
+ loc: string;
2107
+ caption?: string | undefined;
2108
+ title?: string | undefined;
2109
+ }[] | undefined;
2110
+ news?: {
2111
+ title: string;
2112
+ publication: {
2113
+ name: string;
2114
+ language: string;
2115
+ };
2116
+ publicationDate: string | Date;
2117
+ } | undefined;
2118
+ } | undefined;
2119
+ fromCrawl?: boolean | undefined;
2120
+ };
2121
+ html: string;
2122
+ }, ...args: unknown[]) => any) | undefined;
2123
+ headers?: Record<string, string> | undefined;
2124
+ }>>>, {
2125
+ enabled: boolean;
2126
+ outputPath: string;
2127
+ autoSubfolderIndex?: boolean | undefined;
2128
+ crawlLinks: boolean;
2129
+ retryCount: number;
2130
+ retryDelay?: number | undefined;
2131
+ onSuccess?: ((args_0: {
2132
+ page: {
2133
+ path: string;
2134
+ sitemap?: {
2135
+ exclude?: boolean | undefined;
2136
+ priority?: number | undefined;
2137
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2138
+ lastmod?: string | Date | undefined;
2139
+ alternateRefs?: {
2140
+ href: string;
2141
+ hreflang: string;
2142
+ }[] | undefined;
2143
+ images?: {
2144
+ loc: string;
2145
+ caption?: string | undefined;
2146
+ title?: string | undefined;
2147
+ }[] | undefined;
2148
+ news?: {
2149
+ title: string;
2150
+ publication: {
2151
+ name: string;
2152
+ language: string;
2153
+ };
2154
+ publicationDate: string | Date;
2155
+ } | undefined;
2156
+ } | undefined;
2157
+ fromCrawl?: boolean | undefined;
2158
+ };
2159
+ html: string;
2160
+ }, ...args: unknown[]) => any) | undefined;
2161
+ headers?: Record<string, string> | undefined;
2162
+ }, {
2163
+ enabled?: boolean | undefined;
2164
+ outputPath?: string | undefined;
2165
+ autoSubfolderIndex?: boolean | undefined;
2166
+ crawlLinks?: boolean | undefined;
2167
+ retryCount?: number | undefined;
2168
+ retryDelay?: number | undefined;
2169
+ onSuccess?: ((args_0: {
2170
+ page: {
2171
+ path: string;
2172
+ sitemap?: {
2173
+ exclude?: boolean | undefined;
2174
+ priority?: number | undefined;
2175
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2176
+ lastmod?: string | Date | undefined;
2177
+ alternateRefs?: {
2178
+ href: string;
2179
+ hreflang: string;
2180
+ }[] | undefined;
2181
+ images?: {
2182
+ loc: string;
2183
+ caption?: string | undefined;
2184
+ title?: string | undefined;
2185
+ }[] | undefined;
2186
+ news?: {
2187
+ title: string;
2188
+ publication: {
2189
+ name: string;
2190
+ language: string;
2191
+ };
2192
+ publicationDate: string | Date;
2193
+ } | undefined;
2194
+ } | undefined;
2195
+ fromCrawl?: boolean | undefined;
2196
+ };
2197
+ html: string;
2198
+ }, ...args: unknown[]) => any) | undefined;
2199
+ headers?: Record<string, string> | undefined;
2200
+ } | undefined>;
2201
+ }, "strip", z.ZodTypeAny, {
2202
+ enabled: boolean;
2203
+ prerender: {
2204
+ enabled: boolean;
2205
+ outputPath: string;
2206
+ autoSubfolderIndex?: boolean | undefined;
2207
+ crawlLinks: boolean;
2208
+ retryCount: number;
2209
+ retryDelay?: number | undefined;
2210
+ onSuccess?: ((args_0: {
2211
+ page: {
2212
+ path: string;
2213
+ sitemap?: {
2214
+ exclude?: boolean | undefined;
2215
+ priority?: number | undefined;
2216
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2217
+ lastmod?: string | Date | undefined;
2218
+ alternateRefs?: {
2219
+ href: string;
2220
+ hreflang: string;
2221
+ }[] | undefined;
2222
+ images?: {
2223
+ loc: string;
2224
+ caption?: string | undefined;
2225
+ title?: string | undefined;
2226
+ }[] | undefined;
2227
+ news?: {
2228
+ title: string;
2229
+ publication: {
2230
+ name: string;
2231
+ language: string;
2232
+ };
2233
+ publicationDate: string | Date;
2234
+ } | undefined;
2235
+ } | undefined;
2236
+ fromCrawl?: boolean | undefined;
2237
+ };
2238
+ html: string;
2239
+ }, ...args: unknown[]) => any) | undefined;
2240
+ headers?: Record<string, string> | undefined;
2241
+ };
2242
+ maskPath: string;
2243
+ }, {
2244
+ enabled?: boolean | undefined;
2245
+ prerender?: {
2246
+ enabled?: boolean | undefined;
2247
+ outputPath?: string | undefined;
2248
+ autoSubfolderIndex?: boolean | undefined;
2249
+ crawlLinks?: boolean | undefined;
2250
+ retryCount?: number | undefined;
2251
+ retryDelay?: number | undefined;
2252
+ onSuccess?: ((args_0: {
2253
+ page: {
2254
+ path: string;
2255
+ sitemap?: {
2256
+ exclude?: boolean | undefined;
2257
+ priority?: number | undefined;
2258
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2259
+ lastmod?: string | Date | undefined;
2260
+ alternateRefs?: {
2261
+ href: string;
2262
+ hreflang: string;
2263
+ }[] | undefined;
2264
+ images?: {
2265
+ loc: string;
2266
+ caption?: string | undefined;
2267
+ title?: string | undefined;
2268
+ }[] | undefined;
2269
+ news?: {
2270
+ title: string;
2271
+ publication: {
2272
+ name: string;
2273
+ language: string;
2274
+ };
2275
+ publicationDate: string | Date;
2276
+ } | undefined;
2277
+ } | undefined;
2278
+ fromCrawl?: boolean | undefined;
2279
+ };
2280
+ html: string;
2281
+ }, ...args: unknown[]) => any) | undefined;
2282
+ headers?: Record<string, string> | undefined;
2283
+ } | undefined;
2284
+ maskPath?: string | undefined;
2285
+ }>>;
2286
+ importProtection: z.ZodOptional<z.ZodObject<{
2287
+ enabled: z.ZodOptional<z.ZodBoolean>;
2288
+ behavior: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["error", "mock"]>, z.ZodObject<{
2289
+ dev: z.ZodOptional<z.ZodEnum<["error", "mock"]>>;
2290
+ build: z.ZodOptional<z.ZodEnum<["error", "mock"]>>;
2291
+ }, "strip", z.ZodTypeAny, {
2292
+ build?: "error" | "mock" | undefined;
2293
+ dev?: "error" | "mock" | undefined;
2294
+ }, {
2295
+ build?: "error" | "mock" | undefined;
2296
+ dev?: "error" | "mock" | undefined;
2297
+ }>]>>;
2298
+ mockAccess: z.ZodOptional<z.ZodEnum<["error", "warn", "off"]>>;
2299
+ onViolation: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodAny], z.ZodUnknown>, z.ZodUnion<[z.ZodBoolean, z.ZodVoid, z.ZodPromise<z.ZodUnion<[z.ZodBoolean, z.ZodVoid]>>]>>>;
2300
+ include: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodType<RegExp, z.ZodTypeDef, RegExp>]>, "many">>;
2301
+ exclude: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodType<RegExp, z.ZodTypeDef, RegExp>]>, "many">>;
2302
+ client: z.ZodOptional<z.ZodObject<{
2303
+ specifiers: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodType<RegExp, z.ZodTypeDef, RegExp>]>, "many">>;
2304
+ files: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodType<RegExp, z.ZodTypeDef, RegExp>]>, "many">>;
2305
+ excludeFiles: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodType<RegExp, z.ZodTypeDef, RegExp>]>, "many">>;
2306
+ }, "strip", z.ZodTypeAny, {
2307
+ specifiers?: (string | RegExp)[] | undefined;
2308
+ files?: (string | RegExp)[] | undefined;
2309
+ excludeFiles?: (string | RegExp)[] | undefined;
2310
+ }, {
2311
+ specifiers?: (string | RegExp)[] | undefined;
2312
+ files?: (string | RegExp)[] | undefined;
2313
+ excludeFiles?: (string | RegExp)[] | undefined;
2314
+ }>>;
2315
+ server: z.ZodOptional<z.ZodObject<{
2316
+ specifiers: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodType<RegExp, z.ZodTypeDef, RegExp>]>, "many">>;
2317
+ files: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodType<RegExp, z.ZodTypeDef, RegExp>]>, "many">>;
2318
+ excludeFiles: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodType<RegExp, z.ZodTypeDef, RegExp>]>, "many">>;
2319
+ }, "strip", z.ZodTypeAny, {
2320
+ specifiers?: (string | RegExp)[] | undefined;
2321
+ files?: (string | RegExp)[] | undefined;
2322
+ excludeFiles?: (string | RegExp)[] | undefined;
2323
+ }, {
2324
+ specifiers?: (string | RegExp)[] | undefined;
2325
+ files?: (string | RegExp)[] | undefined;
2326
+ excludeFiles?: (string | RegExp)[] | undefined;
2327
+ }>>;
2328
+ ignoreImporters: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodType<RegExp, z.ZodTypeDef, RegExp>]>, "many">>;
2329
+ maxTraceDepth: z.ZodOptional<z.ZodNumber>;
2330
+ log: z.ZodOptional<z.ZodEnum<["once", "always"]>>;
2331
+ }, "strip", z.ZodTypeAny, {
2332
+ client?: {
2333
+ specifiers?: (string | RegExp)[] | undefined;
2334
+ files?: (string | RegExp)[] | undefined;
2335
+ excludeFiles?: (string | RegExp)[] | undefined;
2336
+ } | undefined;
2337
+ server?: {
2338
+ specifiers?: (string | RegExp)[] | undefined;
2339
+ files?: (string | RegExp)[] | undefined;
2340
+ excludeFiles?: (string | RegExp)[] | undefined;
2341
+ } | undefined;
2342
+ exclude?: (string | RegExp)[] | undefined;
2343
+ enabled?: boolean | undefined;
2344
+ behavior?: "error" | "mock" | {
2345
+ build?: "error" | "mock" | undefined;
2346
+ dev?: "error" | "mock" | undefined;
2347
+ } | undefined;
2348
+ mockAccess?: "error" | "warn" | "off" | undefined;
2349
+ onViolation?: ((args_0: any, ...args: unknown[]) => boolean | void | Promise<boolean | void>) | undefined;
2350
+ include?: (string | RegExp)[] | undefined;
2351
+ ignoreImporters?: (string | RegExp)[] | undefined;
2352
+ maxTraceDepth?: number | undefined;
2353
+ log?: "always" | "once" | undefined;
2354
+ }, {
2355
+ client?: {
2356
+ specifiers?: (string | RegExp)[] | undefined;
2357
+ files?: (string | RegExp)[] | undefined;
2358
+ excludeFiles?: (string | RegExp)[] | undefined;
2359
+ } | undefined;
2360
+ server?: {
2361
+ specifiers?: (string | RegExp)[] | undefined;
2362
+ files?: (string | RegExp)[] | undefined;
2363
+ excludeFiles?: (string | RegExp)[] | undefined;
2364
+ } | undefined;
2365
+ exclude?: (string | RegExp)[] | undefined;
2366
+ enabled?: boolean | undefined;
2367
+ behavior?: "error" | "mock" | {
2368
+ build?: "error" | "mock" | undefined;
2369
+ dev?: "error" | "mock" | undefined;
2370
+ } | undefined;
2371
+ mockAccess?: "error" | "warn" | "off" | undefined;
2372
+ onViolation?: ((args_0: any, ...args: unknown[]) => boolean | void | Promise<boolean | void>) | undefined;
2373
+ include?: (string | RegExp)[] | undefined;
2374
+ ignoreImporters?: (string | RegExp)[] | undefined;
2375
+ maxTraceDepth?: number | undefined;
2376
+ log?: "always" | "once" | undefined;
2377
+ }>>;
2378
+ } & {
2379
+ vite: z.ZodOptional<z.ZodObject<{
2380
+ installDevServerMiddleware: z.ZodOptional<z.ZodBoolean>;
2381
+ }, "strip", z.ZodTypeAny, {
2382
+ installDevServerMiddleware?: boolean | undefined;
2383
+ }, {
2384
+ installDevServerMiddleware?: boolean | undefined;
2385
+ }>>;
2386
+ }, "strip", z.ZodTypeAny, {
2387
+ client: {
2388
+ base: string;
2389
+ entry?: string | undefined;
2390
+ };
2391
+ server: {
2392
+ build: {
2393
+ staticNodeEnv: boolean;
2394
+ };
2395
+ entry?: string | undefined;
2396
+ };
2397
+ srcDirectory: string;
2398
+ start: {
2399
+ entry?: string | undefined;
2400
+ };
2401
+ router: {
2402
+ entry?: string | undefined;
2403
+ basepath?: string | undefined;
2404
+ } & {
2405
+ virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
2406
+ routeFilePrefix?: string | undefined;
2407
+ routeFileIgnorePrefix?: string | undefined;
2408
+ routeFileIgnorePattern?: string | undefined;
2409
+ routesDirectory?: string | undefined;
2410
+ quoteStyle?: "single" | "double" | undefined;
2411
+ semicolons?: boolean | undefined;
2412
+ disableLogging?: boolean | undefined;
2413
+ routeTreeFileHeader?: string[] | undefined;
2414
+ indexToken?: string | RegExp | {
2415
+ regex: string;
2416
+ flags?: string | undefined;
2417
+ } | undefined;
2418
+ routeToken?: string | RegExp | {
2419
+ regex: string;
2420
+ flags?: string | undefined;
2421
+ } | undefined;
2422
+ pathParamsAllowedCharacters?: (";" | ":" | "@" | "&" | "=" | "+" | "$" | ",")[] | undefined;
2423
+ generatedRouteTree?: string | undefined;
2424
+ disableTypes?: boolean | undefined;
2425
+ addExtensions?: string | boolean | undefined;
2426
+ enableRouteTreeFormatting?: boolean | undefined;
2427
+ routeTreeFileFooter?: string[] | ((...args: unknown[]) => string[]) | undefined;
2428
+ customScaffolding?: {
2429
+ routeTemplate?: string | undefined;
2430
+ lazyRouteTemplate?: string | undefined;
2431
+ } | undefined;
2432
+ experimental?: {
2433
+ enableCodeSplitting?: boolean | undefined;
2434
+ } | undefined;
2435
+ plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
2436
+ tmpDir?: string | undefined;
2437
+ importRoutesUsingAbsolutePaths?: boolean | undefined;
2438
+ enableRouteGeneration?: boolean | undefined;
2439
+ codeSplittingOptions?: import('@tanstack/router-plugin').CodeSplittingOptions | undefined;
2440
+ plugin?: {
2441
+ hmr?: {
2442
+ hotExpression?: string | undefined;
2443
+ } | undefined;
2444
+ vite?: {
2445
+ environmentName?: string | undefined;
2446
+ } | undefined;
2447
+ } | undefined;
2448
+ };
2449
+ serverFns: {
2450
+ base: string;
2451
+ generateFunctionId?: ((args_0: {
2452
+ filename: string;
2453
+ functionName: string;
2454
+ }, ...args: unknown[]) => string | undefined) | undefined;
2455
+ };
2456
+ pages: {
2457
+ path: string;
2458
+ sitemap?: {
2459
+ exclude?: boolean | undefined;
2460
+ priority?: number | undefined;
2461
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2462
+ lastmod?: string | Date | undefined;
2463
+ alternateRefs?: {
2464
+ href: string;
2465
+ hreflang: string;
2466
+ }[] | undefined;
2467
+ images?: {
2468
+ loc: string;
2469
+ caption?: string | undefined;
2470
+ title?: string | undefined;
2471
+ }[] | undefined;
2472
+ news?: {
2473
+ title: string;
2474
+ publication: {
2475
+ name: string;
2476
+ language: string;
2477
+ };
2478
+ publicationDate: string | Date;
2479
+ } | undefined;
2480
+ } | undefined;
2481
+ fromCrawl?: boolean | undefined;
2482
+ prerender?: {
2483
+ enabled?: boolean | undefined;
2484
+ outputPath?: string | undefined;
2485
+ autoSubfolderIndex?: boolean | undefined;
2486
+ crawlLinks?: boolean | undefined;
2487
+ retryCount?: number | undefined;
2488
+ retryDelay?: number | undefined;
2489
+ onSuccess?: ((args_0: {
2490
+ page: {
2491
+ path: string;
2492
+ sitemap?: {
2493
+ exclude?: boolean | undefined;
2494
+ priority?: number | undefined;
2495
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2496
+ lastmod?: string | Date | undefined;
2497
+ alternateRefs?: {
2498
+ href: string;
2499
+ hreflang: string;
2500
+ }[] | undefined;
2501
+ images?: {
2502
+ loc: string;
2503
+ caption?: string | undefined;
2504
+ title?: string | undefined;
2505
+ }[] | undefined;
2506
+ news?: {
2507
+ title: string;
2508
+ publication: {
2509
+ name: string;
2510
+ language: string;
2511
+ };
2512
+ publicationDate: string | Date;
2513
+ } | undefined;
2514
+ } | undefined;
2515
+ fromCrawl?: boolean | undefined;
2516
+ };
2517
+ html: string;
2518
+ }, ...args: unknown[]) => any) | undefined;
2519
+ headers?: Record<string, string> | undefined;
2520
+ } | undefined;
2521
+ }[];
2522
+ dev: {
2523
+ ssrStyles: {
2524
+ enabled: boolean;
2525
+ basepath?: string | undefined;
2526
+ };
2527
+ };
2528
+ sitemap?: {
2529
+ enabled: boolean;
2530
+ outputPath: string;
2531
+ host?: string | undefined;
2532
+ } | undefined;
2533
+ prerender?: ({
2534
+ filter?: ((args_0: {
2535
+ path: string;
2536
+ sitemap?: {
2537
+ exclude?: boolean | undefined;
2538
+ priority?: number | undefined;
2539
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2540
+ lastmod?: string | Date | undefined;
2541
+ alternateRefs?: {
2542
+ href: string;
2543
+ hreflang: string;
2544
+ }[] | undefined;
2545
+ images?: {
2546
+ loc: string;
2547
+ caption?: string | undefined;
2548
+ title?: string | undefined;
2549
+ }[] | undefined;
2550
+ news?: {
2551
+ title: string;
2552
+ publication: {
2553
+ name: string;
2554
+ language: string;
2555
+ };
2556
+ publicationDate: string | Date;
2557
+ } | undefined;
2558
+ } | undefined;
2559
+ fromCrawl?: boolean | undefined;
2560
+ prerender?: {
2561
+ enabled?: boolean | undefined;
2562
+ outputPath?: string | undefined;
2563
+ autoSubfolderIndex?: boolean | undefined;
2564
+ crawlLinks?: boolean | undefined;
2565
+ retryCount?: number | undefined;
2566
+ retryDelay?: number | undefined;
2567
+ onSuccess?: ((args_0: {
2568
+ page: {
2569
+ path: string;
2570
+ sitemap?: {
2571
+ exclude?: boolean | undefined;
2572
+ priority?: number | undefined;
2573
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2574
+ lastmod?: string | Date | undefined;
2575
+ alternateRefs?: {
2576
+ href: string;
2577
+ hreflang: string;
2578
+ }[] | undefined;
2579
+ images?: {
2580
+ loc: string;
2581
+ caption?: string | undefined;
2582
+ title?: string | undefined;
2583
+ }[] | undefined;
2584
+ news?: {
2585
+ title: string;
2586
+ publication: {
2587
+ name: string;
2588
+ language: string;
2589
+ };
2590
+ publicationDate: string | Date;
2591
+ } | undefined;
2592
+ } | undefined;
2593
+ fromCrawl?: boolean | undefined;
2594
+ };
2595
+ html: string;
2596
+ }, ...args: unknown[]) => any) | undefined;
2597
+ headers?: Record<string, string> | undefined;
2598
+ } | undefined;
2599
+ }, ...args: unknown[]) => any) | undefined;
2600
+ enabled?: boolean | undefined;
2601
+ concurrency?: number | undefined;
2602
+ failOnError?: boolean | undefined;
2603
+ autoStaticPathsDiscovery?: boolean | undefined;
2604
+ maxRedirects?: number | undefined;
2605
+ } & {
2606
+ enabled?: boolean | undefined;
2607
+ outputPath?: string | undefined;
2608
+ autoSubfolderIndex?: boolean | undefined;
2609
+ crawlLinks?: boolean | undefined;
2610
+ retryCount?: number | undefined;
2611
+ retryDelay?: number | undefined;
2612
+ onSuccess?: ((args_0: {
2613
+ page: {
2614
+ path: string;
2615
+ sitemap?: {
2616
+ exclude?: boolean | undefined;
2617
+ priority?: number | undefined;
2618
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2619
+ lastmod?: string | Date | undefined;
2620
+ alternateRefs?: {
2621
+ href: string;
2622
+ hreflang: string;
2623
+ }[] | undefined;
2624
+ images?: {
2625
+ loc: string;
2626
+ caption?: string | undefined;
2627
+ title?: string | undefined;
2628
+ }[] | undefined;
2629
+ news?: {
2630
+ title: string;
2631
+ publication: {
2632
+ name: string;
2633
+ language: string;
2634
+ };
2635
+ publicationDate: string | Date;
2636
+ } | undefined;
2637
+ } | undefined;
2638
+ fromCrawl?: boolean | undefined;
2639
+ };
2640
+ html: string;
2641
+ }, ...args: unknown[]) => any) | undefined;
2642
+ headers?: Record<string, string> | undefined;
2643
+ }) | undefined;
2644
+ spa?: {
2645
+ enabled: boolean;
2646
+ prerender: {
2647
+ enabled: boolean;
2648
+ outputPath: string;
2649
+ autoSubfolderIndex?: boolean | undefined;
2650
+ crawlLinks: boolean;
2651
+ retryCount: number;
2652
+ retryDelay?: number | undefined;
2653
+ onSuccess?: ((args_0: {
2654
+ page: {
2655
+ path: string;
2656
+ sitemap?: {
2657
+ exclude?: boolean | undefined;
2658
+ priority?: number | undefined;
2659
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2660
+ lastmod?: string | Date | undefined;
2661
+ alternateRefs?: {
2662
+ href: string;
2663
+ hreflang: string;
2664
+ }[] | undefined;
2665
+ images?: {
2666
+ loc: string;
2667
+ caption?: string | undefined;
2668
+ title?: string | undefined;
2669
+ }[] | undefined;
2670
+ news?: {
2671
+ title: string;
2672
+ publication: {
2673
+ name: string;
2674
+ language: string;
2675
+ };
2676
+ publicationDate: string | Date;
2677
+ } | undefined;
2678
+ } | undefined;
2679
+ fromCrawl?: boolean | undefined;
2680
+ };
2681
+ html: string;
2682
+ }, ...args: unknown[]) => any) | undefined;
2683
+ headers?: Record<string, string> | undefined;
2684
+ };
2685
+ maskPath: string;
2686
+ } | undefined;
2687
+ importProtection?: {
2688
+ client?: {
2689
+ specifiers?: (string | RegExp)[] | undefined;
2690
+ files?: (string | RegExp)[] | undefined;
2691
+ excludeFiles?: (string | RegExp)[] | undefined;
2692
+ } | undefined;
2693
+ server?: {
2694
+ specifiers?: (string | RegExp)[] | undefined;
2695
+ files?: (string | RegExp)[] | undefined;
2696
+ excludeFiles?: (string | RegExp)[] | undefined;
2697
+ } | undefined;
2698
+ exclude?: (string | RegExp)[] | undefined;
2699
+ enabled?: boolean | undefined;
2700
+ behavior?: "error" | "mock" | {
2701
+ build?: "error" | "mock" | undefined;
2702
+ dev?: "error" | "mock" | undefined;
2703
+ } | undefined;
2704
+ mockAccess?: "error" | "warn" | "off" | undefined;
2705
+ onViolation?: ((args_0: any, ...args: unknown[]) => boolean | void | Promise<boolean | void>) | undefined;
2706
+ include?: (string | RegExp)[] | undefined;
2707
+ ignoreImporters?: (string | RegExp)[] | undefined;
2708
+ maxTraceDepth?: number | undefined;
2709
+ log?: "always" | "once" | undefined;
2710
+ } | undefined;
2711
+ vite?: {
2712
+ installDevServerMiddleware?: boolean | undefined;
2713
+ } | undefined;
2714
+ }, {
2715
+ client?: {
2716
+ entry?: string | undefined;
2717
+ base?: string | undefined;
2718
+ } | undefined;
2719
+ server?: {
2720
+ entry?: string | undefined;
2721
+ build?: {
2722
+ staticNodeEnv?: boolean | undefined;
2723
+ } | undefined;
2724
+ } | undefined;
2725
+ srcDirectory?: string | undefined;
2726
+ start?: {
2727
+ entry?: string | undefined;
2728
+ } | undefined;
2729
+ router?: ({
2730
+ entry?: string | undefined;
2731
+ basepath?: string | undefined;
2732
+ } & {
2733
+ virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
2734
+ routeFilePrefix?: string | undefined;
2735
+ routeFileIgnorePrefix?: string | undefined;
2736
+ routeFileIgnorePattern?: string | undefined;
2737
+ routesDirectory?: string | undefined;
2738
+ quoteStyle?: "single" | "double" | undefined;
2739
+ semicolons?: boolean | undefined;
2740
+ disableLogging?: boolean | undefined;
2741
+ routeTreeFileHeader?: string[] | undefined;
2742
+ indexToken?: string | RegExp | {
2743
+ regex: string;
2744
+ flags?: string | undefined;
2745
+ } | undefined;
2746
+ routeToken?: string | RegExp | {
2747
+ regex: string;
2748
+ flags?: string | undefined;
2749
+ } | undefined;
2750
+ pathParamsAllowedCharacters?: (";" | ":" | "@" | "&" | "=" | "+" | "$" | ",")[] | undefined;
2751
+ generatedRouteTree?: string | undefined;
2752
+ disableTypes?: boolean | undefined;
2753
+ addExtensions?: string | boolean | undefined;
2754
+ enableRouteTreeFormatting?: boolean | undefined;
2755
+ routeTreeFileFooter?: string[] | ((...args: unknown[]) => string[]) | undefined;
2756
+ customScaffolding?: {
2757
+ routeTemplate?: string | undefined;
2758
+ lazyRouteTemplate?: string | undefined;
2759
+ } | undefined;
2760
+ experimental?: {
2761
+ enableCodeSplitting?: boolean | undefined;
2762
+ } | undefined;
2763
+ plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
2764
+ tmpDir?: string | undefined;
2765
+ importRoutesUsingAbsolutePaths?: boolean | undefined;
2766
+ enableRouteGeneration?: boolean | undefined;
2767
+ codeSplittingOptions?: import('@tanstack/router-plugin').CodeSplittingOptions | undefined;
2768
+ plugin?: {
2769
+ hmr?: {
2770
+ hotExpression?: string | undefined;
2771
+ } | undefined;
2772
+ vite?: {
2773
+ environmentName?: string | undefined;
2774
+ } | undefined;
2775
+ } | undefined;
2776
+ }) | undefined;
2777
+ serverFns?: {
2778
+ base?: string | undefined;
2779
+ generateFunctionId?: ((args_0: {
2780
+ filename: string;
2781
+ functionName: string;
2782
+ }, ...args: unknown[]) => string | undefined) | undefined;
2783
+ } | undefined;
2784
+ sitemap?: {
2785
+ enabled?: boolean | undefined;
2786
+ outputPath?: string | undefined;
2787
+ host?: string | undefined;
2788
+ } | undefined;
2789
+ prerender?: ({
2790
+ filter?: ((args_0: {
2791
+ path: string;
2792
+ sitemap?: {
2793
+ exclude?: boolean | undefined;
2794
+ priority?: number | undefined;
2795
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2796
+ lastmod?: string | Date | undefined;
2797
+ alternateRefs?: {
2798
+ href: string;
2799
+ hreflang: string;
2800
+ }[] | undefined;
2801
+ images?: {
2802
+ loc: string;
2803
+ caption?: string | undefined;
2804
+ title?: string | undefined;
2805
+ }[] | undefined;
2806
+ news?: {
2807
+ title: string;
2808
+ publication: {
2809
+ name: string;
2810
+ language: string;
2811
+ };
2812
+ publicationDate: string | Date;
2813
+ } | undefined;
2814
+ } | undefined;
2815
+ fromCrawl?: boolean | undefined;
2816
+ prerender?: {
2817
+ enabled?: boolean | undefined;
2818
+ outputPath?: string | undefined;
2819
+ autoSubfolderIndex?: boolean | undefined;
2820
+ crawlLinks?: boolean | undefined;
2821
+ retryCount?: number | undefined;
2822
+ retryDelay?: number | undefined;
2823
+ onSuccess?: ((args_0: {
2824
+ page: {
2825
+ path: string;
2826
+ sitemap?: {
2827
+ exclude?: boolean | undefined;
2828
+ priority?: number | undefined;
2829
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2830
+ lastmod?: string | Date | undefined;
2831
+ alternateRefs?: {
2832
+ href: string;
2833
+ hreflang: string;
2834
+ }[] | undefined;
2835
+ images?: {
2836
+ loc: string;
2837
+ caption?: string | undefined;
2838
+ title?: string | undefined;
2839
+ }[] | undefined;
2840
+ news?: {
2841
+ title: string;
2842
+ publication: {
2843
+ name: string;
2844
+ language: string;
2845
+ };
2846
+ publicationDate: string | Date;
2847
+ } | undefined;
2848
+ } | undefined;
2849
+ fromCrawl?: boolean | undefined;
2850
+ };
2851
+ html: string;
2852
+ }, ...args: unknown[]) => any) | undefined;
2853
+ headers?: Record<string, string> | undefined;
2854
+ } | undefined;
2855
+ }, ...args: unknown[]) => any) | undefined;
2856
+ enabled?: boolean | undefined;
2857
+ concurrency?: number | undefined;
2858
+ failOnError?: boolean | undefined;
2859
+ autoStaticPathsDiscovery?: boolean | undefined;
2860
+ maxRedirects?: number | undefined;
2861
+ } & {
2862
+ enabled?: boolean | undefined;
2863
+ outputPath?: string | undefined;
2864
+ autoSubfolderIndex?: boolean | undefined;
2865
+ crawlLinks?: boolean | undefined;
2866
+ retryCount?: number | undefined;
2867
+ retryDelay?: number | undefined;
2868
+ onSuccess?: ((args_0: {
2869
+ page: {
2870
+ path: string;
2871
+ sitemap?: {
2872
+ exclude?: boolean | undefined;
2873
+ priority?: number | undefined;
2874
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2875
+ lastmod?: string | Date | undefined;
2876
+ alternateRefs?: {
2877
+ href: string;
2878
+ hreflang: string;
2879
+ }[] | undefined;
2880
+ images?: {
2881
+ loc: string;
2882
+ caption?: string | undefined;
2883
+ title?: string | undefined;
2884
+ }[] | undefined;
2885
+ news?: {
2886
+ title: string;
2887
+ publication: {
2888
+ name: string;
2889
+ language: string;
2890
+ };
2891
+ publicationDate: string | Date;
2892
+ } | undefined;
2893
+ } | undefined;
2894
+ fromCrawl?: boolean | undefined;
2895
+ };
2896
+ html: string;
2897
+ }, ...args: unknown[]) => any) | undefined;
2898
+ headers?: Record<string, string> | undefined;
2899
+ }) | undefined;
2900
+ pages?: {
2901
+ path: string;
2902
+ sitemap?: {
2903
+ exclude?: boolean | undefined;
2904
+ priority?: number | undefined;
2905
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2906
+ lastmod?: string | Date | undefined;
2907
+ alternateRefs?: {
2908
+ href: string;
2909
+ hreflang: string;
2910
+ }[] | undefined;
2911
+ images?: {
2912
+ loc: string;
2913
+ caption?: string | undefined;
2914
+ title?: string | undefined;
2915
+ }[] | undefined;
2916
+ news?: {
2917
+ title: string;
2918
+ publication: {
2919
+ name: string;
2920
+ language: string;
2921
+ };
2922
+ publicationDate: string | Date;
2923
+ } | undefined;
2924
+ } | undefined;
2925
+ fromCrawl?: boolean | undefined;
2926
+ prerender?: {
2927
+ enabled?: boolean | undefined;
2928
+ outputPath?: string | undefined;
2929
+ autoSubfolderIndex?: boolean | undefined;
2930
+ crawlLinks?: boolean | undefined;
2931
+ retryCount?: number | undefined;
2932
+ retryDelay?: number | undefined;
2933
+ onSuccess?: ((args_0: {
2934
+ page: {
2935
+ path: string;
2936
+ sitemap?: {
2937
+ exclude?: boolean | undefined;
2938
+ priority?: number | undefined;
2939
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2940
+ lastmod?: string | Date | undefined;
2941
+ alternateRefs?: {
2942
+ href: string;
2943
+ hreflang: string;
2944
+ }[] | undefined;
2945
+ images?: {
2946
+ loc: string;
2947
+ caption?: string | undefined;
2948
+ title?: string | undefined;
2949
+ }[] | undefined;
2950
+ news?: {
2951
+ title: string;
2952
+ publication: {
2953
+ name: string;
2954
+ language: string;
2955
+ };
2956
+ publicationDate: string | Date;
2957
+ } | undefined;
2958
+ } | undefined;
2959
+ fromCrawl?: boolean | undefined;
2960
+ };
2961
+ html: string;
2962
+ }, ...args: unknown[]) => any) | undefined;
2963
+ headers?: Record<string, string> | undefined;
2964
+ } | undefined;
2965
+ }[] | undefined;
2966
+ dev?: {
2967
+ ssrStyles?: {
2968
+ basepath?: string | undefined;
2969
+ enabled?: boolean | undefined;
2970
+ } | undefined;
2971
+ } | undefined;
2972
+ spa?: {
2973
+ enabled?: boolean | undefined;
2974
+ prerender?: {
2975
+ enabled?: boolean | undefined;
2976
+ outputPath?: string | undefined;
2977
+ autoSubfolderIndex?: boolean | undefined;
2978
+ crawlLinks?: boolean | undefined;
2979
+ retryCount?: number | undefined;
2980
+ retryDelay?: number | undefined;
2981
+ onSuccess?: ((args_0: {
2982
+ page: {
2983
+ path: string;
2984
+ sitemap?: {
2985
+ exclude?: boolean | undefined;
2986
+ priority?: number | undefined;
2987
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
2988
+ lastmod?: string | Date | undefined;
2989
+ alternateRefs?: {
2990
+ href: string;
2991
+ hreflang: string;
2992
+ }[] | undefined;
2993
+ images?: {
2994
+ loc: string;
2995
+ caption?: string | undefined;
2996
+ title?: string | undefined;
2997
+ }[] | undefined;
2998
+ news?: {
2999
+ title: string;
3000
+ publication: {
3001
+ name: string;
3002
+ language: string;
3003
+ };
3004
+ publicationDate: string | Date;
3005
+ } | undefined;
3006
+ } | undefined;
3007
+ fromCrawl?: boolean | undefined;
3008
+ };
3009
+ html: string;
3010
+ }, ...args: unknown[]) => any) | undefined;
3011
+ headers?: Record<string, string> | undefined;
3012
+ } | undefined;
3013
+ maskPath?: string | undefined;
3014
+ } | undefined;
3015
+ importProtection?: {
3016
+ client?: {
3017
+ specifiers?: (string | RegExp)[] | undefined;
3018
+ files?: (string | RegExp)[] | undefined;
3019
+ excludeFiles?: (string | RegExp)[] | undefined;
3020
+ } | undefined;
3021
+ server?: {
3022
+ specifiers?: (string | RegExp)[] | undefined;
3023
+ files?: (string | RegExp)[] | undefined;
3024
+ excludeFiles?: (string | RegExp)[] | undefined;
3025
+ } | undefined;
3026
+ exclude?: (string | RegExp)[] | undefined;
3027
+ enabled?: boolean | undefined;
3028
+ behavior?: "error" | "mock" | {
3029
+ build?: "error" | "mock" | undefined;
3030
+ dev?: "error" | "mock" | undefined;
3031
+ } | undefined;
3032
+ mockAccess?: "error" | "warn" | "off" | undefined;
3033
+ onViolation?: ((args_0: any, ...args: unknown[]) => boolean | void | Promise<boolean | void>) | undefined;
3034
+ include?: (string | RegExp)[] | undefined;
3035
+ ignoreImporters?: (string | RegExp)[] | undefined;
3036
+ maxTraceDepth?: number | undefined;
3037
+ log?: "always" | "once" | undefined;
3038
+ } | undefined;
3039
+ vite?: {
3040
+ installDevServerMiddleware?: boolean | undefined;
3041
+ } | undefined;
3042
+ }>>>;
3043
+ export declare function parseStartConfig(opts: z.input<typeof tanstackStartViteOptionsSchema>, corePluginOpts: {
3044
+ framework: CompileStartFrameworkOptions;
3045
+ }, root: string): {
3046
+ router: {
3047
+ target: CompileStartFrameworkOptions;
3048
+ routeFileIgnorePrefix: string;
3049
+ routesDirectory: string;
3050
+ quoteStyle: "single" | "double";
3051
+ semicolons: boolean;
3052
+ disableLogging: boolean;
3053
+ routeTreeFileHeader: string[];
3054
+ indexToken: string | RegExp | {
3055
+ regex: string;
3056
+ flags?: string | undefined;
3057
+ };
3058
+ routeToken: string | RegExp | {
3059
+ regex: string;
3060
+ flags?: string | undefined;
3061
+ };
3062
+ generatedRouteTree: string;
3063
+ disableTypes: boolean;
3064
+ addExtensions: string | boolean;
3065
+ enableRouteTreeFormatting: boolean;
3066
+ tmpDir: string;
3067
+ importRoutesUsingAbsolutePaths: boolean;
3068
+ enableRouteGeneration?: boolean | undefined;
3069
+ codeSplittingOptions?: import('@tanstack/router-plugin').CodeSplittingOptions | undefined;
3070
+ plugin?: {
3071
+ hmr?: {
3072
+ hotExpression?: string | undefined;
3073
+ } | undefined;
3074
+ vite?: {
3075
+ environmentName?: string | undefined;
3076
+ } | undefined;
3077
+ } | undefined;
3078
+ virtualRouteConfig?: string | import('@tanstack/virtual-file-routes').VirtualRootRoute | undefined;
3079
+ routeFilePrefix?: string | undefined;
3080
+ routeFileIgnorePattern?: string | undefined;
3081
+ pathParamsAllowedCharacters?: (";" | ":" | "@" | "&" | "=" | "+" | "$" | ",")[] | undefined;
3082
+ verboseFileRoutes?: boolean | undefined;
3083
+ routeTreeFileFooter?: string[] | ((...args: unknown[]) => string[]) | undefined;
3084
+ autoCodeSplitting?: boolean | undefined;
3085
+ customScaffolding?: {
3086
+ routeTemplate?: string | undefined;
3087
+ lazyRouteTemplate?: string | undefined;
3088
+ } | undefined;
3089
+ experimental?: {
3090
+ enableCodeSplitting?: boolean | undefined;
3091
+ } | undefined;
3092
+ plugins?: import('@tanstack/router-generator').GeneratorPlugin[] | undefined;
3093
+ entry?: string | undefined;
3094
+ basepath?: string | undefined;
3095
+ };
3096
+ client: {
3097
+ base: string;
3098
+ entry?: string | undefined;
3099
+ };
3100
+ server: {
3101
+ build: {
3102
+ staticNodeEnv: boolean;
3103
+ };
3104
+ entry?: string | undefined;
3105
+ };
3106
+ srcDirectory: string;
3107
+ start: {
3108
+ entry?: string | undefined;
3109
+ };
3110
+ serverFns: {
3111
+ base: string;
3112
+ generateFunctionId?: ((args_0: {
3113
+ filename: string;
3114
+ functionName: string;
3115
+ }, ...args: unknown[]) => string | undefined) | undefined;
3116
+ };
3117
+ pages: {
3118
+ path: string;
3119
+ sitemap?: {
3120
+ exclude?: boolean | undefined;
3121
+ priority?: number | undefined;
3122
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
3123
+ lastmod?: string | Date | undefined;
3124
+ alternateRefs?: {
3125
+ href: string;
3126
+ hreflang: string;
3127
+ }[] | undefined;
3128
+ images?: {
3129
+ loc: string;
3130
+ caption?: string | undefined;
3131
+ title?: string | undefined;
3132
+ }[] | undefined;
3133
+ news?: {
3134
+ title: string;
3135
+ publication: {
3136
+ name: string;
3137
+ language: string;
3138
+ };
3139
+ publicationDate: string | Date;
3140
+ } | undefined;
3141
+ } | undefined;
3142
+ fromCrawl?: boolean | undefined;
3143
+ prerender?: {
3144
+ enabled?: boolean | undefined;
3145
+ outputPath?: string | undefined;
3146
+ autoSubfolderIndex?: boolean | undefined;
3147
+ crawlLinks?: boolean | undefined;
3148
+ retryCount?: number | undefined;
3149
+ retryDelay?: number | undefined;
3150
+ onSuccess?: ((args_0: {
3151
+ page: {
3152
+ path: string;
3153
+ sitemap?: {
3154
+ exclude?: boolean | undefined;
3155
+ priority?: number | undefined;
3156
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
3157
+ lastmod?: string | Date | undefined;
3158
+ alternateRefs?: {
3159
+ href: string;
3160
+ hreflang: string;
3161
+ }[] | undefined;
3162
+ images?: {
3163
+ loc: string;
3164
+ caption?: string | undefined;
3165
+ title?: 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
+ html: string;
3179
+ }, ...args: unknown[]) => any) | undefined;
3180
+ headers?: Record<string, string> | undefined;
3181
+ } | undefined;
3182
+ }[];
3183
+ dev: {
3184
+ ssrStyles: {
3185
+ enabled: boolean;
3186
+ basepath?: string | undefined;
3187
+ };
3188
+ };
3189
+ sitemap?: {
3190
+ enabled: boolean;
3191
+ outputPath: string;
3192
+ host?: string | undefined;
3193
+ } | undefined;
3194
+ prerender?: ({
3195
+ filter?: ((args_0: {
3196
+ path: string;
3197
+ sitemap?: {
3198
+ exclude?: boolean | undefined;
3199
+ priority?: number | undefined;
3200
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
3201
+ lastmod?: string | Date | undefined;
3202
+ alternateRefs?: {
3203
+ href: string;
3204
+ hreflang: string;
3205
+ }[] | undefined;
3206
+ images?: {
3207
+ loc: string;
3208
+ caption?: string | undefined;
3209
+ title?: string | undefined;
3210
+ }[] | undefined;
3211
+ news?: {
3212
+ title: string;
3213
+ publication: {
3214
+ name: string;
3215
+ language: string;
3216
+ };
3217
+ publicationDate: string | Date;
3218
+ } | undefined;
3219
+ } | undefined;
3220
+ fromCrawl?: boolean | undefined;
3221
+ prerender?: {
3222
+ enabled?: boolean | undefined;
3223
+ outputPath?: string | undefined;
3224
+ autoSubfolderIndex?: boolean | undefined;
3225
+ crawlLinks?: boolean | undefined;
3226
+ retryCount?: number | undefined;
3227
+ retryDelay?: number | undefined;
3228
+ onSuccess?: ((args_0: {
3229
+ page: {
3230
+ path: string;
3231
+ sitemap?: {
3232
+ exclude?: boolean | undefined;
3233
+ priority?: number | undefined;
3234
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
3235
+ lastmod?: string | Date | undefined;
3236
+ alternateRefs?: {
3237
+ href: string;
3238
+ hreflang: string;
3239
+ }[] | undefined;
3240
+ images?: {
3241
+ loc: string;
3242
+ caption?: string | undefined;
3243
+ title?: string | undefined;
3244
+ }[] | undefined;
3245
+ news?: {
3246
+ title: string;
3247
+ publication: {
3248
+ name: string;
3249
+ language: string;
3250
+ };
3251
+ publicationDate: string | Date;
3252
+ } | undefined;
3253
+ } | undefined;
3254
+ fromCrawl?: boolean | undefined;
3255
+ };
3256
+ html: string;
3257
+ }, ...args: unknown[]) => any) | undefined;
3258
+ headers?: Record<string, string> | undefined;
3259
+ } | undefined;
3260
+ }, ...args: unknown[]) => any) | undefined;
3261
+ enabled?: boolean | undefined;
3262
+ concurrency?: number | undefined;
3263
+ failOnError?: boolean | undefined;
3264
+ autoStaticPathsDiscovery?: boolean | undefined;
3265
+ maxRedirects?: number | undefined;
3266
+ } & {
3267
+ enabled?: boolean | undefined;
3268
+ outputPath?: string | undefined;
3269
+ autoSubfolderIndex?: boolean | undefined;
3270
+ crawlLinks?: boolean | undefined;
3271
+ retryCount?: number | undefined;
3272
+ retryDelay?: number | undefined;
3273
+ onSuccess?: ((args_0: {
3274
+ page: {
3275
+ path: string;
3276
+ sitemap?: {
3277
+ exclude?: boolean | undefined;
3278
+ priority?: number | undefined;
3279
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
3280
+ lastmod?: string | Date | undefined;
3281
+ alternateRefs?: {
3282
+ href: string;
3283
+ hreflang: string;
3284
+ }[] | undefined;
3285
+ images?: {
3286
+ loc: string;
3287
+ caption?: string | undefined;
3288
+ title?: string | undefined;
3289
+ }[] | undefined;
3290
+ news?: {
3291
+ title: string;
3292
+ publication: {
3293
+ name: string;
3294
+ language: string;
3295
+ };
3296
+ publicationDate: string | Date;
3297
+ } | undefined;
3298
+ } | undefined;
3299
+ fromCrawl?: boolean | undefined;
3300
+ };
3301
+ html: string;
3302
+ }, ...args: unknown[]) => any) | undefined;
3303
+ headers?: Record<string, string> | undefined;
3304
+ }) | undefined;
3305
+ spa?: {
3306
+ enabled: boolean;
3307
+ prerender: {
3308
+ enabled: boolean;
3309
+ outputPath: string;
3310
+ autoSubfolderIndex?: boolean | undefined;
3311
+ crawlLinks: boolean;
3312
+ retryCount: number;
3313
+ retryDelay?: number | undefined;
3314
+ onSuccess?: ((args_0: {
3315
+ page: {
3316
+ path: string;
3317
+ sitemap?: {
3318
+ exclude?: boolean | undefined;
3319
+ priority?: number | undefined;
3320
+ changefreq?: "never" | "always" | "hourly" | "daily" | "weekly" | "monthly" | "yearly" | undefined;
3321
+ lastmod?: string | Date | undefined;
3322
+ alternateRefs?: {
3323
+ href: string;
3324
+ hreflang: string;
3325
+ }[] | undefined;
3326
+ images?: {
3327
+ loc: string;
3328
+ caption?: string | undefined;
3329
+ title?: string | undefined;
3330
+ }[] | undefined;
3331
+ news?: {
3332
+ title: string;
3333
+ publication: {
3334
+ name: string;
3335
+ language: string;
3336
+ };
3337
+ publicationDate: string | Date;
3338
+ } | undefined;
3339
+ } | undefined;
3340
+ fromCrawl?: boolean | undefined;
3341
+ };
3342
+ html: string;
3343
+ }, ...args: unknown[]) => any) | undefined;
3344
+ headers?: Record<string, string> | undefined;
3345
+ };
3346
+ maskPath: string;
3347
+ } | undefined;
3348
+ importProtection?: {
3349
+ client?: {
3350
+ specifiers?: (string | RegExp)[] | undefined;
3351
+ files?: (string | RegExp)[] | undefined;
3352
+ excludeFiles?: (string | RegExp)[] | undefined;
3353
+ } | undefined;
3354
+ server?: {
3355
+ specifiers?: (string | RegExp)[] | undefined;
3356
+ files?: (string | RegExp)[] | undefined;
3357
+ excludeFiles?: (string | RegExp)[] | undefined;
3358
+ } | undefined;
3359
+ exclude?: (string | RegExp)[] | undefined;
3360
+ enabled?: boolean | undefined;
3361
+ behavior?: "error" | "mock" | {
3362
+ build?: "error" | "mock" | undefined;
3363
+ dev?: "error" | "mock" | undefined;
3364
+ } | undefined;
3365
+ mockAccess?: "error" | "warn" | "off" | undefined;
3366
+ onViolation?: ((args_0: any, ...args: unknown[]) => boolean | void | Promise<boolean | void>) | undefined;
3367
+ include?: (string | RegExp)[] | undefined;
3368
+ ignoreImporters?: (string | RegExp)[] | undefined;
3369
+ maxTraceDepth?: number | undefined;
3370
+ log?: "always" | "once" | undefined;
3371
+ } | undefined;
3372
+ };
3373
+ export type TanStackStartViteInputConfig = z.input<typeof tanstackStartViteOptionsSchema>;