@adonisjs/inertia 3.0.0 → 3.0.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/build/config.stub CHANGED
@@ -2,7 +2,7 @@
2
2
  exports({ to: app.configPath('inertia.ts') })
3
3
  }}}
4
4
  import { defineConfig } from '@adonisjs/inertia'
5
- import type { InferSharedProps, PageProps } from '@adonisjs/inertia/types'
5
+ import type { InferSharedProps } from '@adonisjs/inertia/types'
6
6
 
7
7
  const inertiaConfig = defineConfig({
8
8
  /**
@@ -29,5 +29,5 @@ const inertiaConfig = defineConfig({
29
29
  export default inertiaConfig
30
30
 
31
31
  declare module '@adonisjs/inertia/types' {
32
- export interface SharedProps extends InferSharedProps<typeof inertiaConfig>, PageProps {}
32
+ export interface SharedProps extends InferSharedProps<typeof inertiaConfig> {}
33
33
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@adonisjs/inertia",
3
3
  "description": "Official Inertia.js adapter for AdonisJS",
4
- "version": "3.0.0",
4
+ "version": "3.0.1",
5
5
  "engines": {
6
6
  "node": ">=20.6.0"
7
7
  },
@@ -154,6 +154,5 @@
154
154
  "format": "esm",
155
155
  "dts": true,
156
156
  "target": "esnext"
157
- },
158
- "packageManager": "pnpm@9.15.2+sha512.93e57b0126f0df74ce6bff29680394c0ba54ec47246b9cf321f0121d8d9bb03f750a705f24edc3c1180853afd7c2c3b94196d0a3d53d3e069d9e2793ef11f321"
157
+ }
159
158
  }