@sveltejs/kit 2.56.0 → 2.56.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sveltejs/kit",
3
- "version": "2.56.0",
3
+ "version": "2.56.1",
4
4
  "description": "SvelteKit is the fastest way to build Svelte apps",
5
5
  "keywords": [
6
6
  "framework",
@@ -2172,7 +2172,7 @@ export type RemoteQuery<T> = RemoteResource<T> & {
2172
2172
  */
2173
2173
  refresh(): Promise<void>;
2174
2174
  /**
2175
- * Temporarily override the value of a query. This is used with the `updates` method of a [command](https://svelte.dev/docs/kit/remote-functions#command-Updating-queries) or [enhanced form submission](https://svelte.dev/docs/kit/remote-functions#form-enhance) to provide optimistic updates.
2175
+ * Temporarily override a query's value during a [single-flight mutation](https://svelte.dev/docs/kit/remote-functions#Single-flight-mutations) to provide optimistic updates.
2176
2176
  *
2177
2177
  * ```svelte
2178
2178
  * <script>
package/src/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  // generated during release, do not modify
2
2
 
3
3
  /** @type {string} */
4
- export const VERSION = '2.56.0';
4
+ export const VERSION = '2.56.1';
package/types/index.d.ts CHANGED
@@ -2146,7 +2146,7 @@ declare module '@sveltejs/kit' {
2146
2146
  */
2147
2147
  refresh(): Promise<void>;
2148
2148
  /**
2149
- * Temporarily override the value of a query. This is used with the `updates` method of a [command](https://svelte.dev/docs/kit/remote-functions#command-Updating-queries) or [enhanced form submission](https://svelte.dev/docs/kit/remote-functions#form-enhance) to provide optimistic updates.
2149
+ * Temporarily override a query's value during a [single-flight mutation](https://svelte.dev/docs/kit/remote-functions#Single-flight-mutations) to provide optimistic updates.
2150
2150
  *
2151
2151
  * ```svelte
2152
2152
  * <script>