milkio 1.0.0-alpha.28 → 1.0.0-alpha.29
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/execute/index.ts +1 -1
- package/package.json +1 -1
package/execute/index.ts
CHANGED
|
@@ -80,7 +80,7 @@ export const __initExecuter = (generated: GeneratedInit, runtime: any) => {
|
|
|
80
80
|
}
|
|
81
81
|
|
|
82
82
|
const module = await routeSchema.module();
|
|
83
|
-
let meta = (module.meta ? module.meta : {}) as unknown as Readonly<$meta>;
|
|
83
|
+
let meta = (module.default?.meta ? module.default?.meta : {}) as unknown as Readonly<$meta>;
|
|
84
84
|
|
|
85
85
|
if (meta.typeSafety === undefined || meta.typeSafety === true) {
|
|
86
86
|
const validation = routeSchema.validateParams(params) as IValidation<any>;
|