@creator.co/wapi 1.5.9-alpha.6 → 1.5.9-alpha.7
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/package.json +1 -1
- package/dist/src/Server/Router.d.ts +1 -1
- package/package.json +1 -1
- package/src/Server/Router.ts +1 -1
package/dist/package.json
CHANGED
|
@@ -56,7 +56,7 @@ export interface Route<InputType = never, OutputType = never, PathParamsType = S
|
|
|
56
56
|
*/
|
|
57
57
|
querySchema?: z.ZodObject<any> | z.ZodUnion<any> | z.ZodIntersection<any, any>;
|
|
58
58
|
}
|
|
59
|
-
export type AnyRoute = Route<any, any>;
|
|
59
|
+
export type AnyRoute = Route<any, any, any, any>;
|
|
60
60
|
/**
|
|
61
61
|
* Represents the configuration options for a router.
|
|
62
62
|
* @typedef {TransactionConfig & {
|
package/package.json
CHANGED
package/src/Server/Router.ts
CHANGED
|
@@ -82,7 +82,7 @@ export interface Route<
|
|
|
82
82
|
querySchema?: z.ZodObject<any> | z.ZodUnion<any> | z.ZodIntersection<any, any>
|
|
83
83
|
}
|
|
84
84
|
|
|
85
|
-
export type AnyRoute = Route<any, any>
|
|
85
|
+
export type AnyRoute = Route<any, any, any, any>
|
|
86
86
|
|
|
87
87
|
/**
|
|
88
88
|
* Represents the configuration options for a router.
|