@sveltejs/kit 3.0.0-next.6 → 3.0.0-next.8

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 (80) hide show
  1. package/package.json +8 -3
  2. package/src/core/adapt/builder.js +11 -39
  3. package/src/core/config/index.js +76 -71
  4. package/src/core/config/options.js +280 -285
  5. package/src/core/config/types.d.ts +1 -1
  6. package/src/core/env.js +86 -1
  7. package/src/core/generate_manifest/index.js +12 -15
  8. package/src/core/sync/create_manifest_data/index.js +7 -45
  9. package/src/core/sync/sync.js +0 -2
  10. package/src/core/sync/write_client_manifest.js +7 -21
  11. package/src/core/sync/write_non_ambient.js +12 -9
  12. package/src/core/sync/write_server.js +0 -4
  13. package/src/core/sync/write_types/index.js +28 -24
  14. package/src/core/utils.js +2 -2
  15. package/src/exports/index.js +3 -3
  16. package/src/exports/internal/client.js +5 -0
  17. package/src/exports/internal/index.js +1 -91
  18. package/src/exports/internal/{event.js → server/event.js} +1 -2
  19. package/src/exports/internal/server/index.js +33 -0
  20. package/src/exports/internal/shared.js +89 -0
  21. package/src/exports/node/index.js +5 -9
  22. package/src/exports/params.js +63 -0
  23. package/src/exports/public.d.ts +103 -46
  24. package/src/exports/url.js +84 -0
  25. package/src/exports/vite/dev/index.js +31 -20
  26. package/src/exports/vite/index.js +280 -199
  27. package/src/exports/vite/preview/index.js +14 -15
  28. package/src/exports/vite/utils.js +8 -10
  29. package/src/runtime/app/env/internal.js +4 -4
  30. package/src/runtime/app/forms.js +2 -2
  31. package/src/runtime/app/paths/client.js +3 -7
  32. package/src/runtime/app/paths/internal/client.js +4 -2
  33. package/src/runtime/app/paths/internal/server.js +2 -23
  34. package/src/runtime/app/paths/server.js +3 -3
  35. package/src/runtime/app/server/remote/query.js +6 -12
  36. package/src/runtime/app/state/client.js +1 -2
  37. package/src/runtime/app/stores.js +13 -76
  38. package/src/runtime/client/bundle.js +1 -1
  39. package/src/runtime/client/client-entry.js +3 -0
  40. package/src/runtime/client/client.js +230 -238
  41. package/src/runtime/client/entry.js +24 -3
  42. package/src/runtime/client/payload.js +17 -0
  43. package/src/runtime/client/remote-functions/cache.svelte.js +3 -1
  44. package/src/runtime/client/remote-functions/form.svelte.js +11 -30
  45. package/src/runtime/client/remote-functions/prerender.svelte.js +10 -3
  46. package/src/runtime/client/remote-functions/query/instance.svelte.js +18 -9
  47. package/src/runtime/client/remote-functions/query-live/instance.svelte.js +16 -6
  48. package/src/runtime/client/remote-functions/shared.svelte.js +1 -2
  49. package/src/runtime/client/state.svelte.js +66 -49
  50. package/src/runtime/client/types.d.ts +3 -7
  51. package/src/runtime/client/utils.js +0 -96
  52. package/src/runtime/components/root.svelte +66 -0
  53. package/src/runtime/form-utils.js +16 -6
  54. package/src/runtime/server/cookie.js +17 -7
  55. package/src/runtime/server/index.js +1 -1
  56. package/src/runtime/server/page/index.js +7 -14
  57. package/src/runtime/server/page/load_data.js +1 -1
  58. package/src/runtime/server/page/render.js +72 -88
  59. package/src/runtime/server/page/server_routing.js +13 -9
  60. package/src/runtime/server/remote.js +23 -13
  61. package/src/runtime/server/respond.js +11 -8
  62. package/src/runtime/server/utils.js +28 -5
  63. package/src/runtime/telemetry/otel.js +1 -1
  64. package/src/runtime/types.d.ts +8 -0
  65. package/src/types/ambient.d.ts +5 -1
  66. package/src/types/global-private.d.ts +11 -18
  67. package/src/types/internal.d.ts +25 -30
  68. package/src/utils/error.js +1 -1
  69. package/src/utils/import.js +6 -1
  70. package/src/utils/mime.js +9 -0
  71. package/src/utils/params.js +66 -0
  72. package/src/utils/routing.js +90 -44
  73. package/src/utils/streaming.js +14 -4
  74. package/src/utils/url.js +0 -79
  75. package/src/version.js +1 -1
  76. package/types/index.d.ts +127 -125
  77. package/types/index.d.ts.map +12 -8
  78. package/src/core/sync/write_root.js +0 -148
  79. package/src/exports/internal/server.js +0 -22
  80. /package/src/exports/internal/{remote-functions.js → server/remote-functions.js} +0 -0
