@sveltejs/kit 2.65.1 → 2.66.0
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/package.json +3 -3
- package/src/core/adapt/builder.js +33 -6
- package/src/core/config/index.js +60 -2
- package/src/core/config/options.js +12 -3
- package/src/core/env.js +7 -3
- package/src/core/postbuild/analyse.js +4 -1
- package/src/core/postbuild/prerender.js +13 -4
- package/src/core/sync/create_manifest_data/index.js +13 -2
- package/src/core/sync/write_client_manifest.js +2 -0
- package/src/core/sync/write_server.js +12 -10
- package/src/core/sync/write_tsconfig.js +1 -2
- package/src/exports/internal/env.js +1 -1
- package/src/exports/public.d.ts +13 -1
- package/src/exports/vite/build/build_server.js +6 -1
- package/src/exports/vite/build/build_service_worker.js +8 -2
- package/src/exports/vite/index.js +44 -16
- package/src/exports/vite/preview/index.js +13 -4
- package/src/exports/vite/static_analysis/index.js +8 -3
- package/src/runtime/app/paths/server.js +7 -1
- package/src/runtime/app/server/remote/form.js +2 -2
- package/src/runtime/client/client.js +30 -8
- package/src/runtime/client/fetcher.js +3 -2
- package/src/runtime/client/remote-functions/form.svelte.js +16 -6
- package/src/runtime/client/remote-functions/prerender.svelte.js +5 -0
- package/src/runtime/client/remote-functions/query/instance.svelte.js +8 -1
- package/src/runtime/client/remote-functions/query-live/instance.svelte.js +25 -8
- package/src/runtime/client/remote-functions/shared.svelte.js +7 -1
- package/src/runtime/client/types.d.ts +6 -0
- package/src/runtime/form-utils.js +1 -0
- package/src/runtime/server/page/render.js +15 -13
- package/src/runtime/server/remote.js +9 -3
- package/src/runtime/server/respond.js +4 -1
- package/src/types/internal.d.ts +3 -1
- package/src/types/private.d.ts +24 -1
- package/src/utils/shared-iterator.js +5 -0
- package/src/utils/url.js +1 -1
- package/src/version.js +1 -1
- package/types/index.d.ts +54 -11
- package/types/index.d.ts.map +2 -1
package/types/index.d.ts
CHANGED
|
@@ -116,7 +116,7 @@ declare module '@sveltejs/kit' {
|
|
|
116
116
|
generateFallback: (dest: string) => Promise<void>;
|
|
117
117
|
|
|
118
118
|
/**
|
|
119
|
-
* Generate a module exposing build-time environment variables as `$env/dynamic/public` if the app uses it.
|
|
119
|
+
* Generate a module exposing build-time environment variables as `$env/dynamic/public` or `$app/env/public` if the app uses it.
|
|
120
120
|
*/
|
|
121
121
|
generateEnvModule: () => void;
|
|
122
122
|
|
|
@@ -1524,6 +1524,10 @@ declare module '@sveltejs/kit' {
|
|
|
1524
1524
|
locals: App.Locals;
|
|
1525
1525
|
/**
|
|
1526
1526
|
* The parameters of the current route - e.g. for a route like `/blog/[slug]`, a `{ slug: string }` object.
|
|
1527
|
+
*
|
|
1528
|
+
* In the context of a remote function request initiated by the client, this relates to the page the remote function
|
|
1529
|
+
* was called from, _not_ the URL of the endpoint SvelteKit creates for the remote function. Never use this to determine
|
|
1530
|
+
* whether or not a user is authorized to access certain data, as these values are part of the request which could be manipulated.
|
|
1527
1531
|
*/
|
|
1528
1532
|
params: Params;
|
|
1529
1533
|
/**
|
|
@@ -1540,6 +1544,10 @@ declare module '@sveltejs/kit' {
|
|
|
1540
1544
|
route: {
|
|
1541
1545
|
/**
|
|
1542
1546
|
* The ID of the current route - e.g. for `src/routes/blog/[slug]`, it would be `/blog/[slug]`. It is `null` when no route is matched.
|
|
1547
|
+
*
|
|
1548
|
+
* In the context of a remote function request initiated by the client, this relates to the page the remote function
|
|
1549
|
+
* was called from, _not_ the URL of the endpoint SvelteKit creates for the remote function. Never use this to determine
|
|
1550
|
+
* whether or not a user is authorized to access certain data, as these values are part of the request which could be manipulated.
|
|
1543
1551
|
*/
|
|
1544
1552
|
id: RouteId;
|
|
1545
1553
|
};
|
|
@@ -1568,6 +1576,10 @@ declare module '@sveltejs/kit' {
|
|
|
1568
1576
|
setHeaders: (headers: Record<string, string>) => void;
|
|
1569
1577
|
/**
|
|
1570
1578
|
* The requested URL.
|
|
1579
|
+
*
|
|
1580
|
+
* In the context of a remote function request initiated by the client, this relates to the page the remote function
|
|
1581
|
+
* was called from, _not_ the URL of the endpoint SvelteKit creates for the remote function. Never use this to determine
|
|
1582
|
+
* whether or not a user is authorized to access certain data, as these values are part of the request which could be manipulated.
|
|
1571
1583
|
*/
|
|
1572
1584
|
url: URL;
|
|
1573
1585
|
/**
|
|
@@ -2384,7 +2396,10 @@ declare module '@sveltejs/kit' {
|
|
|
2384
2396
|
| 'unsafe-eval'
|
|
2385
2397
|
| 'unsafe-hashes'
|
|
2386
2398
|
| 'unsafe-inline'
|
|
2399
|
+
| 'unsafe-allow-redirects'
|
|
2400
|
+
| 'unsafe-webtransport-hashes'
|
|
2387
2401
|
| 'wasm-unsafe-eval'
|
|
2402
|
+
| 'trusted-types-eval'
|
|
2388
2403
|
| 'none';
|
|
2389
2404
|
type CryptoSource = `${'nonce' | 'sha256' | 'sha384' | 'sha512'}-${string}`;
|
|
2390
2405
|
type FrameSource = HostSource | SchemeSource | 'self' | 'none';
|
|
@@ -2393,7 +2408,16 @@ declare module '@sveltejs/kit' {
|
|
|
2393
2408
|
type HostProtocolSchemes = `${string}://` | '';
|
|
2394
2409
|
type HttpDelineator = '/' | '?' | '#' | '\\';
|
|
2395
2410
|
type PortScheme = `:${number}` | '' | ':*';
|
|
2396
|
-
type SchemeSource =
|
|
2411
|
+
type SchemeSource =
|
|
2412
|
+
| 'http:'
|
|
2413
|
+
| 'https:'
|
|
2414
|
+
| 'ws:'
|
|
2415
|
+
| 'wss:'
|
|
2416
|
+
| 'data:'
|
|
2417
|
+
| 'mediastream:'
|
|
2418
|
+
| 'blob:'
|
|
2419
|
+
| 'filesystem:'
|
|
2420
|
+
| (`${string}:` & {});
|
|
2397
2421
|
type Source = HostSource | SchemeSource | CryptoSource | BaseSource;
|
|
2398
2422
|
type Sources = Source[];
|
|
2399
2423
|
}
|
|
@@ -2612,6 +2636,9 @@ declare module '@sveltejs/kit' {
|
|
|
2612
2636
|
routes?: SSRClientRoute[];
|
|
2613
2637
|
stylesheets: string[];
|
|
2614
2638
|
fonts: string[];
|
|
2639
|
+
/**
|
|
2640
|
+
* Whether the client uses public dynamic env vars — `$env/dynamic/public` or `$app/env/public`.
|
|
2641
|
+
*/
|
|
2615
2642
|
uses_env_dynamic_public: boolean;
|
|
2616
2643
|
/** Only set in case of `bundleStrategy === 'inline'`. */
|
|
2617
2644
|
inline?: {
|
|
@@ -2824,7 +2851,7 @@ declare module '@sveltejs/kit' {
|
|
|
2824
2851
|
* @throws {HttpError} This error instructs SvelteKit to initiate HTTP error handling.
|
|
2825
2852
|
* @throws {Error} If the provided status is invalid (not between 400 and 599).
|
|
2826
2853
|
*/
|
|
2827
|
-
function
|
|
2854
|
+
export function error(status: number, body: App.Error): never;
|
|
2828
2855
|
/**
|
|
2829
2856
|
* Throws an error with a HTTP status code and an optional message.
|
|
2830
2857
|
* When called during request handling, this will cause SvelteKit to
|
|
@@ -2835,7 +2862,7 @@ declare module '@sveltejs/kit' {
|
|
|
2835
2862
|
* @throws {HttpError} This error instructs SvelteKit to initiate HTTP error handling.
|
|
2836
2863
|
* @throws {Error} If the provided status is invalid (not between 400 and 599).
|
|
2837
2864
|
*/
|
|
2838
|
-
function
|
|
2865
|
+
export function error(status: number, body?: {
|
|
2839
2866
|
message: string;
|
|
2840
2867
|
} extends App.Error ? App.Error | string | undefined : never): never;
|
|
2841
2868
|
/**
|
|
@@ -2976,7 +3003,7 @@ declare module '@sveltejs/kit' {
|
|
|
2976
3003
|
}
|
|
2977
3004
|
const valid_page_options_array: readonly ["ssr", "prerender", "csr", "trailingSlash", "config", "entries", "load"];
|
|
2978
3005
|
|
|
2979
|
-
export {
|
|
3006
|
+
export {};
|
|
2980
3007
|
}
|
|
2981
3008
|
|
|
2982
3009
|
declare module '@sveltejs/kit/hooks' {
|
|
@@ -3091,13 +3118,14 @@ declare module '@sveltejs/kit/node/polyfills' {
|
|
|
3091
3118
|
|
|
3092
3119
|
declare module '@sveltejs/kit/vite' {
|
|
3093
3120
|
import type { KitConfig } from '@sveltejs/kit';
|
|
3094
|
-
import type { SvelteConfig } from '@sveltejs/vite-plugin-svelte';
|
|
3121
|
+
import type { Options, SvelteConfig } from '@sveltejs/vite-plugin-svelte';
|
|
3095
3122
|
import type { Plugin } from 'vite';
|
|
3096
3123
|
/**
|
|
3097
3124
|
* Returns the SvelteKit Vite plugins.
|
|
3098
3125
|
* Since version 2.62.0 you can pass [configuration](configuration) directly, in which case `svelte.config.js` is ignored.
|
|
3126
|
+
* Any options that don't belong to SvelteKit are passed through to `vite-plugin-svelte`.
|
|
3099
3127
|
* */
|
|
3100
|
-
export function sveltekit(config?: KitConfig & Omit<
|
|
3128
|
+
export function sveltekit(config?: KitConfig & Omit<Options, "onwarn"> & Pick<SvelteConfig, "vitePlugin">): Promise<Plugin[]>;
|
|
3101
3129
|
|
|
3102
3130
|
export {};
|
|
3103
3131
|
}
|
|
@@ -3331,7 +3359,7 @@ declare module '$app/navigation' {
|
|
|
3331
3359
|
}
|
|
3332
3360
|
|
|
3333
3361
|
declare module '$app/paths' {
|
|
3334
|
-
import type { RouteIdWithSearchOrHash, PathnameWithSearchOrHash, ResolvedPathname, RouteId, RouteParams, Asset, Pathname
|
|
3362
|
+
import type { RouteIdWithSearchOrHash, PathnameWithSearchOrHash, ResolvedPathname, RouteId, RouteParams, Asset, Pathname } from '$app/types';
|
|
3335
3363
|
/**
|
|
3336
3364
|
* A string that matches [`config.kit.paths.base`](https://svelte.dev/docs/kit/configuration#paths).
|
|
3337
3365
|
*
|
|
@@ -3428,7 +3456,7 @@ declare module '$app/paths' {
|
|
|
3428
3456
|
* @since 2.52.0
|
|
3429
3457
|
*
|
|
3430
3458
|
* */
|
|
3431
|
-
export function match(url:
|
|
3459
|
+
export function match(url: Pathname | URL | (string & {})): Promise<{
|
|
3432
3460
|
id: RouteId;
|
|
3433
3461
|
params: Record<string, string>;
|
|
3434
3462
|
} | null>;
|
|
@@ -3507,7 +3535,7 @@ declare module '$app/server' {
|
|
|
3507
3535
|
*
|
|
3508
3536
|
* @since 2.27
|
|
3509
3537
|
*/
|
|
3510
|
-
export function form<Schema extends StandardSchemaV1<RemoteFormInput, Record<string, any>>, Output>(validate: Schema, fn: (data: StandardSchemaV1.InferOutput<Schema>, issue: InvalidField<StandardSchemaV1.InferInput<Schema>>) => MaybePromise<Output>): RemoteForm<StandardSchemaV1.InferInput<Schema>, Output>;
|
|
3538
|
+
export function form<Schema extends StandardSchemaV1<RemoteFormInput, Record<string, any>>, Output>(validate: true extends HasNonOptionalBoolean<StandardSchemaV1.InferInput<Schema>> ? "Error: All booleans in form schemas must be optional (e.g. `v.optional(v.boolean(), false)`) because checkbox inputs do not send a false value when unchecked." : Schema, fn: (data: StandardSchemaV1.InferOutput<Schema>, issue: InvalidField<StandardSchemaV1.InferInput<Schema>>) => MaybePromise<Output>): RemoteForm<StandardSchemaV1.InferInput<Schema>, Output>;
|
|
3511
3539
|
/**
|
|
3512
3540
|
* Creates a remote prerender function. When called from the browser, the function will be invoked on the server via a `fetch` call.
|
|
3513
3541
|
*
|
|
@@ -3675,6 +3703,19 @@ declare module '$app/server' {
|
|
|
3675
3703
|
type RemotePrerenderInputsGenerator<Input = any> = () => MaybePromise<Input[]>;
|
|
3676
3704
|
type MaybePromise<T> = T | Promise<T>;
|
|
3677
3705
|
|
|
3706
|
+
type IsAny<T> = 0 extends 1 & T ? true : false;
|
|
3707
|
+
|
|
3708
|
+
type HasNonOptionalBoolean<T> =
|
|
3709
|
+
IsAny<T> extends true
|
|
3710
|
+
? never
|
|
3711
|
+
: [T] extends [boolean]
|
|
3712
|
+
? true
|
|
3713
|
+
: T extends Array<infer U>
|
|
3714
|
+
? HasNonOptionalBoolean<U>
|
|
3715
|
+
: T extends Record<string, any>
|
|
3716
|
+
? { [K in keyof T]: HasNonOptionalBoolean<T[K]> }[keyof T]
|
|
3717
|
+
: never;
|
|
3718
|
+
|
|
3678
3719
|
export {};
|
|
3679
3720
|
}
|
|
3680
3721
|
|
|
@@ -3778,7 +3819,9 @@ declare module '$app/stores' {
|
|
|
3778
3819
|
};
|
|
3779
3820
|
|
|
3780
3821
|
export {};
|
|
3781
|
-
}
|
|
3822
|
+
}
|
|
3823
|
+
|
|
3824
|
+
/**
|
|
3782
3825
|
* 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:
|
|
3783
3826
|
*
|
|
3784
3827
|
* ```ts
|
package/types/index.d.ts.map
CHANGED
|
@@ -189,6 +189,7 @@
|
|
|
189
189
|
"getRequestEvent",
|
|
190
190
|
"RemoteLiveQueryUserFunctionReturnType",
|
|
191
191
|
"RemotePrerenderInputsGenerator",
|
|
192
|
+
"HasNonOptionalBoolean",
|
|
192
193
|
"page",
|
|
193
194
|
"navigating",
|
|
194
195
|
"updated",
|
|
@@ -246,6 +247,6 @@
|
|
|
246
247
|
null,
|
|
247
248
|
null
|
|
248
249
|
],
|
|
249
|
-
"mappings": "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
|
|
250
|
+
"mappings": "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",
|
|
250
251
|
"ignoreList": []
|
|
251
252
|
}
|