@sveltejs/kit 2.7.1 → 2.7.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/types/index.d.ts CHANGED
@@ -5,7 +5,7 @@ declare module '@sveltejs/kit' {
5
5
  import type { CompileOptions } from 'svelte/compiler';
6
6
  import type { PluginOptions } from '@sveltejs/vite-plugin-svelte';
7
7
  /**
8
- * [Adapters](https://kit.svelte.dev/docs/adapters) are responsible for taking the production build and turning it into something that can be deployed to a platform of your choosing.
8
+ * [Adapters](https://svelte.dev/docs/kit/adapters) are responsible for taking the production build and turning it into something that can be deployed to a platform of your choosing.
9
9
  */
10
10
  export interface Adapter {
11
11
  /**
@@ -61,12 +61,11 @@ declare module '@sveltejs/kit' {
61
61
  [uniqueSymbol]: true; // necessary or else UnpackValidationError could wrongly unpack objects with the same shape as ActionFailure
62
62
  }
63
63
 
64
- type UnpackValidationError<T> =
65
- T extends ActionFailure<infer X>
66
- ? X
67
- : T extends void
68
- ? undefined // needs to be undefined, because void will corrupt union type
69
- : T;
64
+ type UnpackValidationError<T> = T extends ActionFailure<infer X>
65
+ ? X
66
+ : T extends void
67
+ ? undefined // needs to be undefined, because void will corrupt union type
68
+ : T;
70
69
 
71
70
  /**
72
71
  * This object is passed to the `adapt` function of adapters.
@@ -111,7 +110,7 @@ declare module '@sveltejs/kit' {
111
110
  generateEnvModule(): void;
112
111
 
113
112
  /**
114
- * Generate a server-side manifest to initialise the SvelteKit [server](https://kit.svelte.dev/docs/types#public-types-server) with.
113
+ * Generate a server-side manifest to initialise the SvelteKit [server](https://svelte.dev/docs/kit/@sveltejs-kit#Server) with.
115
114
  * @param opts a relative path to the base directory of the app and optionally in which format (esm or cjs) the manifest should be generated
116
115
  */
117
116
  generateManifest(opts: { relativePath: string; routes?: RouteDefinition[] }): string;
@@ -172,7 +171,7 @@ declare module '@sveltejs/kit' {
172
171
 
173
172
  export interface Config {
174
173
  /**
175
- * Options passed to [`svelte.compile`](https://svelte.dev/docs#compile-time-svelte-compile).
174
+ * Options passed to [`svelte.compile`](https://svelte.dev/docs/svelte/svelte-compiler#CompileOptions).
176
175
  * @default {}
177
176
  */
178
177
  compilerOptions?: CompileOptions;
@@ -261,7 +260,7 @@ declare module '@sveltejs/kit' {
261
260
 
262
261
  export interface KitConfig {
263
262
  /**
264
- * Your [adapter](https://kit.svelte.dev/docs/adapters) is run when executing `vite build`. It determines how the output is converted for different platforms.
263
+ * Your [adapter](https://svelte.dev/docs/kit/adapters) is run when executing `vite build`. It determines how the output is converted for different platforms.
265
264
  * @default undefined
266
265
  */
267
266
  adapter?: Adapter;
@@ -289,9 +288,9 @@ declare module '@sveltejs/kit' {
289
288
  * };
290
289
  * ```
291
290
  *
292
- * > The built-in `$lib` alias is controlled by `config.kit.files.lib` as it is used for packaging.
291
+ * > [!NOTE] The built-in `$lib` alias is controlled by `config.kit.files.lib` as it is used for packaging.
293
292
  *
294
- * > You will need to run `npm run dev` to have SvelteKit automatically generate the required alias configuration in `jsconfig.json` or `tsconfig.json`.
293
+ * > [!NOTE] You will need to run `npm run dev` to have SvelteKit automatically generate the required alias configuration in `jsconfig.json` or `tsconfig.json`.
295
294
  * @default {}
296
295
  */
297
296
  alias?: Record<string, string>;
@@ -332,11 +331,11 @@ declare module '@sveltejs/kit' {
332
331
  *
333
332
  * When pages are prerendered, the CSP header is added via a `<meta http-equiv>` tag (note that in this case, `frame-ancestors`, `report-uri` and `sandbox` directives will be ignored).
334
333
  *
335
- * > When `mode` is `'auto'`, SvelteKit will use nonces for dynamically rendered pages and hashes for prerendered pages. Using nonces with prerendered pages is insecure and therefore forbidden.
334
+ * > [!NOTE] When `mode` is `'auto'`, SvelteKit will use nonces for dynamically rendered pages and hashes for prerendered pages. Using nonces with prerendered pages is insecure and therefore forbidden.
336
335
  *
337
- * > Note that most [Svelte transitions](https://svelte.dev/tutorial/transition) work by creating an inline `<style>` element. If you use these in your app, you must either leave the `style-src` directive unspecified or add `unsafe-inline`.
336
+ * > [!NOTE] Note that most [Svelte transitions](https://svelte.dev/tutorial/svelte/transition) work by creating an inline `<style>` element. If you use these in your app, you must either leave the `style-src` directive unspecified or add `unsafe-inline`.
338
337
  *
339
- * If this level of configuration is insufficient and you have more dynamic requirements, you can use the [`handle` hook](https://kit.svelte.dev/docs/hooks#server-hooks-handle) to roll your own CSP.
338
+ * If this level of configuration is insufficient and you have more dynamic requirements, you can use the [`handle` hook](https://svelte.dev/docs/kit/hooks#Server-hooks-handle) to roll your own CSP.
340
339
  */
341
340
  csp?: {
342
341
  /**
@@ -380,12 +379,12 @@ declare module '@sveltejs/kit' {
380
379
  */
381
380
  dir?: string;
382
381
  /**
383
- * A prefix that signals that an environment variable is safe to expose to client-side code. See [`$env/static/public`](https://kit.svelte.dev/docs/modules#$env-static-public) and [`$env/dynamic/public`](https://kit.svelte.dev/docs/modules#$env-dynamic-public). Note that Vite's [`envPrefix`](https://vitejs.dev/config/shared-options.html#envprefix) must be set separately if you are using Vite's environment variable handling - though use of that feature should generally be unnecessary.
382
+ * A prefix that signals that an environment variable is safe to expose to client-side code. See [`$env/static/public`](https://svelte.dev/docs/kit/$env-static-public) and [`$env/dynamic/public`](https://svelte.dev/docs/kit/$env-dynamic-public). Note that Vite's [`envPrefix`](https://vitejs.dev/config/shared-options.html#envprefix) must be set separately if you are using Vite's environment variable handling - though use of that feature should generally be unnecessary.
384
383
  * @default "PUBLIC_"
385
384
  */
386
385
  publicPrefix?: string;
387
386
  /**
388
- * A prefix that signals that an environment variable is unsafe to expose to client-side code. Environment variables matching neither the public nor the private prefix will be discarded completely. See [`$env/static/private`](https://kit.svelte.dev/docs/modules#$env-static-private) and [`$env/dynamic/private`](https://kit.svelte.dev/docs/modules#$env-dynamic-private).
387
+ * A prefix that signals that an environment variable is unsafe to expose to client-side code. Environment variables matching neither the public nor the private prefix will be discarded completely. See [`$env/static/private`](https://svelte.dev/docs/kit/$env-static-private) and [`$env/dynamic/private`](https://svelte.dev/docs/kit/$env-dynamic-private).
389
388
  * @default ""
390
389
  * @since 1.21.0
391
390
  */
@@ -402,17 +401,17 @@ declare module '@sveltejs/kit' {
402
401
  assets?: string;
403
402
  hooks?: {
404
403
  /**
405
- * The location of your client [hooks](https://kit.svelte.dev/docs/hooks).
404
+ * The location of your client [hooks](https://svelte.dev/docs/kit/hooks).
406
405
  * @default "src/hooks.client"
407
406
  */
408
407
  client?: string;
409
408
  /**
410
- * The location of your server [hooks](https://kit.svelte.dev/docs/hooks).
409
+ * The location of your server [hooks](https://svelte.dev/docs/kit/hooks).
411
410
  * @default "src/hooks.server"
412
411
  */
413
412
  server?: string;
414
413
  /**
415
- * The location of your universal [hooks](https://kit.svelte.dev/docs/hooks).
414
+ * The location of your universal [hooks](https://svelte.dev/docs/kit/hooks).
416
415
  * @default "src/hooks"
417
416
  * @since 2.3.0
418
417
  */
@@ -424,17 +423,17 @@ declare module '@sveltejs/kit' {
424
423
  */
425
424
  lib?: string;
426
425
  /**
427
- * a directory containing [parameter matchers](https://kit.svelte.dev/docs/advanced-routing#matching)
426
+ * a directory containing [parameter matchers](https://svelte.dev/docs/kit/advanced-routing#matching)
428
427
  * @default "src/params"
429
428
  */
430
429
  params?: string;
431
430
  /**
432
- * the files that define the structure of your app (see [Routing](https://kit.svelte.dev/docs/routing))
431
+ * the files that define the structure of your app (see [Routing](https://svelte.dev/docs/kit/routing))
433
432
  * @default "src/routes"
434
433
  */
435
434
  routes?: string;
436
435
  /**
437
- * the location of your service worker's entry point (see [Service workers](https://kit.svelte.dev/docs/service-workers))
436
+ * the location of your service worker's entry point (see [Service workers](https://svelte.dev/docs/kit/service-workers))
438
437
  * @default "src/service-worker"
439
438
  */
440
439
  serviceWorker?: string;
@@ -452,7 +451,7 @@ declare module '@sveltejs/kit' {
452
451
  /**
453
452
  * Inline CSS inside a `<style>` block at the head of the HTML. This option is a number that specifies the maximum length of a CSS file in UTF-16 code units, as specified by the [String.length](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/length) property, to be inlined. All CSS files needed for the page and smaller than this value are merged and inlined in a `<style>` block.
454
453
  *
455
- * > This results in fewer initial requests and can improve your [First Contentful Paint](https://web.dev/first-contentful-paint) score. However, it generates larger HTML output and reduces the effectiveness of browser caches. Use it advisedly.
454
+ * > [!NOTE] This results in fewer initial requests and can improve your [First Contentful Paint](https://web.dev/first-contentful-paint) score. However, it generates larger HTML output and reduces the effectiveness of browser caches. Use it advisedly.
456
455
  * @default 0
457
456
  */
458
457
  inlineStyleThreshold?: number;
@@ -488,7 +487,7 @@ declare module '@sveltejs/kit' {
488
487
  */
489
488
  assets?: '' | `http://${string}` | `https://${string}`;
490
489
  /**
491
- * A root-relative path that must start, but not end with `/` (e.g. `/base-path`), unless it is the empty string. This specifies where your app is served from and allows the app to live on a non-root path. Note that you need to prepend all your root-relative links with the base value or they will point to the root of your domain, not your `base` (this is how the browser works). You can use [`base` from `$app/paths`](https://kit.svelte.dev/docs/modules#$app-paths-base) for that: `<a href="{base}/your-page">Link</a>`. If you find yourself writing this often, it may make sense to extract this into a reusable component.
490
+ * A root-relative path that must start, but not end with `/` (e.g. `/base-path`), unless it is the empty string. This specifies where your app is served from and allows the app to live on a non-root path. Note that you need to prepend all your root-relative links with the base value or they will point to the root of your domain, not your `base` (this is how the browser works). You can use [`base` from `$app/paths`](https://svelte.dev/docs/kit/$app-paths#base) for that: `<a href="{base}/your-page">Link</a>`. If you find yourself writing this often, it may make sense to extract this into a reusable component.
492
491
  * @default ""
493
492
  */
494
493
  base?: '' | `/${string}`;
@@ -498,7 +497,7 @@ declare module '@sveltejs/kit' {
498
497
  * If `true`, `base` and `assets` imported from `$app/paths` will be replaced with relative asset paths during server-side rendering, resulting in more portable HTML.
499
498
  * If `false`, `%sveltekit.assets%` and references to build artifacts will always be root-relative paths, unless `paths.assets` is an external URL
500
499
  *
501
- * [Single-page app](https://kit.svelte.dev/docs/single-page-apps) fallback pages will always use absolute paths, regardless of this setting.
500
+ * [Single-page app](https://svelte.dev/docs/kit/single-page-apps) fallback pages will always use absolute paths, regardless of this setting.
502
501
  *
503
502
  * If your app uses a `<base>` element, you should set this to `false`, otherwise asset URLs will incorrectly be resolved against the `<base>` URL rather than the current page.
504
503
  *
@@ -510,7 +509,7 @@ declare module '@sveltejs/kit' {
510
509
  relative?: boolean;
511
510
  };
512
511
  /**
513
- * See [Prerendering](https://kit.svelte.dev/docs/page-options#prerender).
512
+ * See [Prerendering](https://svelte.dev/docs/kit/page-options#prerender).
514
513
  */
515
514
  prerender?: {
516
515
  /**
@@ -630,7 +629,7 @@ declare module '@sveltejs/kit' {
630
629
  * </script>
631
630
  * ```
632
631
  *
633
- * If you set `pollInterval` to a non-zero value, SvelteKit will poll for new versions in the background and set the value of the [`updated`](https://kit.svelte.dev/docs/modules#$app-stores-updated) store to `true` when it detects one.
632
+ * If you set `pollInterval` to a non-zero value, SvelteKit will poll for new versions in the background and set the value of the [`updated`](https://svelte.dev/docs/kit/$app-stores#updated) store to `true` when it detects one.
634
633
  */
635
634
  version?: {
636
635
  /**
@@ -661,8 +660,8 @@ declare module '@sveltejs/kit' {
661
660
  }
662
661
 
663
662
  /**
664
- * The [`handle`](https://kit.svelte.dev/docs/hooks#server-hooks-handle) hook runs every time the SvelteKit server receives a [request](https://kit.svelte.dev/docs/web-standards#fetch-apis-request) and
665
- * determines the [response](https://kit.svelte.dev/docs/web-standards#fetch-apis-response).
663
+ * The [`handle`](https://svelte.dev/docs/kit/hooks#Server-hooks-handle) hook runs every time the SvelteKit server receives a [request](https://svelte.dev/docs/kit/web-standards#Fetch-APIs-Request) and
664
+ * determines the [response](https://svelte.dev/docs/kit/web-standards#Fetch-APIs-Response).
666
665
  * It receives an `event` object representing the request and a function called `resolve`, which renders the route and generates a `Response`.
667
666
  * This allows you to modify response headers or bodies, or bypass SvelteKit entirely (for implementing routes programmatically, for example).
668
667
  */
@@ -672,7 +671,7 @@ declare module '@sveltejs/kit' {
672
671
  }) => MaybePromise<Response>;
673
672
 
674
673
  /**
675
- * The server-side [`handleError`](https://kit.svelte.dev/docs/hooks#shared-hooks-handleerror) hook runs when an unexpected error is thrown while responding to a request.
674
+ * The server-side [`handleError`](https://svelte.dev/docs/kit/hooks#shared-hooks-handleError) hook runs when an unexpected error is thrown while responding to a request.
676
675
  *
677
676
  * If an unexpected error is thrown during loading or rendering, this function will be called with the error and the event.
678
677
  * Make sure that this function _never_ throws an error.
@@ -685,7 +684,7 @@ declare module '@sveltejs/kit' {
685
684
  }) => MaybePromise<void | App.Error>;
686
685
 
687
686
  /**
688
- * The client-side [`handleError`](https://kit.svelte.dev/docs/hooks#shared-hooks-handleerror) hook runs when an unexpected error is thrown while navigating.
687
+ * The client-side [`handleError`](https://svelte.dev/docs/kit/hooks#shared-hooks-handleError) hook runs when an unexpected error is thrown while navigating.
689
688
  *
690
689
  * If an unexpected error is thrown during loading or the following render, this function will be called with the error and the event.
691
690
  * Make sure that this function _never_ throws an error.
@@ -698,7 +697,7 @@ declare module '@sveltejs/kit' {
698
697
  }) => MaybePromise<void | App.Error>;
699
698
 
700
699
  /**
701
- * The [`handleFetch`](https://kit.svelte.dev/docs/hooks#server-hooks-handlefetch) hook allows you to modify (or replace) a `fetch` request that happens inside a `load` function that runs on the server (or during pre-rendering)
700
+ * The [`handleFetch`](https://svelte.dev/docs/kit/hooks#server-hooks-handleFetch) hook allows you to modify (or replace) a `fetch` request that happens inside a `load` function that runs on the server (or during pre-rendering)
702
701
  */
703
702
  export type HandleFetch = (input: {
704
703
  event: RequestEvent;
@@ -707,13 +706,13 @@ declare module '@sveltejs/kit' {
707
706
  }) => MaybePromise<Response>;
708
707
 
709
708
  /**
710
- * The [`reroute`](https://kit.svelte.dev/docs/hooks#universal-hooks-reroute) hook allows you to modify the URL before it is used to determine which route to render.
709
+ * The [`reroute`](https://svelte.dev/docs/kit/hooks#Universal-hooks-reroute) hook allows you to modify the URL before it is used to determine which route to render.
711
710
  * @since 2.3.0
712
711
  */
713
712
  export type Reroute = (event: { url: URL }) => void | string;
714
713
 
715
714
  /**
716
- * The generic form of `PageLoad` and `LayoutLoad`. You should import those from `./$types` (see [generated types](https://kit.svelte.dev/docs/types#generated-types))
715
+ * The generic form of `PageLoad` and `LayoutLoad`. You should import those from `./$types` (see [generated types](https://svelte.dev/docs/kit/types#Generated-types))
717
716
  * rather than using `Load` directly.
718
717
  */
719
718
  export type Load<
@@ -725,7 +724,7 @@ declare module '@sveltejs/kit' {
725
724
  > = (event: LoadEvent<Params, InputData, ParentData, RouteId>) => MaybePromise<OutputData>;
726
725
 
727
726
  /**
728
- * The generic form of `PageLoadEvent` and `LayoutLoadEvent`. You should import those from `./$types` (see [generated types](https://kit.svelte.dev/docs/types#generated-types))
727
+ * The generic form of `PageLoadEvent` and `LayoutLoadEvent`. You should import those from `./$types` (see [generated types](https://svelte.dev/docs/kit/types#Generated-types))
729
728
  * rather than using `LoadEvent` directly.
730
729
  */
731
730
  export interface LoadEvent<
@@ -740,10 +739,10 @@ declare module '@sveltejs/kit' {
740
739
  * - It can be used to make credentialed requests on the server, as it inherits the `cookie` and `authorization` headers for the page request.
741
740
  * - It can make relative requests on the server (ordinarily, `fetch` requires a URL with an origin when used in a server context).
742
741
  * - Internal requests (e.g. for `+server.js` routes) go directly to the handler function when running on the server, without the overhead of an HTTP call.
743
- * - During server-side rendering, the response will be captured and inlined into the rendered HTML by hooking into the `text` and `json` methods of the `Response` object. Note that headers will _not_ be serialized, unless explicitly included via [`filterSerializedResponseHeaders`](https://kit.svelte.dev/docs/hooks#server-hooks-handle)
742
+ * - During server-side rendering, the response will be captured and inlined into the rendered HTML by hooking into the `text` and `json` methods of the `Response` object. Note that headers will _not_ be serialized, unless explicitly included via [`filterSerializedResponseHeaders`](https://svelte.dev/docs/kit/hooks#Server-hooks-handle)
744
743
  * - During hydration, the response will be read from the HTML, guaranteeing consistency and preventing an additional network request.
745
744
  *
746
- * You can learn more about making credentialed requests with cookies [here](https://kit.svelte.dev/docs/load#cookies)
745
+ * You can learn more about making credentialed requests with cookies [here](https://svelte.dev/docs/kit/load#Cookies)
747
746
  */
748
747
  fetch: typeof fetch;
749
748
  /**
@@ -770,7 +769,7 @@ declare module '@sveltejs/kit' {
770
769
  *
771
770
  * Setting the same header multiple times (even in separate `load` functions) is an error — you can only set a given header once.
772
771
  *
773
- * You cannot add a `set-cookie` header with `setHeaders` — use the [`cookies`](https://kit.svelte.dev/docs/types#public-types-cookies) API in a server-only `load` function instead.
772
+ * You cannot add a `set-cookie` header with `setHeaders` — use the [`cookies`](https://svelte.dev/docs/kit/@sveltejs-kit#Cookies) API in a server-only `load` function instead.
774
773
  *
775
774
  * `setHeaders` has no effect when a `load` function runs in the browser.
776
775
  */
@@ -783,7 +782,7 @@ declare module '@sveltejs/kit' {
783
782
  */
784
783
  parent(): Promise<ParentData>;
785
784
  /**
786
- * This function declares that the `load` function has a _dependency_ on one or more URLs or custom identifiers, which can subsequently be used with [`invalidate()`](https://kit.svelte.dev/docs/modules#$app-navigation-invalidate) to cause `load` to rerun.
785
+ * This function declares that the `load` function has a _dependency_ on one or more URLs or custom identifiers, which can subsequently be used with [`invalidate()`](https://svelte.dev/docs/kit/$app-navigation#invalidate) to cause `load` to rerun.
787
786
  *
788
787
  * Most of the time you won't need this, as `fetch` calls `depends` on your behalf — it's only necessary if you're using a custom API client that bypasses `fetch`.
789
788
  *
@@ -808,7 +807,7 @@ declare module '@sveltejs/kit' {
808
807
  * <script>
809
808
  * import { invalidate } from '$app/navigation';
810
809
  *
811
- * export let data;
810
+ * let { data } = $props();
812
811
  *
813
812
  * const increase = async () => {
814
813
  * await invalidate('increase:count');
@@ -922,7 +921,7 @@ declare module '@sveltejs/kit' {
922
921
  }
923
922
 
924
923
  /**
925
- * The argument passed to [`beforeNavigate`](https://kit.svelte.dev/docs/modules#$app-navigation-beforenavigate) callbacks.
924
+ * The argument passed to [`beforeNavigate`](https://svelte.dev/docs/kit/$app-navigation#beforeNavigate) callbacks.
926
925
  */
927
926
  export interface BeforeNavigate extends Navigation {
928
927
  /**
@@ -932,7 +931,7 @@ declare module '@sveltejs/kit' {
932
931
  }
933
932
 
934
933
  /**
935
- * The argument passed to [`onNavigate`](https://kit.svelte.dev/docs/modules#$app-navigation-onnavigate) callbacks.
934
+ * The argument passed to [`onNavigate`](https://svelte.dev/docs/kit/$app-navigation#onNavigate) callbacks.
936
935
  */
937
936
  export interface OnNavigate extends Navigation {
938
937
  /**
@@ -950,7 +949,7 @@ declare module '@sveltejs/kit' {
950
949
  }
951
950
 
952
951
  /**
953
- * The argument passed to [`afterNavigate`](https://kit.svelte.dev/docs/modules#$app-navigation-afternavigate) callbacks.
952
+ * The argument passed to [`afterNavigate`](https://svelte.dev/docs/kit/$app-navigation#afterNavigate) callbacks.
954
953
  */
955
954
  export interface AfterNavigate extends Omit<Navigation, 'type'> {
956
955
  /**
@@ -1005,17 +1004,17 @@ declare module '@sveltejs/kit' {
1005
1004
  */
1006
1005
  data: App.PageData & Record<string, any>;
1007
1006
  /**
1008
- * The page state, which can be manipulated using the [`pushState`](https://kit.svelte.dev/docs/modules#$app-navigation-pushstate) and [`replaceState`](https://kit.svelte.dev/docs/modules#$app-navigation-replacestate) functions from `$app/navigation`.
1007
+ * The page state, which can be manipulated using the [`pushState`](https://svelte.dev/docs/kit/$app-navigation#pushState) and [`replaceState`](https://svelte.dev/docs/kit/$app-navigation#replaceState) functions from `$app/navigation`.
1009
1008
  */
1010
1009
  state: App.PageState;
1011
1010
  /**
1012
- * Filled only after a form submission. See [form actions](https://kit.svelte.dev/docs/form-actions) for more info.
1011
+ * Filled only after a form submission. See [form actions](https://svelte.dev/docs/kit/form-actions) for more info.
1013
1012
  */
1014
1013
  form: any;
1015
1014
  }
1016
1015
 
1017
1016
  /**
1018
- * The shape of a param matcher. See [matching](https://kit.svelte.dev/docs/advanced-routing#matching) for more info.
1017
+ * The shape of a param matcher. See [matching](https://svelte.dev/docs/kit/advanced-routing#Matching) for more info.
1019
1018
  */
1020
1019
  export type ParamMatcher = (param: string) => boolean;
1021
1020
 
@@ -1033,10 +1032,10 @@ declare module '@sveltejs/kit' {
1033
1032
  * - It can be used to make credentialed requests on the server, as it inherits the `cookie` and `authorization` headers for the page request.
1034
1033
  * - It can make relative requests on the server (ordinarily, `fetch` requires a URL with an origin when used in a server context).
1035
1034
  * - Internal requests (e.g. for `+server.js` routes) go directly to the handler function when running on the server, without the overhead of an HTTP call.
1036
- * - During server-side rendering, the response will be captured and inlined into the rendered HTML by hooking into the `text` and `json` methods of the `Response` object. Note that headers will _not_ be serialized, unless explicitly included via [`filterSerializedResponseHeaders`](https://kit.svelte.dev/docs/hooks#server-hooks-handle)
1035
+ * - During server-side rendering, the response will be captured and inlined into the rendered HTML by hooking into the `text` and `json` methods of the `Response` object. Note that headers will _not_ be serialized, unless explicitly included via [`filterSerializedResponseHeaders`](https://svelte.dev/docs/kit/hooks#Server-hooks-handle)
1037
1036
  * - During hydration, the response will be read from the HTML, guaranteeing consistency and preventing an additional network request.
1038
1037
  *
1039
- * You can learn more about making credentialed requests with cookies [here](https://kit.svelte.dev/docs/load#cookies)
1038
+ * You can learn more about making credentialed requests with cookies [here](https://svelte.dev/docs/kit/load#Cookies)
1040
1039
  */
1041
1040
  fetch: typeof fetch;
1042
1041
  /**
@@ -1044,7 +1043,7 @@ declare module '@sveltejs/kit' {
1044
1043
  */
1045
1044
  getClientAddress(): string;
1046
1045
  /**
1047
- * Contains custom data that was added to the request within the [`handle hook`](https://kit.svelte.dev/docs/hooks#server-hooks-handle).
1046
+ * Contains custom data that was added to the request within the [`handle hook`](https://svelte.dev/docs/kit/hooks#Server-hooks-handle).
1048
1047
  */
1049
1048
  locals: App.Locals;
1050
1049
  /**
@@ -1088,7 +1087,7 @@ declare module '@sveltejs/kit' {
1088
1087
  *
1089
1088
  * Setting the same header multiple times (even in separate `load` functions) is an error — you can only set a given header once.
1090
1089
  *
1091
- * You cannot add a `set-cookie` header with `setHeaders` — use the [`cookies`](https://kit.svelte.dev/docs/types#public-types-cookies) API instead.
1090
+ * You cannot add a `set-cookie` header with `setHeaders` — use the [`cookies`](https://svelte.dev/docs/kit/@sveltejs-kit#Cookies) API instead.
1092
1091
  */
1093
1092
  setHeaders(headers: Record<string, string>): void;
1094
1093
  /**
@@ -1109,7 +1108,7 @@ declare module '@sveltejs/kit' {
1109
1108
  /**
1110
1109
  * A `(event: RequestEvent) => Response` function exported from a `+server.js` file that corresponds to an HTTP verb (`GET`, `PUT`, `PATCH`, etc) and handles requests with that method.
1111
1110
  *
1112
- * It receives `Params` as the first generic argument, which you can skip by using [generated types](https://kit.svelte.dev/docs/types#generated-types) instead.
1111
+ * It receives `Params` as the first generic argument, which you can skip by using [generated types](https://svelte.dev/docs/kit/types#Generated-types) instead.
1113
1112
  */
1114
1113
  export type RequestHandler<
1115
1114
  Params extends Partial<Record<string, string>> = Partial<Record<string, string>>,
@@ -1185,7 +1184,7 @@ declare module '@sveltejs/kit' {
1185
1184
  }
1186
1185
 
1187
1186
  /**
1188
- * The generic form of `PageServerLoad` and `LayoutServerLoad`. You should import those from `./$types` (see [generated types](https://kit.svelte.dev/docs/types#generated-types))
1187
+ * The generic form of `PageServerLoad` and `LayoutServerLoad`. You should import those from `./$types` (see [generated types](https://svelte.dev/docs/kit/types#Generated-types))
1189
1188
  * rather than using `ServerLoad` directly.
1190
1189
  */
1191
1190
  export type ServerLoad<
@@ -1207,7 +1206,7 @@ declare module '@sveltejs/kit' {
1207
1206
  */
1208
1207
  parent(): Promise<ParentData>;
1209
1208
  /**
1210
- * This function declares that the `load` function has a _dependency_ on one or more URLs or custom identifiers, which can subsequently be used with [`invalidate()`](https://kit.svelte.dev/docs/modules#$app-navigation-invalidate) to cause `load` to rerun.
1209
+ * This function declares that the `load` function has a _dependency_ on one or more URLs or custom identifiers, which can subsequently be used with [`invalidate()`](https://svelte.dev/docs/kit/$app-navigation#invalidate) to cause `load` to rerun.
1211
1210
  *
1212
1211
  * Most of the time you won't need this, as `fetch` calls `depends` on your behalf — it's only necessary if you're using a custom API client that bypasses `fetch`.
1213
1212
  *
@@ -1232,7 +1231,7 @@ declare module '@sveltejs/kit' {
1232
1231
  * <script>
1233
1232
  * import { invalidate } from '$app/navigation';
1234
1233
  *
1235
- * export let data;
1234
+ * let { data } = $props();
1236
1235
  *
1237
1236
  * const increase = async () => {
1238
1237
  * await invalidate('increase:count');
@@ -1262,7 +1261,7 @@ declare module '@sveltejs/kit' {
1262
1261
 
1263
1262
  /**
1264
1263
  * Shape of a form action method that is part of `export const actions = {..}` in `+page.server.js`.
1265
- * See [form actions](https://kit.svelte.dev/docs/form-actions) for more information.
1264
+ * See [form actions](https://svelte.dev/docs/kit/form-actions) for more information.
1266
1265
  */
1267
1266
  export type Action<
1268
1267
  Params extends Partial<Record<string, string>> = Partial<Record<string, string>>,
@@ -1272,7 +1271,7 @@ declare module '@sveltejs/kit' {
1272
1271
 
1273
1272
  /**
1274
1273
  * Shape of the `export const actions = {..}` object in `+page.server.js`.
1275
- * See [form actions](https://kit.svelte.dev/docs/form-actions) for more information.
1274
+ * See [form actions](https://svelte.dev/docs/kit/form-actions) for more information.
1276
1275
  */
1277
1276
  export type Actions<
1278
1277
  Params extends Partial<Record<string, string>> = Partial<Record<string, string>>,
@@ -1300,7 +1299,7 @@ declare module '@sveltejs/kit' {
1300
1299
  | { type: 'error'; status?: number; error: any };
1301
1300
 
1302
1301
  /**
1303
- * The object returned by the [`error`](https://kit.svelte.dev/docs/modules#sveltejs-kit-error) function.
1302
+ * The object returned by the [`error`](https://svelte.dev/docs/kit/@sveltejs-kit#error) function.
1304
1303
  */
1305
1304
  export interface HttpError {
1306
1305
  /** The [HTTP status code](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client_error_responses), in the range 400-599. */
@@ -1310,7 +1309,7 @@ declare module '@sveltejs/kit' {
1310
1309
  }
1311
1310
 
1312
1311
  /**
1313
- * The object returned by the [`redirect`](https://kit.svelte.dev/docs/modules#sveltejs-kit-redirect) function
1312
+ * The object returned by the [`redirect`](https://svelte.dev/docs/kit/@sveltejs-kit#redirect) function
1314
1313
  */
1315
1314
  export interface Redirect {
1316
1315
  /** The [HTTP status code](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#redirection_messages), in the range 300-308. */
@@ -1873,6 +1872,7 @@ declare module '@sveltejs/kit/hooks' {
1873
1872
  * preload: () => {
1874
1873
  * // this one wins as it's the first defined in the chain
1875
1874
  * console.log('first preload');
1875
+ * return true;
1876
1876
  * }
1877
1877
  * });
1878
1878
  * console.log('first post-processing');
@@ -1889,10 +1889,12 @@ declare module '@sveltejs/kit/hooks' {
1889
1889
  * },
1890
1890
  * preload: () => {
1891
1891
  * console.log('second preload');
1892
+ * return true;
1892
1893
  * },
1893
1894
  * filterSerializedResponseHeaders: () => {
1894
1895
  * // this one wins as it's the first defined in the chain
1895
- * console.log('second filterSerializedResponseHeaders');
1896
+ * console.log('second filterSerializedResponseHeaders');
1897
+ * return true;
1896
1898
  * }
1897
1899
  * });
1898
1900
  * console.log('second post-processing');
@@ -2073,7 +2075,7 @@ declare module '$app/navigation' {
2073
2075
  * Returns a Promise that resolves when SvelteKit navigates (or fails to navigate, in which case the promise rejects) to the specified `url`.
2074
2076
  * For external URLs, use `window.location = url` instead of calling `goto(url)`.
2075
2077
  *
2076
- * @param url Where to navigate to. Note that if you've set [`config.kit.paths.base`](https://kit.svelte.dev/docs/configuration#paths) and the URL is root-relative, you need to prepend the base path if you want to navigate within the app.
2078
+ * @param url Where to navigate to. Note that if you've set [`config.kit.paths.base`](https://svelte.dev/docs/kit/configuration#paths) and the URL is root-relative, you need to prepend the base path if you want to navigate within the app.
2077
2079
  * @param {Object} opts Options related to the navigation
2078
2080
  * */
2079
2081
  export function goto(url: string | URL, opts?: {
@@ -2136,12 +2138,12 @@ declare module '$app/navigation' {
2136
2138
  * */
2137
2139
  export function preloadCode(pathname: string): Promise<void>;
2138
2140
  /**
2139
- * Programmatically create a new history entry with the given `$page.state`. To use the current URL, you can pass `''` as the first argument. Used for [shallow routing](https://kit.svelte.dev/docs/shallow-routing).
2141
+ * Programmatically create a new history entry with the given `$page.state`. To use the current URL, you can pass `''` as the first argument. Used for [shallow routing](https://svelte.dev/docs/kit/shallow-routing).
2140
2142
  *
2141
2143
  * */
2142
2144
  export function pushState(url: string | URL, state: App.PageState): void;
2143
2145
  /**
2144
- * Programmatically replace the current history entry with the given `$page.state`. To use the current URL, you can pass `''` as the first argument. Used for [shallow routing](https://kit.svelte.dev/docs/shallow-routing).
2146
+ * Programmatically replace the current history entry with the given `$page.state`. To use the current URL, you can pass `''` as the first argument. Used for [shallow routing](https://svelte.dev/docs/kit/shallow-routing).
2145
2147
  *
2146
2148
  * */
2147
2149
  export function replaceState(url: string | URL, state: App.PageState): void;
@@ -2152,16 +2154,16 @@ declare module '$app/navigation' {
2152
2154
 
2153
2155
  declare module '$app/paths' {
2154
2156
  /**
2155
- * A string that matches [`config.kit.paths.base`](https://kit.svelte.dev/docs/configuration#paths).
2157
+ * A string that matches [`config.kit.paths.base`](https://svelte.dev/docs/kit/configuration#paths).
2156
2158
  *
2157
2159
  * Example usage: `<a href="{base}/your-page">Link</a>`
2158
2160
  */
2159
2161
  export let base: '' | `/${string}`;
2160
2162
 
2161
2163
  /**
2162
- * An absolute path that matches [`config.kit.paths.assets`](https://kit.svelte.dev/docs/configuration#paths).
2164
+ * An absolute path that matches [`config.kit.paths.assets`](https://svelte.dev/docs/kit/configuration#paths).
2163
2165
  *
2164
- * > If a value for `config.kit.paths.assets` is specified, it will be replaced with `'/_svelte_kit_assets'` during `vite dev` or `vite preview`, since the assets don't yet live at their eventual URL.
2166
+ * > [!NOTE] If a value for `config.kit.paths.assets` is specified, it will be replaced with `'/_svelte_kit_assets'` during `vite dev` or `vite preview`, since the assets don't yet live at their eventual URL.
2165
2167
  */
2166
2168
  export let assets: '' | `https://${string}` | `http://${string}` | '/_svelte_kit_assets';
2167
2169
 
@@ -2169,6 +2171,8 @@ declare module '$app/paths' {
2169
2171
  * Populate a route ID with params to resolve a pathname.
2170
2172
  * @example
2171
2173
  * ```js
2174
+ * import { resolveRoute } from '$app/paths';
2175
+ *
2172
2176
  * resolveRoute(
2173
2177
  * `/blog/[slug]/[...somethingElse]`,
2174
2178
  * {
@@ -2226,7 +2230,7 @@ declare module '$app/stores' {
2226
2230
  * */
2227
2231
  export const navigating: import('svelte/store').Readable<import('@sveltejs/kit').Navigation | null>;
2228
2232
  /**
2229
- * A readable store whose initial value is `false`. If [`version.pollInterval`](https://kit.svelte.dev/docs/configuration#version) is a non-zero value, SvelteKit will poll for new versions of the app and update the store value to `true` when it detects one. `updated.check()` will force an immediate check, regardless of polling.
2233
+ * A readable store whose initial value is `false`. If [`version.pollInterval`](https://svelte.dev/docs/kit/configuration#version) is a non-zero value, SvelteKit will poll for new versions of the app and update the store value to `true` when it detects one. `updated.check()` will force an immediate check, regardless of polling.
2230
2234
  *
2231
2235
  * On the server, this store can only be subscribed to during component initialization. In the browser, it can be subscribed to at any time.
2232
2236
  * */
@@ -2266,30 +2270,30 @@ declare namespace App {
2266
2270
  }
2267
2271
 
2268
2272
  /**
2269
- * The interface that defines `event.locals`, which can be accessed in [hooks](https://kit.svelte.dev/docs/hooks) (`handle`, and `handleError`), server-only `load` functions, and `+server.js` files.
2273
+ * The interface that defines `event.locals`, which can be accessed in [hooks](https://svelte.dev/docs/kit/hooks) (`handle`, and `handleError`), server-only `load` functions, and `+server.js` files.
2270
2274
  */
2271
2275
  export interface Locals {}
2272
2276
 
2273
2277
  /**
2274
- * Defines the common shape of the [$page.data store](https://kit.svelte.dev/docs/modules#$app-stores-page) - that is, the data that is shared between all pages.
2278
+ * Defines the common shape of the [$page.data store](https://svelte.dev/docs/kit/$app-stores#page) - that is, the data that is shared between all pages.
2275
2279
  * The `Load` and `ServerLoad` functions in `./$types` will be narrowed accordingly.
2276
2280
  * Use optional properties for data that is only present on specific pages. Do not add an index signature (`[key: string]: any`).
2277
2281
  */
2278
2282
  export interface PageData {}
2279
2283
 
2280
2284
  /**
2281
- * The shape of the `$page.state` object, which can be manipulated using the [`pushState`](https://kit.svelte.dev/docs/modules#$app-navigation-pushstate) and [`replaceState`](https://kit.svelte.dev/docs/modules#$app-navigation-replacestate) functions from `$app/navigation`.
2285
+ * The shape of the `$page.state` object, which can be manipulated using the [`pushState`](https://svelte.dev/docs/kit/$app-navigation#pushState) and [`replaceState`](https://svelte.dev/docs/kit/$app-navigation#replaceState) functions from `$app/navigation`.
2282
2286
  */
2283
2287
  export interface PageState {}
2284
2288
 
2285
2289
  /**
2286
- * If your adapter provides [platform-specific context](https://kit.svelte.dev/docs/adapters#platform-specific-context) via `event.platform`, you can specify it here.
2290
+ * If your adapter provides [platform-specific context](https://svelte.dev/docs/kit/adapters#platform-specific-context) via `event.platform`, you can specify it here.
2287
2291
  */
2288
2292
  export interface Platform {}
2289
2293
  }
2290
2294
 
2291
2295
  /**
2292
- * This module is only available to [service workers](https://kit.svelte.dev/docs/service-workers).
2296
+ * This module is only available to [service workers](https://svelte.dev/docs/kit/service-workers).
2293
2297
  */
2294
2298
  declare module '$service-worker' {
2295
2299
  /**
@@ -2303,7 +2307,7 @@ declare module '$service-worker' {
2303
2307
  */
2304
2308
  export const build: string[];
2305
2309
  /**
2306
- * An array of URL strings representing the files in your static directory, or whatever directory is specified by `config.kit.files.assets`. You can customize which files are included from `static` directory using [`config.kit.serviceWorker.files`](https://kit.svelte.dev/docs/configuration)
2310
+ * An array of URL strings representing the files in your static directory, or whatever directory is specified by `config.kit.files.assets`. You can customize which files are included from `static` directory using [`config.kit.serviceWorker.files`](https://svelte.dev/docs/kit/configuration)
2307
2311
  */
2308
2312
  export const files: string[];
2309
2313
  /**
@@ -2312,7 +2316,7 @@ declare module '$service-worker' {
2312
2316
  */
2313
2317
  export const prerendered: string[];
2314
2318
  /**
2315
- * See [`config.kit.version`](https://kit.svelte.dev/docs/configuration#version). It's useful for generating unique cache names inside your service worker, so that a later deployment of your app can invalidate old caches.
2319
+ * See [`config.kit.version`](https://svelte.dev/docs/kit/configuration#version). It's useful for generating unique cache names inside your service worker, so that a later deployment of your app can invalidate old caches.
2316
2320
  */
2317
2321
  export const version: string;
2318
2322
  }
@@ -154,6 +154,6 @@
154
154
  null,
155
155
  null
156
156
  ],
157
- "mappings": "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",
157
+ "mappings": "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",
158
158
  "ignoreList": []
159
159
  }