@sveltejs/kit 2.27.0 → 2.27.2
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 +1 -1
- package/src/core/generate_manifest/index.js +1 -1
- package/src/exports/vite/index.js +9 -2
- package/src/runtime/app/server/remote/command.js +1 -1
- package/src/runtime/app/server/remote/form.js +3 -3
- package/src/runtime/app/server/remote/prerender.js +2 -2
- package/src/runtime/app/server/remote/query.js +1 -1
- package/src/runtime/client/client.js +1 -2
- package/src/runtime/client/remote-functions/command.js +2 -2
- package/src/runtime/client/remote-functions/form.svelte.js +3 -6
- package/src/runtime/client/remote-functions/prerender.svelte.js +2 -2
- package/src/runtime/client/remote-functions/query.svelte.js +2 -2
- package/src/runtime/server/event-state.js +2 -3
- package/src/runtime/server/page/render.js +27 -28
- package/src/types/global-private.d.ts +15 -0
- package/src/types/internal.d.ts +1 -1
- package/src/utils/routing.js +2 -2
- package/src/version.js +1 -1
- package/types/index.d.ts +10 -10
- package/types/index.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -59,7 +59,7 @@ export function generate_manifest({ build_data, prerendered, relative_path, rout
|
|
|
59
59
|
assets.push(build_data.service_worker);
|
|
60
60
|
}
|
|
61
61
|
|
|
62
|
-
// In case of server
|
|
62
|
+
// In case of server-side route resolution, we need to include all matchers. Prerendered routes are not part
|
|
63
63
|
// of the server manifest, and they could reference matchers that then would not be included.
|
|
64
64
|
const matchers = new Set(
|
|
65
65
|
build_data.client?.nodes ? Object.keys(build_data.manifest_data.matchers) : undefined
|
|
@@ -331,7 +331,10 @@ async function kit({ svelte_config }) {
|
|
|
331
331
|
__SVELTEKIT_DEV__: 'false',
|
|
332
332
|
__SVELTEKIT_EMBEDDED__: s(kit.embedded),
|
|
333
333
|
__SVELTEKIT_EXPERIMENTAL__REMOTE_FUNCTIONS__: s(kit.experimental.remoteFunctions),
|
|
334
|
-
__SVELTEKIT_CLIENT_ROUTING__: kit.router.resolution === 'client' ? 'true' : 'false'
|
|
334
|
+
__SVELTEKIT_CLIENT_ROUTING__: kit.router.resolution === 'client' ? 'true' : 'false',
|
|
335
|
+
__SVELTEKIT_PAYLOAD__: new_config.build.ssr
|
|
336
|
+
? '{}'
|
|
337
|
+
: `globalThis.__sveltekit_${version_hash}`
|
|
335
338
|
};
|
|
336
339
|
|
|
337
340
|
if (!secondary_build_started) {
|
|
@@ -343,9 +346,13 @@ async function kit({ svelte_config }) {
|
|
|
343
346
|
__SVELTEKIT_DEV__: 'true',
|
|
344
347
|
__SVELTEKIT_EMBEDDED__: s(kit.embedded),
|
|
345
348
|
__SVELTEKIT_EXPERIMENTAL__REMOTE_FUNCTIONS__: s(kit.experimental.remoteFunctions),
|
|
346
|
-
__SVELTEKIT_CLIENT_ROUTING__: kit.router.resolution === 'client' ? 'true' : 'false'
|
|
349
|
+
__SVELTEKIT_CLIENT_ROUTING__: kit.router.resolution === 'client' ? 'true' : 'false',
|
|
350
|
+
__SVELTEKIT_PAYLOAD__: 'globalThis.__sveltekit_dev'
|
|
347
351
|
};
|
|
348
352
|
|
|
353
|
+
// @ts-ignore this prevents a reference error if `client.js` is imported on the server
|
|
354
|
+
globalThis.__sveltekit_dev = {};
|
|
355
|
+
|
|
349
356
|
// These Kit dependencies are packaged as CommonJS, which means they must always be externalized.
|
|
350
357
|
// Without this, the tests will still pass but `pnpm dev` will fail in projects that link `@sveltejs/kit`.
|
|
351
358
|
/** @type {NonNullable<import('vite').UserConfig['ssr']>} */ (new_config.ssr).external = [
|
|
@@ -39,7 +39,7 @@ import { get_event_state } from '../../../server/event-state.js';
|
|
|
39
39
|
* @overload
|
|
40
40
|
* @param {Schema} validate
|
|
41
41
|
* @param {(arg: StandardSchemaV1.InferOutput<Schema>) => Output} fn
|
|
42
|
-
* @returns {RemoteCommand<StandardSchemaV1.
|
|
42
|
+
* @returns {RemoteCommand<StandardSchemaV1.InferInput<Schema>, Output>}
|
|
43
43
|
* @since 2.27
|
|
44
44
|
*/
|
|
45
45
|
/**
|
|
@@ -67,7 +67,7 @@ export function form(fn) {
|
|
|
67
67
|
// We don't need to care about args or deduplicating calls, because uneval results are only relevant in full page reloads
|
|
68
68
|
// where only one form submission is active at the same time
|
|
69
69
|
if (!event.isRemoteRequest) {
|
|
70
|
-
state.
|
|
70
|
+
(state.remote_data ??= {})[__.id] = result;
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
return result;
|
|
@@ -89,8 +89,8 @@ export function form(fn) {
|
|
|
89
89
|
Object.defineProperty(instance, 'result', {
|
|
90
90
|
get() {
|
|
91
91
|
try {
|
|
92
|
-
const {
|
|
93
|
-
return
|
|
92
|
+
const { remote_data } = get_event_state(getRequestEvent());
|
|
93
|
+
return remote_data?.[__.id];
|
|
94
94
|
} catch {
|
|
95
95
|
return undefined;
|
|
96
96
|
}
|
|
@@ -51,8 +51,8 @@ import { get_event_state } from '../../../server/event-state.js';
|
|
|
51
51
|
* @overload
|
|
52
52
|
* @param {Schema} schema
|
|
53
53
|
* @param {(arg: StandardSchemaV1.InferOutput<Schema>) => MaybePromise<Output>} fn
|
|
54
|
-
* @param {{ inputs?: RemotePrerenderInputsGenerator<StandardSchemaV1.
|
|
55
|
-
* @returns {RemotePrerenderFunction<StandardSchemaV1.
|
|
54
|
+
* @param {{ inputs?: RemotePrerenderInputsGenerator<StandardSchemaV1.InferInput<Schema>>, dynamic?: boolean }} [options]
|
|
55
|
+
* @returns {RemotePrerenderFunction<StandardSchemaV1.InferInput<Schema>, Output>}
|
|
56
56
|
* @since 2.27
|
|
57
57
|
*/
|
|
58
58
|
/**
|
|
@@ -46,7 +46,7 @@ import { get_event_state } from '../../../server/event-state.js';
|
|
|
46
46
|
* @overload
|
|
47
47
|
* @param {Schema} schema
|
|
48
48
|
* @param {(arg: StandardSchemaV1.InferOutput<Schema>) => MaybePromise<Output>} fn
|
|
49
|
-
* @returns {RemoteQueryFunction<StandardSchemaV1.
|
|
49
|
+
* @returns {RemoteQueryFunction<StandardSchemaV1.InferInput<Schema>, Output>}
|
|
50
50
|
* @since 2.27
|
|
51
51
|
*/
|
|
52
52
|
/**
|
|
@@ -178,7 +178,7 @@ let target;
|
|
|
178
178
|
export let app;
|
|
179
179
|
|
|
180
180
|
/** @type {Record<string, any>} */
|
|
181
|
-
export
|
|
181
|
+
export const remote_responses = __SVELTEKIT_PAYLOAD__.data ?? {};
|
|
182
182
|
|
|
183
183
|
/** @type {Array<((url: URL) => boolean)>} */
|
|
184
184
|
const invalidated = [];
|
|
@@ -288,7 +288,6 @@ export async function start(_app, _target, hydrate) {
|
|
|
288
288
|
}
|
|
289
289
|
|
|
290
290
|
app = _app;
|
|
291
|
-
remote_responses = hydrate?.remote ?? {};
|
|
292
291
|
|
|
293
292
|
await _app.hooks.init?.();
|
|
294
293
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/** @import { RemoteCommand, RemoteQueryOverride } from '@sveltejs/kit' */
|
|
2
2
|
/** @import { RemoteFunctionResponse } from 'types' */
|
|
3
3
|
/** @import { Query } from './query.svelte.js' */
|
|
4
|
-
import { app_dir } from '__sveltekit/paths';
|
|
4
|
+
import { app_dir, base } from '__sveltekit/paths';
|
|
5
5
|
import * as devalue from 'devalue';
|
|
6
6
|
import { HttpError } from '@sveltejs/kit/internal';
|
|
7
7
|
import { app } from '../client.js';
|
|
@@ -25,7 +25,7 @@ export function command(id) {
|
|
|
25
25
|
// Wait a tick to give room for the `updates` method to be called
|
|
26
26
|
await Promise.resolve();
|
|
27
27
|
|
|
28
|
-
const response = await fetch(
|
|
28
|
+
const response = await fetch(`${base}/${app_dir}/remote/${id}`, {
|
|
29
29
|
method: 'POST',
|
|
30
30
|
body: JSON.stringify({
|
|
31
31
|
payload: stringify_remote_arg(arg, app.hooks.transport),
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
/** @import { RemoteForm, RemoteQueryOverride } from '@sveltejs/kit' */
|
|
2
2
|
/** @import { RemoteFunctionResponse } from 'types' */
|
|
3
3
|
/** @import { Query } from './query.svelte.js' */
|
|
4
|
-
import { app_dir } from '__sveltekit/paths';
|
|
4
|
+
import { app_dir, base } from '__sveltekit/paths';
|
|
5
5
|
import * as devalue from 'devalue';
|
|
6
6
|
import { DEV } from 'esm-env';
|
|
7
7
|
import { HttpError } from '@sveltejs/kit/internal';
|
|
8
8
|
import { app, remote_responses, started, goto, set_nearest_error_page } from '../client.js';
|
|
9
|
-
import { create_remote_cache_key } from '../../shared.js';
|
|
10
9
|
import { tick } from 'svelte';
|
|
11
10
|
import { refresh_queries, release_overrides } from './shared.svelte.js';
|
|
12
11
|
|
|
@@ -26,9 +25,7 @@ export function form(id) {
|
|
|
26
25
|
const action = '?/remote=' + encodeURIComponent(action_id);
|
|
27
26
|
|
|
28
27
|
/** @type {any} */
|
|
29
|
-
let result = $state(
|
|
30
|
-
!started ? (remote_responses[create_remote_cache_key(action, '')] ?? undefined) : undefined
|
|
31
|
-
);
|
|
28
|
+
let result = $state(started ? undefined : remote_responses[action_id]);
|
|
32
29
|
|
|
33
30
|
/**
|
|
34
31
|
* @param {FormData} data
|
|
@@ -64,7 +61,7 @@ export function form(id) {
|
|
|
64
61
|
data.set('sveltekit:remote_refreshes', JSON.stringify(updates.map((u) => u._key)));
|
|
65
62
|
}
|
|
66
63
|
|
|
67
|
-
const response = await fetch(
|
|
64
|
+
const response = await fetch(`${base}/${app_dir}/remote/${action_id}`, {
|
|
68
65
|
method: 'POST',
|
|
69
66
|
body: data
|
|
70
67
|
});
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/** @import { RemoteFunctionResponse } from 'types' */
|
|
2
|
-
import { app_dir } from '__sveltekit/paths';
|
|
2
|
+
import { app_dir, base } from '__sveltekit/paths';
|
|
3
3
|
import { version } from '__sveltekit/environment';
|
|
4
4
|
import * as devalue from 'devalue';
|
|
5
5
|
import { DEV } from 'esm-env';
|
|
@@ -124,7 +124,7 @@ export function prerender(id) {
|
|
|
124
124
|
}
|
|
125
125
|
}
|
|
126
126
|
|
|
127
|
-
const url =
|
|
127
|
+
const url = `${base}/${app_dir}/remote/${id}${payload ? `/${payload}` : ''}`;
|
|
128
128
|
|
|
129
129
|
// Check the Cache API first
|
|
130
130
|
if (prerender_cache) {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/** @import { RemoteQueryFunction } from '@sveltejs/kit' */
|
|
2
|
-
import { app_dir } from '__sveltekit/paths';
|
|
2
|
+
import { app_dir, base } from '__sveltekit/paths';
|
|
3
3
|
import { remote_responses, started } from '../client.js';
|
|
4
4
|
import { tick } from 'svelte';
|
|
5
5
|
import { create_remote_function, remote_request } from './shared.svelte.js';
|
|
@@ -18,7 +18,7 @@ export function query(id) {
|
|
|
18
18
|
}
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
const url =
|
|
21
|
+
const url = `${base}/${app_dir}/remote/${id}${payload ? `?payload=${payload}` : ''}`;
|
|
22
22
|
|
|
23
23
|
return await remote_request(url);
|
|
24
24
|
});
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/** @import { RequestEvent } from '@sveltejs/kit' */
|
|
2
|
-
/** @import { PrerenderOptions, ServerHooks, SSROptions, SSRState } from 'types' */
|
|
2
|
+
/** @import { MaybePromise, PrerenderOptions, ServerHooks, SSROptions, SSRState } from 'types' */
|
|
3
3
|
|
|
4
4
|
export const EVENT_STATE = Symbol('remote');
|
|
5
5
|
|
|
@@ -11,8 +11,7 @@ export const EVENT_STATE = Symbol('remote');
|
|
|
11
11
|
* transport: ServerHooks['transport'];
|
|
12
12
|
* handleValidationError: ServerHooks['handleValidationError'];
|
|
13
13
|
* form_instances?: Map<any, any>;
|
|
14
|
-
*
|
|
15
|
-
* remote_data?: Record<string, Promise<any>>;
|
|
14
|
+
* remote_data?: Record<string, MaybePromise<any>>;
|
|
16
15
|
* refreshes?: Record<string, any>;
|
|
17
16
|
* }} RequestEventState
|
|
18
17
|
*/
|
|
@@ -178,11 +178,11 @@ export async function render_response({
|
|
|
178
178
|
globalThis.fetch = (info, init) => {
|
|
179
179
|
if (typeof info === 'string' && !SCHEME.test(info)) {
|
|
180
180
|
throw new Error(
|
|
181
|
-
`Cannot call \`fetch\` eagerly during server
|
|
181
|
+
`Cannot call \`fetch\` eagerly during server-side rendering with relative URL (${info}) — put your \`fetch\` calls inside \`onMount\` or a \`load\` function instead`
|
|
182
182
|
);
|
|
183
183
|
} else if (!warned) {
|
|
184
184
|
console.warn(
|
|
185
|
-
'Avoid calling `fetch` eagerly during server
|
|
185
|
+
'Avoid calling `fetch` eagerly during server-side rendering — put your `fetch` calls inside `onMount` or a `load` function instead'
|
|
186
186
|
);
|
|
187
187
|
warned = true;
|
|
188
188
|
}
|
|
@@ -378,6 +378,29 @@ export async function render_response({
|
|
|
378
378
|
}`);
|
|
379
379
|
}
|
|
380
380
|
|
|
381
|
+
const { remote_data } = get_event_state(event);
|
|
382
|
+
|
|
383
|
+
if (remote_data) {
|
|
384
|
+
/** @type {Record<string, any>} */
|
|
385
|
+
const remote = {};
|
|
386
|
+
|
|
387
|
+
for (const key in remote_data) {
|
|
388
|
+
remote[key] = await remote_data[key];
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
// TODO this is repeated in a few places — dedupe it
|
|
392
|
+
const replacer = (/** @type {any} */ thing) => {
|
|
393
|
+
for (const key in options.hooks.transport) {
|
|
394
|
+
const encoded = options.hooks.transport[key].encode(thing);
|
|
395
|
+
if (encoded) {
|
|
396
|
+
return `app.decode('${key}', ${devalue.uneval(encoded, replacer)})`;
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
};
|
|
400
|
+
|
|
401
|
+
properties.push(`data: ${devalue.uneval(remote, replacer)}`);
|
|
402
|
+
}
|
|
403
|
+
|
|
381
404
|
// create this before declaring `data`, which may contain references to `${global}`
|
|
382
405
|
blocks.push(`${global} = {
|
|
383
406
|
${properties.join(',\n\t\t\t\t\t\t')}
|
|
@@ -388,7 +411,7 @@ export async function render_response({
|
|
|
388
411
|
blocks.push('const element = document.currentScript.parentElement;');
|
|
389
412
|
|
|
390
413
|
if (page_config.ssr) {
|
|
391
|
-
const serialized = { form: 'null', error: 'null'
|
|
414
|
+
const serialized = { form: 'null', error: 'null' };
|
|
392
415
|
|
|
393
416
|
if (form_value) {
|
|
394
417
|
serialized.form = uneval_action_response(
|
|
@@ -402,35 +425,11 @@ export async function render_response({
|
|
|
402
425
|
serialized.error = devalue.uneval(error);
|
|
403
426
|
}
|
|
404
427
|
|
|
405
|
-
const { remote_data } = get_event_state(event);
|
|
406
|
-
|
|
407
|
-
if (remote_data) {
|
|
408
|
-
/** @type {Record<string, any>} */
|
|
409
|
-
const remote = {};
|
|
410
|
-
|
|
411
|
-
for (const key in remote_data) {
|
|
412
|
-
remote[key] = await remote_data[key];
|
|
413
|
-
}
|
|
414
|
-
|
|
415
|
-
// TODO this is repeated in a few places — dedupe it
|
|
416
|
-
const replacer = (/** @type {any} */ thing) => {
|
|
417
|
-
for (const key in options.hooks.transport) {
|
|
418
|
-
const encoded = options.hooks.transport[key].encode(thing);
|
|
419
|
-
if (encoded) {
|
|
420
|
-
return `app.decode('${key}', ${devalue.uneval(encoded, replacer)})`;
|
|
421
|
-
}
|
|
422
|
-
}
|
|
423
|
-
};
|
|
424
|
-
|
|
425
|
-
serialized.remote = devalue.uneval(remote, replacer);
|
|
426
|
-
}
|
|
427
|
-
|
|
428
428
|
const hydrate = [
|
|
429
429
|
`node_ids: [${branch.map(({ node }) => node.index).join(', ')}]`,
|
|
430
430
|
`data: ${data}`,
|
|
431
431
|
`form: ${serialized.form}`,
|
|
432
|
-
`error: ${serialized.error}
|
|
433
|
-
`remote: ${serialized.remote}`
|
|
432
|
+
`error: ${serialized.error}`
|
|
434
433
|
];
|
|
435
434
|
|
|
436
435
|
if (status !== 200) {
|
|
@@ -8,6 +8,21 @@ declare global {
|
|
|
8
8
|
const __SVELTEKIT_EXPERIMENTAL__REMOTE_FUNCTIONS__: boolean;
|
|
9
9
|
/** True if `config.kit.router.resolution === 'client'` */
|
|
10
10
|
const __SVELTEKIT_CLIENT_ROUTING__: boolean;
|
|
11
|
+
/** The `__sveltekit_abc123` object in the init `<script>` */
|
|
12
|
+
const __SVELTEKIT_PAYLOAD__: {
|
|
13
|
+
/** The basepath, usually relative to the current page */
|
|
14
|
+
base: string;
|
|
15
|
+
/** Path to externally-hosted assets */
|
|
16
|
+
assets?: string;
|
|
17
|
+
/** Public environment variables */
|
|
18
|
+
env?: Record<string, string>;
|
|
19
|
+
/** Serialized data from remote functions */
|
|
20
|
+
data?: Record<string, any>;
|
|
21
|
+
/** Create a placeholder promise */
|
|
22
|
+
defer?: (id: number) => Promise<any>;
|
|
23
|
+
/** Resolve a placeholder promise */
|
|
24
|
+
resolve?: (data: { id: number; data: any; error: any }) => void;
|
|
25
|
+
};
|
|
11
26
|
/**
|
|
12
27
|
* This makes the use of specific features visible at both dev and build time, in such a
|
|
13
28
|
* way that we can error when they are not supported by the target platform.
|
package/src/types/internal.d.ts
CHANGED
|
@@ -90,7 +90,7 @@ export interface BuildData {
|
|
|
90
90
|
*/
|
|
91
91
|
css?: Array<string[] | undefined>;
|
|
92
92
|
/**
|
|
93
|
-
* Contains the client route manifest in a form suitable for the server which is used for server
|
|
93
|
+
* Contains the client route manifest in a form suitable for the server which is used for server-side route resolution.
|
|
94
94
|
* Notably, it contains all routes, regardless of whether they are prerendered or not (those are missing in the optimized server route manifest).
|
|
95
95
|
* Only set in case of `router.resolution === 'server'`.
|
|
96
96
|
*/
|
package/src/utils/routing.js
CHANGED
|
@@ -26,7 +26,7 @@ export function parse_route_id(id) {
|
|
|
26
26
|
rest: true,
|
|
27
27
|
chained: true
|
|
28
28
|
});
|
|
29
|
-
return '(?:/(
|
|
29
|
+
return '(?:/([^]*))?';
|
|
30
30
|
}
|
|
31
31
|
// special case — /[[optional]]/ could contain zero segments
|
|
32
32
|
const optional_match = /^\[\[(\w+)(?:=(\w+))?\]\]$/.exec(segment);
|
|
@@ -86,7 +86,7 @@ export function parse_route_id(id) {
|
|
|
86
86
|
rest: !!is_rest,
|
|
87
87
|
chained: is_rest ? i === 1 && parts[0] === '' : false
|
|
88
88
|
});
|
|
89
|
-
return is_rest ? '(
|
|
89
|
+
return is_rest ? '([^]*?)' : is_optional ? '([^/]*)?' : '([^/]+?)';
|
|
90
90
|
}
|
|
91
91
|
|
|
92
92
|
return escape(content);
|
package/src/version.js
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -1893,7 +1893,7 @@ declare module '@sveltejs/kit' {
|
|
|
1893
1893
|
*/
|
|
1894
1894
|
css?: Array<string[] | undefined>;
|
|
1895
1895
|
/**
|
|
1896
|
-
* Contains the client route manifest in a form suitable for the server which is used for server
|
|
1896
|
+
* Contains the client route manifest in a form suitable for the server which is used for server-side route resolution.
|
|
1897
1897
|
* Notably, it contains all routes, regardless of whether they are prerendered or not (those are missing in the optimized server route manifest).
|
|
1898
1898
|
* Only set in case of `router.resolution === 'server'`.
|
|
1899
1899
|
*/
|
|
@@ -2120,7 +2120,7 @@ declare module '@sveltejs/kit' {
|
|
|
2120
2120
|
* Checks whether this is an error thrown by {@link error}.
|
|
2121
2121
|
* @param status The status to filter for.
|
|
2122
2122
|
* */
|
|
2123
|
-
export function isHttpError<T extends number>(e: unknown, status?: T
|
|
2123
|
+
export function isHttpError<T extends number>(e: unknown, status?: T): e is (HttpError_1 & {
|
|
2124
2124
|
status: T extends undefined ? never : T;
|
|
2125
2125
|
});
|
|
2126
2126
|
/**
|
|
@@ -2150,13 +2150,13 @@ declare module '@sveltejs/kit' {
|
|
|
2150
2150
|
* @param data The value that will be serialized as JSON.
|
|
2151
2151
|
* @param init Options such as `status` and `headers` that will be added to the response. `Content-Type: application/json` and `Content-Length` headers will be added automatically.
|
|
2152
2152
|
*/
|
|
2153
|
-
export function json(data: any, init?: ResponseInit
|
|
2153
|
+
export function json(data: any, init?: ResponseInit): Response;
|
|
2154
2154
|
/**
|
|
2155
2155
|
* Create a `Response` object from the supplied body.
|
|
2156
2156
|
* @param body The value that will be used as-is.
|
|
2157
2157
|
* @param init Options such as `status` and `headers` that will be added to the response. A `Content-Length` header will be added automatically.
|
|
2158
2158
|
*/
|
|
2159
|
-
export function text(body: string, init?: ResponseInit
|
|
2159
|
+
export function text(body: string, init?: ResponseInit): Response;
|
|
2160
2160
|
/**
|
|
2161
2161
|
* Create an `ActionFailure` object. Call when form submission fails.
|
|
2162
2162
|
* @param status The [HTTP status code](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client_error_responses). Must be in the range 400-599.
|
|
@@ -2455,7 +2455,7 @@ declare module '$app/navigation' {
|
|
|
2455
2455
|
invalidateAll?: boolean | undefined;
|
|
2456
2456
|
invalidate?: (string | URL | ((url: URL) => boolean))[] | undefined;
|
|
2457
2457
|
state?: App.PageState | undefined;
|
|
2458
|
-
}
|
|
2458
|
+
}): Promise<void>;
|
|
2459
2459
|
/**
|
|
2460
2460
|
* Causes any `load` functions belonging to the currently active page to re-run if they depend on the `url` in question, via `fetch` or `depends`. Returns a `Promise` that resolves when the page is subsequently updated.
|
|
2461
2461
|
*
|
|
@@ -2484,7 +2484,7 @@ declare module '$app/navigation' {
|
|
|
2484
2484
|
* */
|
|
2485
2485
|
export function refreshAll({ includeLoadFunctions }?: {
|
|
2486
2486
|
includeLoadFunctions?: boolean;
|
|
2487
|
-
}
|
|
2487
|
+
}): Promise<void>;
|
|
2488
2488
|
/**
|
|
2489
2489
|
* Programmatically preloads the given page, which means
|
|
2490
2490
|
* 1. ensuring that the code for the page is loaded, and
|
|
@@ -2652,7 +2652,7 @@ declare module '$app/server' {
|
|
|
2652
2652
|
*
|
|
2653
2653
|
* @since 2.27
|
|
2654
2654
|
*/
|
|
2655
|
-
export function command<Schema extends StandardSchemaV1, Output>(validate: Schema, fn: (arg: StandardSchemaV1.InferOutput<Schema>) => Output): RemoteCommand<StandardSchemaV1.
|
|
2655
|
+
export function command<Schema extends StandardSchemaV1, Output>(validate: Schema, fn: (arg: StandardSchemaV1.InferOutput<Schema>) => Output): RemoteCommand<StandardSchemaV1.InferInput<Schema>, Output>;
|
|
2656
2656
|
/**
|
|
2657
2657
|
* Creates a form object that can be spread onto a `<form>` element.
|
|
2658
2658
|
*
|
|
@@ -2691,9 +2691,9 @@ declare module '$app/server' {
|
|
|
2691
2691
|
* @since 2.27
|
|
2692
2692
|
*/
|
|
2693
2693
|
export function prerender<Schema extends StandardSchemaV1, Output>(schema: Schema, fn: (arg: StandardSchemaV1.InferOutput<Schema>) => MaybePromise<Output>, options?: {
|
|
2694
|
-
inputs?: RemotePrerenderInputsGenerator<StandardSchemaV1.
|
|
2694
|
+
inputs?: RemotePrerenderInputsGenerator<StandardSchemaV1.InferInput<Schema>>;
|
|
2695
2695
|
dynamic?: boolean;
|
|
2696
|
-
} | undefined): RemotePrerenderFunction<StandardSchemaV1.
|
|
2696
|
+
} | undefined): RemotePrerenderFunction<StandardSchemaV1.InferInput<Schema>, Output>;
|
|
2697
2697
|
/**
|
|
2698
2698
|
* Creates a remote query. When called from the browser, the function will be invoked on the server via a `fetch` call.
|
|
2699
2699
|
*
|
|
@@ -2717,7 +2717,7 @@ declare module '$app/server' {
|
|
|
2717
2717
|
*
|
|
2718
2718
|
* @since 2.27
|
|
2719
2719
|
*/
|
|
2720
|
-
export function query<Schema extends StandardSchemaV1, Output>(schema: Schema, fn: (arg: StandardSchemaV1.InferOutput<Schema>) => MaybePromise<Output>): RemoteQueryFunction<StandardSchemaV1.
|
|
2720
|
+
export function query<Schema extends StandardSchemaV1, Output>(schema: Schema, fn: (arg: StandardSchemaV1.InferOutput<Schema>) => MaybePromise<Output>): RemoteQueryFunction<StandardSchemaV1.InferInput<Schema>, Output>;
|
|
2721
2721
|
type RemotePrerenderInputsGenerator<Input = any> = () => MaybePromise<Input[]>;
|
|
2722
2722
|
type MaybePromise<T> = T | Promise<T>;
|
|
2723
2723
|
|
package/types/index.d.ts.map
CHANGED
|
@@ -185,6 +185,6 @@
|
|
|
185
185
|
null,
|
|
186
186
|
null
|
|
187
187
|
],
|
|
188
|
-
"mappings": "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
|
|
188
|
+
"mappings": ";;;;;;;;;;kBAiCiBA,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;aA2BZC,cAAcA;;;;;;aAMdC,cAAcA;;;;;;;;MAQrBC,aAAaA;;;;;OAKJC,YAAYA;;kBAETC,aAAaA;;;;;;MAMzBC,qBAAqBA;;;;;;;;;;;kBAWTC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAqGPC,MAAMA;;;;;;;;;;;kBAWNC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA4DPC,QAAQA;;;;;;;;kBAQRC,SAASA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aA2edC,MAAMA;;;;;;;;;;;aAWNC,iBAAiBA;;;;;;;;;;;;aAYjBC,qBAAqBA;;;;;;;;;aASrBC,iBAAiBA;;;;;;;;;;aAUjBC,WAAWA;;;;;;;;;;aAUXC,UAAUA;;;;;;aAMVC,UAAUA;;;;;;aAMVC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;aA0BPC,SAASA;;;;;kBAKJC,WAAWA;;;;;;;;;;;;aAYhBC,IAAIA;;;;;;;;;;;;kBAYCC,SAASA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA4GTC,eAAeA;;;;;;;;;;;;;;;;;;;;;;;;;;kBA0BfC,gBAAgBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aA6BrBC,cAAcA;;kBAETC,UAAUA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAoCVC,cAAcA;;;;;;;;;;kBAUdC,UAAUA;;;;;;;;;;;;;;;;;;kBAkBVC,aAAaA;;;;;;;;;;;;;;;;;;;kBAmBbC,IAAIA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aA8CTC,YAAYA;;kBAEPC,YAAYA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAiGjBC,cAAcA;;;;;kBAKTC,cAAcA;;;;;;;;;;;;;;;;;;;;;;;kBAuBdC,eAAeA;;;;;;;;;;;;;;;cAenBC,MAAMA;;;;;;kBAMFC,iBAAiBA;;;;;;;kBAOjBC,WAAWA;;;;;;;;;;;;;;;;;;;;;;;;;aAyBhBC,UAAUA;;;;;;;kBAOLC,eAAeA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAqEpBC,MAAMA;;;;;;;;;;aAUNC,OAAOA;;;;;;;;;;;;;;;;aAgBPC,YAAYA;;;;;;;;;;;;kBCx7CXC,SAASA;;;;;;;;;;kBAqBTC,QAAQA;;;;;;;aDg8CTC,cAAcA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA6BTC,QAAQA;;;;;;;;aAQbC,UAAUA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAgEVC,aAAaA;;;;aAIbC,cAAcA;;;;;;;;;;;;;;;;;;aAkBdC,WAAWA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA8BNC,mBAAmBA;;;;;;;;aAQxBC,uBAAuBA;;;;;aAKvBC,mBAAmBA;WErnDdC,YAAYA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAkDZC,GAAGA;;;;;;;;;;;;;;;;;;;;;WAqBHC,aAAaA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAmElBC,UAAUA;;WAELC,MAAMA;;;;;;;;;MASXC,YAAYA;;WAEPC,WAAWA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAmCXC,yBAAyBA;;;;;;;;;;WAUzBC,yBAAyBA;;;;WAIzBC,sCAAsCA;;;;MAI3CC,8BAA8BA;MAC9BC,8BAA8BA;MAC9BC,2CAA2CA;;;;;;aAM3CC,eAAeA;;WAIVC,cAAcA;;;;;WAKdC,YAAYA;;;;;;MAMjBC,aAAaA;WCtLRC,KAAKA;;;;;;WAeLC,SAASA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAuHTC,YAAYA;;;;;;;;;;;;;;;;;WAiBZC,QAAQA;;;;;;;;;;;;;;MAgCbC,iBAAiBA;;;;;;;;;WAWZC,UAAUA;;;;;;;;;;;;;WAaVC,SAASA;;;;;;;;;;;;;;;;;;;;;;;WAsHTC,YAAYA;;;;;;;;;;;;;;;;MAgBjBC,kBAAkBA;;WAEbC,aAAaA;;;;;;;;;;WAUbC,UAAUA;;;;;;;;;;;WAWVC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;MAuBZC,aAAaA;;WA2BRC,eAAeA;;;;;;MAMpBC,uBAAuBA;;MAGvBC,WAAWA;;;;;;;;WAQNC,QAAQA;;;;;;;;;WASRC,cAAcA;;;;;;;;;MA+CnBC,eAAeA;;;;;MAKfC,kBAAkBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBCzcdC,WAAWA;;;;;;;;;;;;;;;;;;;iBAsBXC,QAAQA;;;;;iBAiBRC,UAAUA;;;;;;iBASVC,IAAIA;;;;;;iBA8BJC,IAAIA;;;;;;;;;;;;;;;;iBAkDJC,eAAeA;;;;;;;;;;;;;;iBAmBfC,YAAYA;;;;;;;cCtOfC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBCoEJC,QAAQA;;;;;;iBCoCFC,UAAUA;;;;;;iBAkCVC,WAAWA;;;;;iBAgFjBC,oBAAoBA;;;;;;;;;;;iBC3MpBC,gBAAgBA;;;;;;;;;iBCiHVC,SAASA;;;;;;;;;cChIlBC,OAAOA;;;;;cAKPC,GAAGA;;;;;cAKHC,QAAQA;;;;;cAKRC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;iBCYJC,WAAWA;;;;;;;;;;;;;;;;;;;;;;;;iBAgDXC,OAAOA;;;;;;;iBCumEDC,WAAWA;;;;;;;;;;;iBA9UjBC,aAAaA;;;;;;;;;;;;iBAiBbC,cAAcA;;;;;;;;;;iBAedC,UAAUA;;;;;iBASVC,qBAAqBA;;;;;;;;;;iBA8BrBC,IAAIA;;;;;;;;;;;;;;;;;;;;;;;;;iBAsCJC,UAAUA;;;;iBA0BVC,aAAaA;;;;;iBAebC,UAAUA;;;;;;;;;;;;;;iBAqBJC,WAAWA;;;;;;;;;;;;;;;;;;iBAoCXC,WAAWA;;;;;iBAsCjBC,SAASA;;;;;iBA+CTC,YAAYA;MVh/DhBhE,YAAYA;;;;;;;;;;;;;;YWjJbiE,IAAIA;;;;;;;;;YASJC,MAAMA;;MAEZC,WAAWA;;;;;;;;;;;;;;;;;;;;;;;;;iBAyBAC,OAAOA;;;;;;;;;;;;;;;;;iBAiBPC,KAAKA;;;;;iBAKLC,YAAYA;;;;;;;;;;;;;;;;;;;;;;iBCjDZC,IAAIA;;;;;;;iBCGJC,eAAeA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBCJfC,IAAIA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MbscRC,8BAA8BA;MD7T9B1E,YAAYA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ce1GX2E,IAAIA;;;;;cAQJC,UAAUA;;;;;;;;;;;cAMVC,OAAOA;;;;;;;;;iBCrDPC,SAASA;;;;;;;;;;;;;;;cAyBTH,IAAIA;;;;;;;;;;cAiBJC,UAAUA;;;;;;;;cAeVC,OAAOA",
|
|
189
189
|
"ignoreList": []
|
|
190
190
|
}
|