@nuxt/bridge-schema-edge 3.4.0-29110408.3747562 → 3.5.0-29142082.f9326ec

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/dist/index.d.mts CHANGED
@@ -1373,7 +1373,7 @@ interface ConfigSchema {
1373
1373
  /**
1374
1374
  * A unique string to uniquely identify payload versions (defaults to the current timestamp).
1375
1375
  *
1376
- * @default "1746624506"
1376
+ * @default "1748524926"
1377
1377
  */
1378
1378
  version: string,
1379
1379
  },
@@ -2038,4 +2038,5 @@ declare const _default: {
2038
2038
  [x: string]: untyped.JSValue | untyped.InputObject;
2039
2039
  };
2040
2040
 
2041
- export { type IncomingMessage, type Nuxt2Config, type Nuxt2Context, type Nuxt2Options, type NuxtAppCompat, type NuxtAppOptions, _default as NuxtConfigSchema, type NuxtError, type NuxtRuntimeConfig, type RuntimeNuxtHooks, type VueAppCompat };
2041
+ export { _default as NuxtConfigSchema };
2042
+ export type { IncomingMessage, Nuxt2Config, Nuxt2Context, Nuxt2Options, NuxtAppCompat, NuxtAppOptions, NuxtError, NuxtRuntimeConfig, RuntimeNuxtHooks, VueAppCompat };
package/dist/index.d.ts CHANGED
@@ -1373,7 +1373,7 @@ interface ConfigSchema {
1373
1373
  /**
1374
1374
  * A unique string to uniquely identify payload versions (defaults to the current timestamp).
1375
1375
  *
1376
- * @default "1746624506"
1376
+ * @default "1748524926"
1377
1377
  */
1378
1378
  version: string,
1379
1379
  },
@@ -2038,4 +2038,5 @@ declare const _default: {
2038
2038
  [x: string]: untyped.JSValue | untyped.InputObject;
2039
2039
  };
2040
2040
 
