nuxt-typed-router 3.0.5 → 3.0.6

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/module.json CHANGED
@@ -5,5 +5,5 @@
5
5
  "nuxt": "^3.0.0",
6
6
  "bridge": false
7
7
  },
8
- "version": "3.0.5"
8
+ "version": "3.0.6"
9
9
  }
package/dist/module.mjs CHANGED
@@ -1079,6 +1079,8 @@ function createDefinePageMetaFile() {
1079
1079
  */
1080
1080
  validate?: (route: [T] extends [never] ? TypedRoute : TypedRouteFromName<T>) => boolean | Promise<boolean> | Partial<NuxtError> | Promise<Partial<NuxtError>>;
1081
1081
  key?: false | string | ((route: [T] extends [never] ? TypedRoute : TypedRouteFromName<T>) => string);
1082
+ /** Allow types augmented by other modules */
1083
+ [key: string]: any;
1082
1084
  }
1083
1085
 
1084
1086
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-typed-router",
3
- "version": "3.0.5",
3
+ "version": "3.0.6",
4
4
  "description": "Provide autocompletion for routes paths, names and params in Nuxt apps",
5
5
  "type": "module",
6
6
  "main": "./dist/module.cjs",
@@ -97,6 +97,7 @@
97
97
  "vitest": "^0.29.2",
98
98
  "vue-eslint-parser": "^9.1.0",
99
99
  "vue-router": "^4.1.6",
100
- "vue-tsc": "^1.1.7"
100
+ "vue-tsc": "^1.1.7",
101
+ "nuxt-seo-kit": "1.3.4"
101
102
  }
102
103
  }