@h3ravel/router 2.0.0-alpha.16 → 2.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -3
  2. package/package.json +8 -8
package/dist/index.d.ts CHANGED
@@ -121,7 +121,7 @@ declare class RouteDependencyResolver {
121
121
  }
122
122
  //#endregion
123
123
  //#region src/ControllerDispatcher.d.ts
124
- declare const ControllerDispatcher_base: typeof IControllerDispatcher & typeof RouteDependencyResolver & typeof FiltersControllerMiddleware & (new (...args: any[]) => IControllerDispatcher & RouteDependencyResolver & FiltersControllerMiddleware);
124
+ declare const ControllerDispatcher_base: typeof RouteDependencyResolver & typeof IControllerDispatcher & typeof FiltersControllerMiddleware & (new (...args: any[]) => RouteDependencyResolver & IControllerDispatcher & FiltersControllerMiddleware);
125
125
  declare class ControllerDispatcher extends ControllerDispatcher_base {
126
126
  protected container: IApplication;
127
127
  /**
@@ -1686,7 +1686,7 @@ declare class Route extends IRoute {
1686
1686
  *
1687
1687
  * @return array
1688
1688
  */
1689
- static getValidators(): IRouteValidator[] | (MethodValidator | UriValidator | HostValidator | SchemeValidator)[];
1689
+ static getValidators(): IRouteValidator[] | (HostValidator | MethodValidator | SchemeValidator | UriValidator)[];
1690
1690
  /**
1691
1691
  * Run the route action and return the response.
1692
1692
  *
@@ -1771,7 +1771,7 @@ declare abstract class AbstractRouteCollection implements IAbstractRouteCollecti
1771
1771
  }
1772
1772
  //#endregion
1773
1773
  //#region src/CallableDispatcher.d.ts
1774
- declare const CallableDispatcher_base: typeof RouteDependencyResolver & typeof ICallableDispatcher & (new (...args: any[]) => RouteDependencyResolver & ICallableDispatcher);
1774
+ declare const CallableDispatcher_base: typeof ICallableDispatcher & typeof RouteDependencyResolver & (new (...args: any[]) => ICallableDispatcher & RouteDependencyResolver);
1775
1775
  declare class CallableDispatcher extends CallableDispatcher_base {
1776
1776
  protected container: IApplication;
1777
1777
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@h3ravel/router",
3
- "version": "2.0.0-alpha.16",
3
+ "version": "2.0.1",
4
4
  "description": "Route facade, decorators and controller system for H3ravel.",
5
5
  "h3ravel": {
6
6
  "providers": [
@@ -39,17 +39,17 @@
39
39
  "laravel"
40
40
  ],
41
41
  "peerDependencies": {
42
- "@h3ravel/database": "^11.17.0-alpha.16"
42
+ "@h3ravel/database": "^11.17.1"
43
43
  },
44
44
  "dependencies": {
45
45
  "h3": "2.0.1-rc.5",
46
- "@h3ravel/contracts": "^2.0.0-alpha.16",
47
- "@h3ravel/events": "^2.0.0-alpha.16",
46
+ "@h3ravel/contracts": "^2.0.1",
47
+ "@h3ravel/events": "^2.0.1",
48
48
  "@h3ravel/musket": "^1.29.0-alpha.15",
49
- "@h3ravel/http": "^11.17.0-alpha.16",
50
- "@h3ravel/shared": "^2.0.0-alpha.16",
51
- "@h3ravel/support": "^2.0.0-alpha.16",
52
- "@h3ravel/foundation": "^2.0.0-alpha.16",
49
+ "@h3ravel/http": "^11.17.1",
50
+ "@h3ravel/shared": "^2.0.1",
51
+ "@h3ravel/support": "^2.0.1",
52
+ "@h3ravel/foundation": "^2.0.1",
53
53
  "reflect-metadata": "^0.2.2"
54
54
  },
55
55
  "scripts": {