@sveltejs/kit 2.7.2 → 2.7.4
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/README.md +4 -4
- package/package.json +2 -2
- package/src/core/config/index.js +1 -1
- package/src/core/config/options.js +8 -8
- package/src/core/postbuild/prerender.js +6 -6
- package/src/core/sync/write_ambient.js +1 -1
- package/src/core/sync/write_tsconfig.js +1 -1
- package/src/exports/public.d.ts +54 -55
- package/src/exports/vite/dev/index.js +1 -1
- package/src/exports/vite/index.js +20 -3
- package/src/exports/vite/preview/index.js +7 -0
- package/src/runtime/app/paths/types.d.ts +2 -2
- package/src/runtime/app/stores.js +2 -2
- package/src/runtime/client/client.js +16 -9
- package/src/runtime/client/fetcher.js +1 -1
- package/src/runtime/server/fetch.js +1 -1
- package/src/runtime/server/page/actions.js +9 -1
- package/src/runtime/server/page/index.js +2 -2
- package/src/runtime/server/page/load_data.js +1 -1
- package/src/runtime/server/page/render.js +3 -4
- package/src/types/ambient.d.ts +7 -7
- package/src/types/synthetic/$env+dynamic+private.md +1 -1
- package/src/types/synthetic/$env+dynamic+public.md +1 -1
- package/src/types/synthetic/$env+static+private.md +2 -2
- package/src/types/synthetic/$env+static+public.md +1 -1
- package/src/types/synthetic/$lib.md +2 -2
- package/src/version.js +1 -1
- package/types/index.d.ts +67 -68
- package/types/index.d.ts.map +1 -1
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://
|
|
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
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
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://
|
|
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
|
|
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://
|
|
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;
|
|
@@ -334,9 +333,9 @@ declare module '@sveltejs/kit' {
|
|
|
334
333
|
*
|
|
335
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] 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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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;
|
|
@@ -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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
665
|
-
* determines the [response](https://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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
|
-
*
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
1046
|
+
* Contains custom data that was added to the request within the [`server 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://
|
|
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://
|
|
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://
|
|
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://
|
|
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
|
-
*
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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. */
|
|
@@ -2076,7 +2075,7 @@ declare module '$app/navigation' {
|
|
|
2076
2075
|
* Returns a Promise that resolves when SvelteKit navigates (or fails to navigate, in which case the promise rejects) to the specified `url`.
|
|
2077
2076
|
* For external URLs, use `window.location = url` instead of calling `goto(url)`.
|
|
2078
2077
|
*
|
|
2079
|
-
* @param url Where to navigate to. Note that if you've set [`config.kit.paths.base`](https://
|
|
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.
|
|
2080
2079
|
* @param {Object} opts Options related to the navigation
|
|
2081
2080
|
* */
|
|
2082
2081
|
export function goto(url: string | URL, opts?: {
|
|
@@ -2139,12 +2138,12 @@ declare module '$app/navigation' {
|
|
|
2139
2138
|
* */
|
|
2140
2139
|
export function preloadCode(pathname: string): Promise<void>;
|
|
2141
2140
|
/**
|
|
2142
|
-
* 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://
|
|
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).
|
|
2143
2142
|
*
|
|
2144
2143
|
* */
|
|
2145
2144
|
export function pushState(url: string | URL, state: App.PageState): void;
|
|
2146
2145
|
/**
|
|
2147
|
-
* 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://
|
|
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).
|
|
2148
2147
|
*
|
|
2149
2148
|
* */
|
|
2150
2149
|
export function replaceState(url: string | URL, state: App.PageState): void;
|
|
@@ -2155,14 +2154,14 @@ declare module '$app/navigation' {
|
|
|
2155
2154
|
|
|
2156
2155
|
declare module '$app/paths' {
|
|
2157
2156
|
/**
|
|
2158
|
-
* A string that matches [`config.kit.paths.base`](https://
|
|
2157
|
+
* A string that matches [`config.kit.paths.base`](https://svelte.dev/docs/kit/configuration#paths).
|
|
2159
2158
|
*
|
|
2160
2159
|
* Example usage: `<a href="{base}/your-page">Link</a>`
|
|
2161
2160
|
*/
|
|
2162
2161
|
export let base: '' | `/${string}`;
|
|
2163
2162
|
|
|
2164
2163
|
/**
|
|
2165
|
-
* An absolute path that matches [`config.kit.paths.assets`](https://
|
|
2164
|
+
* An absolute path that matches [`config.kit.paths.assets`](https://svelte.dev/docs/kit/configuration#paths).
|
|
2166
2165
|
*
|
|
2167
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.
|
|
2168
2167
|
*/
|
|
@@ -2231,7 +2230,7 @@ declare module '$app/stores' {
|
|
|
2231
2230
|
* */
|
|
2232
2231
|
export const navigating: import('svelte/store').Readable<import('@sveltejs/kit').Navigation | null>;
|
|
2233
2232
|
/**
|
|
2234
|
-
* A readable store whose initial value is `false`. If [`version.pollInterval`](https://
|
|
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.
|
|
2235
2234
|
*
|
|
2236
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.
|
|
2237
2236
|
* */
|
|
@@ -2271,30 +2270,30 @@ declare namespace App {
|
|
|
2271
2270
|
}
|
|
2272
2271
|
|
|
2273
2272
|
/**
|
|
2274
|
-
* The interface that defines `event.locals`, which can be accessed in [hooks](https://
|
|
2273
|
+
* The interface that defines `event.locals`, which can be accessed in server [hooks](https://svelte.dev/docs/kit/hooks) (`handle`, and `handleError`), server-only `load` functions, and `+server.js` files.
|
|
2275
2274
|
*/
|
|
2276
2275
|
export interface Locals {}
|
|
2277
2276
|
|
|
2278
2277
|
/**
|
|
2279
|
-
* Defines the common shape of the [$page.data store](https://
|
|
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.
|
|
2280
2279
|
* The `Load` and `ServerLoad` functions in `./$types` will be narrowed accordingly.
|
|
2281
2280
|
* Use optional properties for data that is only present on specific pages. Do not add an index signature (`[key: string]: any`).
|
|
2282
2281
|
*/
|
|
2283
2282
|
export interface PageData {}
|
|
2284
2283
|
|
|
2285
2284
|
/**
|
|
2286
|
-
* The shape of the `$page.state` object, which can be manipulated using the [`pushState`](https://
|
|
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`.
|
|
2287
2286
|
*/
|
|
2288
2287
|
export interface PageState {}
|
|
2289
2288
|
|
|
2290
2289
|
/**
|
|
2291
|
-
* If your adapter provides [platform-specific context](https://
|
|
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.
|
|
2292
2291
|
*/
|
|
2293
2292
|
export interface Platform {}
|
|
2294
2293
|
}
|
|
2295
2294
|
|
|
2296
2295
|
/**
|
|
2297
|
-
* This module is only available to [service workers](https://
|
|
2296
|
+
* This module is only available to [service workers](https://svelte.dev/docs/kit/service-workers).
|
|
2298
2297
|
*/
|
|
2299
2298
|
declare module '$service-worker' {
|
|
2300
2299
|
/**
|
|
@@ -2308,7 +2307,7 @@ declare module '$service-worker' {
|
|
|
2308
2307
|
*/
|
|
2309
2308
|
export const build: string[];
|
|
2310
2309
|
/**
|
|
2311
|
-
* 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://
|
|
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)
|
|
2312
2311
|
*/
|
|
2313
2312
|
export const files: string[];
|
|
2314
2313
|
/**
|
|
@@ -2317,7 +2316,7 @@ declare module '$service-worker' {
|
|
|
2317
2316
|
*/
|
|
2318
2317
|
export const prerendered: string[];
|
|
2319
2318
|
/**
|
|
2320
|
-
* See [`config.kit.version`](https://
|
|
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.
|
|
2321
2320
|
*/
|
|
2322
2321
|
export const version: string;
|
|
2323
2322
|
}
|
package/types/index.d.ts.map
CHANGED
|
@@ -154,6 +154,6 @@
|
|
|
154
154
|
null,
|
|
155
155
|
null
|
|
156
156
|
],
|
|
157
|
-
"mappings": ";;;;;;;;;kBA2BiBA,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;aA2BZC,cAAcA;;;;;;aAMdC,cAAcA;;;;;;;;;;;;;;;kBAeTC,aAAaA
|
|
157
|
+
"mappings": "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",
|
|
158
158
|
"ignoreList": []
|
|
159
159
|
}
|