2041
- export { type IncomingMessage, type Nuxt2Config, type Nuxt2Context, type Nuxt2Options, type NuxtAppCompat, type NuxtAppOptions, _default as NuxtConfigSchema, type NuxtError, type NuxtRuntimeConfig, type RuntimeNuxtHooks, type VueAppCompat };
2041
+ export { _default as NuxtConfigSchema };
2042
+ export type { IncomingMessage, Nuxt2Config, Nuxt2Context, Nuxt2Options, NuxtAppCompat, NuxtAppOptions, NuxtError, NuxtRuntimeConfig, RuntimeNuxtHooks, VueAppCompat };
package/dist/index.mjs CHANGED
@@ -429,7 +429,7 @@ const build = defineUntypedSchema({
429
429
  /**
430
430
  * Creates special webpack bundle for SSR renderer. It is normally not necessary to change this value.
431
431
  */
432
- ssr: undefined,
432
+ ssr: void 0,
433
433
  /**
434
434
  * Enable [thread-loader](https://github.com/webpack-contrib/thread-loader#thread-loader) when building app with webpack.
435
435
  * @warning This is an unstable feature.
@@ -515,7 +515,7 @@ const build = defineUntypedSchema({
515
515
  ];
516
516
  for (const name of styleLoaders) {
517
517
  const loader = val[name];
518
- if (loader && loader.sourcemap === undefined) {
518
+ if (loader && loader.sourcemap === void 0) {
519
519
  loader.sourcemap = Boolean(await get("build.cssSourceMap"));
520
520
  }
521
521
  }
@@ -612,7 +612,7 @@ const build = defineUntypedSchema({
612
612
  $resolve: async (val, get) => val ?? !await get("dev")
613
613
  },
614
614
  /** You can set minimizer to a customized array of plugins. */
615
- minimizer: undefined,
615
+ minimizer: void 0,
616
616
  splitChunks: {
617
617
  chunks: "all",
618
618
  automaticNameDelimiter: "/",
@@ -707,7 +707,7 @@ const build = defineUntypedSchema({
707
707
  * Sames options as https://github.com/webpack-contrib/postcss-loader#options
708
708
  */
709
709
  postcss: {
710
- execute: undefined,
710
+ execute: void 0,
711
711
  postcssOptions: {
712
712
  $resolve: async (val, get) => {
713
713
  const postcssOptions = await get("postcss") || {};
@@ -715,8 +715,8 @@ const build = defineUntypedSchema({
715
715
  return postcssOptions;
716
716
  }
717
717
  },
718
- sourcemap: undefined,
719
- implementation: undefined,
718
+ sourcemap: void 0,
719
+ implementation: void 0,
720
720
  order: ""
721
721
  },
722
722
  html: {
@@ -758,7 +758,7 @@ const build = defineUntypedSchema({
758
758
  /**
759
759
  * Allows setting a different app template (other than `@nuxt/vue-app`)
760
760
  */
761
- template: undefined,
761
+ template: void 0,
762
762
  /**
763
763
  * You can provide your custom files to watch and regenerate after changes.
764
764
  *
@@ -849,7 +849,7 @@ const common = defineUntypedSchema({
849
849
  * @see [documentation](https://github.com/yyx990803/launch-editor#supported-editors)
850
850
  * @type {string}
851
851
  */
852
- editor: undefined,
852
+ editor: void 0,
853
853
  /**
854
854
  * The watch property lets you watch custom files for restarting the server.
855
855
  *
@@ -909,7 +909,7 @@ const common = defineUntypedSchema({
909
909
  * @see [concept of modern mode](https://philipwalton.com/articles/deploying-es2015-code-in-production-today/)
910
910
  * @type {'server' | 'client' | boolean}
911
911
  */
912
- modern: undefined,
912
+ modern: void 0,
913
913
  /**
914
914
  * @deprecated use `ssr` option
915
915
  */
@@ -1208,7 +1208,7 @@ const render = defineUntypedSchema({
1208
1208
  * Configure the crossorigin attribute on `<link rel="stylesheet">` and `<script>`
1209
1209
  * tags in generated HTML. [More information](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/crossorigin).
1210
1210
  */
1211
- crossorigin: undefined,
1211
+ crossorigin: void 0,
1212
1212
  /**
1213
1213
  * Adds prefetch and preload links for faster initial page load time.
1214
1214
  * You probably don't want to disable this option unless you have many pages and routes.
@@ -1221,7 +1221,7 @@ const render = defineUntypedSchema({
1221
1221
  * This can be useful to dynamically enable/disable SSR at runtime after image builds
1222
1222
  * (with docker, for example).
1223
1223
  */
1224
- ssr: undefined,
1224
+ ssr: void 0,
1225
1225
  /**
1226
1226
  * Forward server-side logs to the browser for better debugging (only available in development).
1227
1227
  *
@@ -1390,9 +1390,9 @@ const render = defineUntypedSchema({
1390
1390
  }
1391
1391
  return {
1392
1392
  hashAlgorithm: "sha256",
1393
- allowedSources: undefined,
1393
+ allowedSources: void 0,
1394
1394
  /** Policies to be added to the response `Content-Security-Policy` HTTP header. */
1395
- policies: undefined,
1395
+ policies: void 0,
1396
1396
  /**
1397
1397
  * Whether to add `<meta http-equiv="Content-Security-Policy"/>` to the `<head>`.
1398
1398
  * This is independent of the `csp.policies` configuration and the complete set
@@ -1587,7 +1587,7 @@ const router = defineUntypedSchema({
1587
1587
  * `trailingSlash` to `true`, then only `example.com/abc/` will work, but not
1588
1588
  * `example.com/abc`. On `false`, it's vice-versa.
1589
1589
  */
1590
- trailingSlash: undefined
1590
+ trailingSlash: void 0
1591
1591
  }
1592
1592
  });
1593
1593
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxt/bridge-schema-edge",
3
- "version": "3.4.0-29110408.3747562",
3
+ "version": "3.5.0-29142082.f9326ec",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/nuxt/bridge.git"
@@ -16,23 +16,23 @@
16
16
  "devDependencies": {
17
17
  "@types/lodash.template": "^4.5.3",
18
18
  "@unhead/schema": "^1.11.20",
19
- "nitropack": "^2.10.4",
19
+ "nitropack": "^2.11.12",
20
20
  "unbuild": "latest",
21
- "vite": "~6.2.7"
21
+ "vite": "~6.3.5"
22
22
  },
23
23
  "dependencies": {
24
- "c12": "^3.0.0",
24
+ "c12": "^3.0.4",
25
25
  "create-require": "^1.1.1",
26
26
  "defu": "^6.1.4",
27
27
  "jiti": "^2.4.2",
28
- "pathe": "^2.0.2",
29
- "pkg-types": "^2.0.1",
28
+ "pathe": "^2.0.3",
29
+ "pkg-types": "^2.1.0",
30
30
  "postcss-import-resolver": "^2.0.0",
31
31
  "scule": "^1.3.0",
32
- "std-env": "^3.8.0",
33
- "ufo": "^1.5.4",
34
- "unbuild": "3.3.1",
35
- "unimport": "^5.0.0",
32
+ "std-env": "^3.9.0",
33
+ "ufo": "^1.6.1",
34
+ "unbuild": "3.5.0",
35
+ "unimport": "^5.0.1",
36
36
  "untyped": "^2.0.0"
37
37
  },
38
38
  "engines": {
@@ -1307,7 +1307,7 @@ export interface ConfigSchema {
1307
1307
  /**
1308
1308
  * A unique string to uniquely identify payload versions (defaults to the current timestamp).
1309
1309
  *
1310
- * @default "1746624506"
1310
+ * @default "1748524926"
1311
1311
  */
1312
1312
  version: string,
1313
1313
  },
@@ -195,7 +195,7 @@
195
195
  "dir": "static",
196
196
  "base": "/_nuxt/home/runner/work/bridge/bridge/packages/bridge-schema/dist",
197
197
  "versionBase": "",
198
- "version": "1746624506"
198
+ "version": "1748524926"
199
199
  }
200
200
  },
201
201
  "app": {
package/schema/config.md CHANGED
@@ -1138,7 +1138,7 @@ If unset or set to a falsy value, the name of the fallback HTML file will be `20
1138
1138
 
1139
1139
  ### `version`
1140
1140
  - **Type**: `string`
1141
- - **Default**: `"1746624506"`
1141
+ - **Default**: `"1748524926"`
1142
1142
 
1143
1143
  > A unique string to uniquely identify payload versions (defaults to the current timestamp).
1144
1144
 
@@ -1997,7 +1997,7 @@
1997
1997
  "description": "",
1998
1998
  "tags": [],
1999
1999
  "id": "#generate/staticAssets/version",
2000
- "default": "1746624506",
2000
+ "default": "1748524926",
2001
2001
  "type": "string"
2002
2002
  }
2003
2003
  },
@@ -2005,7 +2005,7 @@
2005
2005
  "dir": "static",
2006
2006
  "base": "/_nuxt/home/runner/work/bridge/bridge/packages/bridge-schema/dist",
2007
2007
  "versionBase": "",
2008
- "version": "1746624506"
2008
+ "version": "1748524926"
2009
2009
  },
2010
2010
  "type": "object"
2011
2011
  }
@@ -2029,7 +2029,7 @@
2029
2029
  "dir": "static",
2030
2030
  "base": "/_nuxt/home/runner/work/bridge/bridge/packages/bridge-schema/dist",
2031
2031
  "versionBase": "",
2032
- "version": "1746624506"
2032
+ "version": "1748524926"
2033
2033
  }
2034
2034
  },
2035
2035
  "type": "object"
@@ -2929,7 +2929,7 @@
2929
2929
  "dir": "static",
2930
2930
  "base": "/_nuxt/home/runner/work/bridge/bridge/packages/bridge-schema/dist",
2931
2931
  "versionBase": "",
2932
- "version": "1746624506"
2932
+ "version": "1748524926"
2933
2933
  }
2934
2934
  },
2935
2935
  "messages": {