package/types/index.d.ts CHANGED
@@ -4,7 +4,9 @@
4
4
  declare module '@sveltejs/kit' {
5
5
  import type { SvelteConfig } from '@sveltejs/vite-plugin-svelte';
6
6
  import type { StandardSchemaV1 } from '@standard-schema/spec';
7
+ import type { Plugin } from 'vite';
7
8
  import type { RouteId as AppRouteId, LayoutParams as AppLayoutParams, ResolvedPathname } from '$app/types';
9
+ import type { Component } from 'svelte';
8
10
  // @ts-ignore this is an optional peer dependency so could be missing. Written like this so dts-buddy preserves the ts-ignore
9
11
  type Span = import('@opentelemetry/api').Span;
10
12
 
@@ -44,6 +46,13 @@ declare module '@sveltejs/kit' {
44
46
  * during dev, build and prerendering.
45
47
  */
46
48
  emulate?: () => MaybePromise<Emulator>;
49
+ vite?: {
50
+ /**
51
+ * Plugins provided by the adapter are placed before any of SvelteKit's own plugins.
52
+ * @since 3.0.0
53
+ */
54
+ plugins?: Plugin[];
55
+ };
47
56
  }
48
57
 
49
58
  export type LoadProperties<input extends Record<string, any> | void> = input extends void
@@ -123,7 +132,7 @@ declare module '@sveltejs/kit' {
123
132
 
124
133
  /**
125
134
  * Generate a server-side manifest to initialise the SvelteKit [server](https://svelte.dev/docs/kit/@sveltejs-kit#Server) with.
126
- * @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
135
+ * @param opts.relativePath A relative path to the base directory of the server build output
127
136
  */
128
137
  generateManifest: (opts: { relativePath: string; routes?: RouteDefinition[] }) => string;
129
138
 
@@ -463,32 +472,6 @@ declare module '@sveltejs/kit' {
463
472
  };
464
473
  /** Experimental features. Here be dragons. These are not subject to semantic versioning, so breaking changes or removal can happen in any release. */
465
474
  experimental?: {
466
- /**
467
- * Options for enabling server-side [OpenTelemetry](https://opentelemetry.io/) tracing for SvelteKit operations including the [`handle` hook](https://svelte.dev/docs/kit/hooks#Server-hooks-handle), [`load` functions](https://svelte.dev/docs/kit/load), [form actions](https://svelte.dev/docs/kit/form-actions), and [remote functions](https://svelte.dev/docs/kit/remote-functions).
468
- * @default { server: false, serverFile: false }
469
- * @since 2.31.0
470
- */
471
- tracing?: {
472
- /**
473
- * Enables server-side [OpenTelemetry](https://opentelemetry.io/) span emission for SvelteKit operations including the [`handle` hook](https://svelte.dev/docs/kit/hooks#Server-hooks-handle), [`load` functions](https://svelte.dev/docs/kit/load), [form actions](https://svelte.dev/docs/kit/form-actions), and [remote functions](https://svelte.dev/docs/kit/remote-functions).
474
- * @default false
475
- * @since 2.31.0
476
- */
477
- server?: boolean;
478
- };
479
-
480
- /**
481
- * @since 2.31.0
482
- */
483
- instrumentation?: {
484
- /**
485
- * Enables `instrumentation.server.js` for tracing and observability instrumentation.
486
- * @default false
487
- * @since 2.31.0
488
- */
489
- server?: boolean;
490
- };
491
-
492
475
  /**
493
476
  * Whether to enable the experimental remote functions feature. This feature is not yet stable and may be changed or removed at any time.
494
477
  * @default false
@@ -500,15 +483,6 @@ declare module '@sveltejs/kit' {
500
483
  * @default false
501
484
  */
502
485
  forkPreloads?: boolean;
503
-
504
- /**
505
- * Whether to enable the experimental handling of rendering errors.
506
- * When enabled, `<svelte:boundary>` is used to wrap components at each level
507
- * where there's an `+error.svelte`, rendering the error page if the component fails.
508
- * In addition, error boundaries also work on the server and the error object goes through `handleError`.
509
- * @default false
510
- */
511
- handleRenderingErrors?: boolean;
512
486
  };
513
487
  /**
514
488
  * Where to find various files within your project.
@@ -692,7 +666,7 @@ declare module '@sveltejs/kit' {
692
666
  * @default undefined
693
667
  * @since 3.0
694
668
  */
695
- origin?: `http://${string}` | `https://${string}`;
669
+ origin?: string;
696
670
  /**
697
671
  * Whether to use relative asset paths.
698
672
  *
@@ -877,6 +851,17 @@ declare module '@sveltejs/kit' {
877
851
  register?: false;
878
852
  }
879
853
  );
854
+ /**
855
+ * Options for enabling [OpenTelemetry](https://opentelemetry.io/) tracing for SvelteKit operations.
856
+ * @default { server: false }
857
+ */
858
+ tracing?: {
859
+ /**
860
+ * Enables server-side [OpenTelemetry](https://opentelemetry.io/) span emission for SvelteKit operations including the [`handle` hook](https://svelte.dev/docs/kit/hooks#Server-hooks-handle), [`load` functions](https://svelte.dev/docs/kit/load), [form actions](https://svelte.dev/docs/kit/form-actions), and [remote functions](https://svelte.dev/docs/kit/remote-functions). Tracing — and more significantly, observability instrumentation — can have a nontrivial overhead, so consider whether you really need it, or if it might be more appropriate to turn it on in development and preview environments only.
861
+ * @default false
862
+ */
863
+ server?: boolean;
864
+ };
880
865
  typescript?: {
881
866
  /**
882
867
  * A function that allows you to edit the generated `tsconfig.json`. You can mutate the config (recommended) or return a new one.
@@ -1051,7 +1036,7 @@ declare module '@sveltejs/kit' {
1051
1036
  */
1052
1037
  export interface Transporter<
1053
1038
  T = any,
1054
- U = Exclude<any, false | 0 | '' | null | undefined | typeof NaN>
1039
+ U = any /* minus falsy values, but we can't properly express that */
1055
1040
  > {
1056
1041
  encode: (value: T) => false | U;
1057
1042
  decode: (data: U) => T;
@@ -1410,7 +1395,7 @@ declare module '@sveltejs/kit' {
1410
1395
  };
1411
1396
 
1412
1397
  /**
1413
- * The shape of the [`page`](https://svelte.dev/docs/kit/$app-state#page) reactive object and the [`$page`](https://svelte.dev/docs/kit/$app-stores) store.
1398
+ * The shape of the [`page`](https://svelte.dev/docs/kit/$app-state#page) reactive object.
1414
1399
  */
1415
1400
  export interface Page<
1416
1401
  Params extends AppLayoutParams<'/'> = AppLayoutParams<'/'>,
@@ -1419,7 +1404,7 @@ declare module '@sveltejs/kit' {
1419
1404
  /**
1420
1405
  * The URL of the current page.
1421
1406
  */
1422
- url: URL & { pathname: ResolvedPathname };
1407
+ url: ReadonlyURL & { readonly pathname: ResolvedPathname | (string & {}) };
1423
1408
  /**
1424
1409
  * The parameters of the current page - e.g. for a route like `/blog/[slug]`, a `{ slug: string }` object.
1425
1410
  */
@@ -1458,7 +1443,62 @@ declare module '@sveltejs/kit' {
1458
1443
  /**
1459
1444
  * The shape of a param matcher. See [matching](https://svelte.dev/docs/kit/advanced-routing#Matching) for more info.
1460
1445
  */
1461
- export type ParamMatcher = (param: string) => boolean;
1446
+ export type ParamMatcher<Output = any> = StandardSchemaV1<string, Output>;
1447
+
1448
+ /**
1449
+ * A value that can be parsed from a URL param and losslessly encoded with `String(...)`.
1450
+ */
1451
+ export type ParamValue = string | number | boolean | bigint;
1452
+
1453
+ /**
1454
+ * A param matcher definition passed to [`defineParams`](https://svelte.dev/docs/kit/@sveltejs-kit#defineParams).
1455
+ */
1456
+ export type ParamDefinition =
1457
+ | ((param: string) => ParamValue | undefined)
1458
+ | StandardSchemaV1<string, ParamValue>;
1459
+
1460
+ /**
1461
+ * The return type of [`defineParams`](https://svelte.dev/docs/kit/@sveltejs-kit#defineParams).
1462
+ */
1463
+ export type DefinedParams<T extends Record<string, ParamDefinition>> = {
1464
+ readonly [K in keyof T]: ParamEntry<T[K]>;
1465
+ };
1466
+
1467
+ /**
1468
+ * Normalizes a property of defineParams (schema or function) to standard schema.
1469
+ */
1470
+ type ParamEntry<M> =
1471
+ M extends StandardSchemaV1<any, any>
1472
+ ? StandardSchemaV1.InferOutput<M> extends ParamValue
1473
+ ? StandardSchemaV1<any, M>
1474
+ : StandardSchemaV1<any, never>
1475
+ : M extends (param: string) => infer R
1476
+ ? Exclude<R, undefined> extends ParamValue
1477
+ ? StandardSchemaV1<any, Exclude<R, undefined>>
1478
+ : StandardSchemaV1<any, never>
1479
+ : never;
1480
+
1481
+ /**
1482
+ * Extracts the param type from a matcher.
1483
+ */
1484
+ export type MatcherParam<M extends StandardSchemaV1<any, any>> =
1485
+ M extends StandardSchemaV1<any, infer Inner>
1486
+ ? Inner extends ParamValue
1487
+ ? Inner
1488
+ : Inner extends StandardSchemaV1<any, any>
1489
+ ? StandardSchemaV1.InferOutput<Inner> extends ParamValue
1490
+ ? StandardSchemaV1.InferOutput<Inner>
1491
+ : never
1492
+ : never
1493
+ : never;
1494
+
1495
+ /**
1496
+ * Define [parameter matchers](https://svelte.dev/docs/kit/advanced-routing#Matching) for your app.
1497
+ *
1498
+ * */
1499
+ export function defineParams<T extends Record<string, ParamDefinition>>(
1500
+ definitions: T
1501
+ ): DefinedParams<T>;
1462
1502
 
1463
1503
  /**
1464
1504
  * A single entry yielded by [`requested`](https://svelte.dev/docs/kit/$app-server#requested)
@@ -1665,7 +1705,9 @@ declare module '@sveltejs/kit' {
1665
1705
  */
1666
1706
  filterSerializedResponseHeaders?: (name: string, value: string) => boolean;
1667
1707
  /**
1668
- * Determines what should be added to the `<head>` tag to preload it.
1708
+ * Determines which files should be preloaded. Files are preloaded via `<link>` tags added to the
1709
+ * `<head>` tag; if `output.linkHeaderPreload` is enabled, dynamically rendered pages use the
1710
+ * [`Link` response header](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Link) instead.
1669
1711
  * By default, `js` and `css` files will be preloaded.
1670
1712
  * @param input the type of the file and its path
1671
1713
  */
@@ -1700,19 +1742,24 @@ declare module '@sveltejs/kit' {
1700
1742
  read?: (file: string) => MaybePromise<ReadableStream | null>;
1701
1743
  }
1702
1744
 
1745
+ /**
1746
+ * Information required to instantiate a new `Server` instance.
1747
+ */
1703
1748
  export interface SSRManifest {
1749
+ /** The directory where SvelteKit keeps its stuff, including static assets (such as JS and CSS) and internally-used routes. */
1704
1750
  appDir: string;
1751
+ /** The `base` and `appDir` settings combined without a leading slash. */
1705
1752
  appPath: string;
1706
1753
  /** Static files from `config.files.assets` and the service worker (if any). */
1707
1754
  assets: Set<string>;
1708
1755
  mimeTypes: Record<string, string>;
1709
1756
 
1710
- /** private fields */
1757
+ /** @internal private fields */
1711
1758
  _: {
1712
1759
  client: BuildData['client'];
1713
1760
  nodes: SSRNodeLoader[];
1714
1761
  /** hashed filename -> import to that file */
1715
- remotes: Record<string, () => Promise<any>>;
1762
+ remotes: Record<string, () => Promise<{ default: Record<string, any> }>>;
1716
1763
  routes: SSRRoute[];
1717
1764
  prerendered_routes: Set<string>;
1718
1765
  matchers: () => Promise<Record<string, ParamMatcher>>;
@@ -1903,6 +1950,14 @@ declare module '@sveltejs/kit' {
1903
1950
  restore: (snapshot: T) => void;
1904
1951
  }
1905
1952
 
1953
+ export type ReadonlyURLSearchParams = Omit<URLSearchParams, 'set' | 'append' | 'delete' | 'sort'>;
1954
+
1955
+ export type ReadonlyURL = Readonly<
1956
+ Omit<URL, 'searchParams'> & {
1957
+ searchParams: ReadonlyURLSearchParams;
1958
+ }
1959
+ >;
1960
+
1906
1961
  // If T is unknown or has an index signature, the types below will recurse indefinitely and create giant unions that TS can't handle
1907
1962
  type WillRecurseIndefinitely<T> = unknown extends T ? true : string extends keyof T ? true : false;
1908
1963
 
@@ -2257,8 +2312,8 @@ declare module '@sveltejs/kit' {
2257
2312
  | RemoteQueryOverride;
2258
2313
 
2259
2314
  export type RemoteResource<T> = Promise<T> & {
2260
- /** The error in case the query fails. Most often this is a [`HttpError`](https://svelte.dev/docs/kit/@sveltejs-kit#HttpError) but it isn't guaranteed to be. */
2261
- get error(): any;
2315
+ /** The error in case the query fails. */
2316
+ get error(): App.Error | undefined;
2262
2317
  /** `true` before the first result is available and during refreshes */
2263
2318
  get loading(): boolean;
2264
2319
  } & (
@@ -2718,7 +2773,7 @@ declare module '@sveltejs/kit' {
2718
2773
  };
2719
2774
  nodes: PageNode[];
2720
2775
  routes: RouteData[];
2721
- matchers: Record<string, string>;
2776
+ params: string | null;
2722
2777
  }
2723
2778
 
2724
2779
  interface PageNode {
@@ -2741,7 +2796,7 @@ declare module '@sveltejs/kit' {
2741
2796
  // Recursive implementation of TypeScript's Required utility type.
2742
2797
  // Will recursively continue until it reaches a primitive or Function
2743
2798
  // eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
2744
- [K in keyof T]-?: Extract<T[K], Function> extends never // If it does not have a Function type
2799
+ [K in keyof T]-?: Extract<T[K], Function | (`${string}:` & {})> extends never // If it does not have a Function type
2745
2800
  ? RecursiveRequired<T[K]> // recursively continue through.
2746
2801
  : T[K]; // Use the exact type for everything else
2747
2802
  };
@@ -2784,27 +2839,7 @@ declare module '@sveltejs/kit' {
2784
2839
  } | null;
2785
2840
  }
2786
2841
 
2787
- interface SSRComponent {
2788
- default: {
2789
- render(
2790
- props: Record<string, any>,
2791
- opts: { context: Map<any, any>; csp?: { nonce?: string; hash?: boolean } }
2792
- ): {
2793
- html: string;
2794
- head: string;
2795
- css: {
2796
- code: string;
2797
- map: any; // TODO
2798
- };
2799
- /** Until we require all Svelte versions that support hashes, this might not be defined */
2800
- hashes?: {
2801
- script: Array<`sha256-${string}`>;
2802
- };
2803
- };
2804
- };
2805
- }
2806
-
2807
- type SSRComponentLoader = () => Promise<SSRComponent>;
2842
+ type SSRComponentLoader = () => Promise<Component>;
2808
2843
 
2809
2844
  interface UniversalNode {
2810
2845
  /** Is `null` in case static analysis succeeds but the node is ssr=false */
@@ -2892,7 +2927,7 @@ declare module '@sveltejs/kit' {
2892
2927
  leaf: [has_server_load: boolean, node_id: number];
2893
2928
  }
2894
2929
 
2895
- type ValidatedConfig = Config & {
2930
+ type ValidatedConfig = Omit<Config, 'kit'> & {
2896
2931
  kit: ValidatedKitConfig;
2897
2932
  extensions: string[];
2898
2933
  };
@@ -3156,9 +3191,9 @@ declare module '@sveltejs/kit/node' {
3156
3191
  request: import("http").IncomingMessage;
3157
3192
  base: string;
3158
3193
  bodySizeLimit?: number;
3159
- }): Promise<Request>;
3194
+ }): Request;
3160
3195
 
3161
- export function setResponse(res: import("http").ServerResponse, response: Response): Promise<void>;
3196
+ export function setResponse(res: import("http").ServerResponse, response: Response): void;
3162
3197
  /**
3163
3198
  * Converts a file on disk to a readable stream
3164
3199
  * @since 2.4.0
@@ -3314,8 +3349,9 @@ declare module '$app/navigation' {
3314
3349
  replaceState?: boolean | undefined;
3315
3350
  noScroll?: boolean | undefined;
3316
3351
  keepFocus?: boolean | undefined;
3317
- invalidateAll?: boolean | undefined;
3352
+ refreshAll?: boolean | undefined;
3318
3353
  invalidate?: (string | URL | ((url: URL) => boolean))[] | undefined;
3354
+ invalidateAll?: boolean | undefined;
3319
3355
  state?: App.PageState | undefined;
3320
3356
  }): Promise<void>;
3321
3357
  /**
@@ -3334,19 +3370,22 @@ declare module '$app/navigation' {
3334
3370
  * invalidate((url) => url.pathname === '/path');
3335
3371
  * ```
3336
3372
  * @param resource The invalidated URL
3373
+ * @param keepState If `true`, the current `page.state` will be preserved. Otherwise, it will be reset to an empty object. `false` by default.
3337
3374
  * */
3338
- export function invalidate(resource: string | URL | ((url: URL) => boolean)): Promise<void>;
3375
+ export function invalidate(resource: string | URL | ((url: URL) => boolean), keepState?: boolean): Promise<void>;
3339
3376
  /**
3340
3377
  * Causes all `load` and `query` functions belonging to the currently active page to re-run. Returns a `Promise` that resolves when the page is subsequently updated.
3378
+ *
3379
+ * Note that this resets `page.state` to an empty object. If you want to preserve `page.state` (for example when using [shallow routing](https://svelte.dev/docs/kit/shallow-routing)), use `refreshAll` instead.
3380
+ *
3381
+ * @deprecated Use [`refreshAll`](https://svelte.dev/docs/kit/$app-navigation#refreshAll) instead. Unlike `invalidateAll`, `refreshAll` does not reset `page.state`.
3341
3382
  * */
3342
3383
  export function invalidateAll(): Promise<void>;
3343
3384
  /**
3344
- * Causes all currently active remote functions to refresh, and all `load` functions belonging to the currently active page to re-run (unless disabled via the option argument).
3385
+ * Causes all currently active remote functions to refresh, and all `load` functions belonging to the currently active page to re-run.
3345
3386
  * Returns a `Promise` that resolves when the page is subsequently updated.
3346
3387
  * */
3347
- export function refreshAll({ includeLoadFunctions }?: {
3348
- includeLoadFunctions?: boolean;
3349
- }): Promise<void>;
3388
+ export function refreshAll(): Promise<void>;
3350
3389
  /**
3351
3390
  * Programmatically preloads the given page, which means
3352
3391
  * 1. ensuring that the code for the page is loaded, and
@@ -3454,10 +3493,10 @@ declare module '$app/paths' {
3454
3493
  * @since 2.52.0
3455
3494
  *
3456
3495
  * */
3457
- export function match(url: Pathname | URL | (string & {})): Promise<{
3458
- id: RouteId;
3459
- params: Record<string, string>;
3460
- } | null>;
3496
+ export function match(url: Pathname | URL | (string & {})): Promise<{ [K in RouteId]: {
3497
+ id: K;
3498
+ params: RouteParams<K>;
3499
+ }; }[RouteId] | null>;
3461
3500
  type StripSearchOrHash<T extends string> = T extends `${infer Pathname}?${string}`
3462
3501
  ? Pathname
3463
3502
  : T extends `${infer Pathname}#${string}`
@@ -3479,8 +3518,8 @@ declare module '$app/paths' {
3479
3518
  }
3480
3519
 
3481
3520
  declare module '$app/server' {
3482
- import type { RequestEvent, RemoteCommand, RemoteForm, RemoteFormInput, InvalidField, RemotePrerenderFunction, RemoteQueryFunction, RemoteLiveQueryFunction, QueryRequestedResult, LiveQueryRequestedResult } from '@sveltejs/kit';
3483
3521
  import type { StandardSchemaV1 } from '@standard-schema/spec';
3522
+ import type { RequestEvent, RemoteCommand, RemoteForm, RemoteFormInput, InvalidField, RemotePrerenderFunction, RemoteQueryFunction, RemoteLiveQueryFunction, QueryRequestedResult, LiveQueryRequestedResult } from '@sveltejs/kit';
3484
3523
  /**
3485
3524
  * Read the contents of an imported asset from the filesystem
3486
3525
  * @example
@@ -3798,47 +3837,6 @@ declare module '$app/state' {
3798
3837
  export {};
3799
3838
  }
3800
3839
 
3801
- declare module '$app/stores' {
3802
- export function getStores(): {
3803
-
3804
- page: typeof page;
3805
-
3806
- navigating: typeof navigating;
3807
-
3808
- updated: typeof updated;
3809
- };
3810
- /**
3811
- * A readable store whose value contains page data.
3812
- *
3813
- * On the server, this store can only be subscribed to during component initialization. In the browser, it can be subscribed to at any time.
3814
- *
3815
- * @deprecated Use `page` from `$app/state` instead (requires Svelte 5, [see docs for more info](https://svelte.dev/docs/kit/migrating-to-sveltekit-2#SvelteKit-2.12:-$app-stores-deprecated))
3816
- * */
3817
- export const page: import("svelte/store").Readable<import("@sveltejs/kit").Page>;
3818
- /**
3819
- * A readable store.
3820
- * When navigating starts, its value is a `Navigation` object with `from`, `to`, `type` and (if `type === 'popstate'`) `delta` properties.
3821
- * When navigating finishes, its value reverts to `null`.
3822
- *
3823
- * On the server, this store can only be subscribed to during component initialization. In the browser, it can be subscribed to at any time.
3824
- *
3825
- * @deprecated Use `navigating` from `$app/state` instead (requires Svelte 5, [see docs for more info](https://svelte.dev/docs/kit/migrating-to-sveltekit-2#SvelteKit-2.12:-$app-stores-deprecated))
3826
- * */
3827
- export const navigating: import("svelte/store").Readable<import("@sveltejs/kit").Navigation | null>;
3828
- /**
3829
- * 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.
3830
- *
3831
- * On the server, this store can only be subscribed to during component initialization. In the browser, it can be subscribed to at any time.
3832
- *
3833
- * @deprecated Use `updated` from `$app/state` instead (requires Svelte 5, [see docs for more info](https://svelte.dev/docs/kit/migrating-to-sveltekit-2#SvelteKit-2.12:-$app-stores-deprecated))
3834
- * */
3835
- export const updated: import("svelte/store").Readable<boolean> & {
3836
- check(): Promise<boolean>;
3837
- };
3838
-
3839
- export {};
3840
- }
3841
-
3842
3840
  /**
3843
3841
  * It's possible to tell SvelteKit how to type objects inside your app by declaring the `App` namespace. By default, a new project will have a file called `src/app.d.ts` containing the following:
3844
3842
  *
@@ -3873,23 +3871,27 @@ declare namespace App {
3873
3871
  /**
3874
3872
  * 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.
3875
3873
  */
3874
+ // eslint-disable-next-line @typescript-eslint/no-empty-object-type
3876
3875
  export interface Locals {}
3877
3876
 
3878
3877
  /**
3879
- * Defines the common shape of the [page.data state](https://svelte.dev/docs/kit/$app-state#page) and [$page.data store](https://svelte.dev/docs/kit/$app-stores#page) - that is, the data that is shared between all pages.
3878
+ * Defines the common shape of the [page.data state](https://svelte.dev/docs/kit/$app-state#page) - that is, the data that is shared between all pages.
3880
3879
  * The `Load` and `ServerLoad` functions in `./$types` will be narrowed accordingly.
3881
3880
  * Use optional properties for data that is only present on specific pages. Do not add an index signature (`[key: string]: any`).
3882
3881
  */
3882
+ // eslint-disable-next-line @typescript-eslint/no-empty-object-type
3883
3883
  export interface PageData {}
3884
3884
 
3885
3885
  /**
3886
3886
  * 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`.
3887
3887
  */
3888
+ // eslint-disable-next-line @typescript-eslint/no-empty-object-type
3888
3889
  export interface PageState {}
3889
3890
 
3890
3891
  /**
3891
3892
  * If your adapter provides [platform-specific context](https://svelte.dev/docs/kit/adapters#Platform-specific-context) via `event.platform`, you can specify it here.
3892
3893
  */
3894
+ // eslint-disable-next-line @typescript-eslint/no-empty-object-type
3893
3895
  export interface Platform {}
3894
3896
  }
3895
3897
 
@@ -45,6 +45,12 @@
45
45
  "AfterNavigate",
46
46
  "Page",
47
47
  "ParamMatcher",
48
+ "ParamValue",
49
+ "ParamDefinition",
50
+ "DefinedParams",
51
+ "ParamEntry",
52
+ "MatcherParam",
53
+ "defineParams",
48
54
  "RequestedEntry",
49
55
  "LiveRequestedEntry",
50
56
  "QueryRequestedResult",
@@ -66,6 +72,8 @@
66
72
  "Redirect",
67
73
  "SubmitFunction",
68
74
  "Snapshot",
75
+ "ReadonlyURLSearchParams",
76
+ "ReadonlyURL",
69
77
  "WillRecurseIndefinitely",
70
78
  "InputTypeMap",
71
79
  "RemoteFormFieldType",
@@ -130,7 +138,6 @@
130
138
  "RecursiveRequired",
131
139
  "RouteParam",
132
140
  "RouteData",
133
- "SSRComponent",
134
141
  "SSRComponentLoader",
135
142
  "UniversalNode",
136
143
  "ServerNode",
@@ -193,8 +200,7 @@
193
200
  "HasNonOptionalBoolean",
194
201
  "page",
195
202
  "navigating",
196
- "updated",
197
- "getStores"
203
+ "updated"
198
204
  ],
199
205
  "sources": [
200
206
  "../src/exports/public.d.ts",
@@ -214,9 +220,8 @@
214
220
  "../src/runtime/app/paths/client.js",
215
221
  "../src/runtime/app/paths/types.d.ts",
216
222
  "../src/runtime/app/server/index.js",
217
- "../src/exports/internal/event.js",
218
- "../src/runtime/app/state/index.js",
219
- "../src/runtime/app/stores.js"
223
+ "../src/exports/internal/server/event.js",
224
+ "../src/runtime/app/state/index.js"
220
225
  ],
221
226
  "sourcesContent": [
222
227
  null,
@@ -237,9 +242,8 @@
237
242
  null,
238
243
  null,
239
244
  null,
240
- null,
241
245
  null
242
246
  ],
243
- "mappings": "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",
247
+ "mappings": "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",
244
248
  "ignoreList": []
245
249
  }