@web-ts-toolkit/access-router-deco 0.5.0 → 0.6.0

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/index.d.mts CHANGED
@@ -20,6 +20,11 @@ interface ModuleMetadata {
20
20
  }
21
21
 
22
22
  /**
23
+ * Static factory for bootstrapping decorator-based `access-router` modules.
24
+ *
25
+ * @example
26
+ * EgoseFactory.bootstrap(AppModule, app);
27
+ *
23
28
  * @publicApi
24
29
  */
25
30
  declare class EgoseFactoryStatic {
package/index.d.ts CHANGED
@@ -20,6 +20,11 @@ interface ModuleMetadata {
20
20
  }
21
21
 
22
22
  /**
23
+ * Static factory for bootstrapping decorator-based `access-router` modules.
24
+ *
25
+ * @example
26
+ * EgoseFactory.bootstrap(AppModule, app);
27
+ *
23
28
  * @publicApi
24
29
  */
25
30
  declare class EgoseFactoryStatic {
package/package.json CHANGED
@@ -1,15 +1,8 @@
1
1
  {
2
2
  "name": "@web-ts-toolkit/access-router-deco",
3
- "version": "0.5.0",
4
3
  "description": "Decorator-based configuration for @web-ts-toolkit/access-router",
5
4
  "homepage": "https://web-ts-toolkit.pages.dev/docs/packages/access-router-deco",
6
- "license": "Apache-2.0",
7
- "sideEffects": false,
8
- "repository": {
9
- "type": "git",
10
- "url": "git+https://github.com/egose/web-ts-toolkit.git",
11
- "directory": "packages/access-router-deco"
12
- },
5
+ "version": "0.6.0",
13
6
  "keywords": [
14
7
  "typescript",
15
8
  "express",
@@ -33,12 +26,18 @@
33
26
  }
34
27
  },
35
28
  "peerDependencies": {
36
- "@web-ts-toolkit/access-router": "0.5.0",
29
+ "@web-ts-toolkit/access-router": "0.6.0",
37
30
  "express": ">=5.0.0",
38
31
  "reflect-metadata": "^0.1.13 || ^0.2.0"
39
32
  },
40
33
  "author": "Junmin Ahn",
41
34
  "bugs": {
42
35
  "url": "https://github.com/egose/web-ts-toolkit/issues"
36
+ },
37
+ "license": "Apache-2.0",
38
+ "repository": {
39
+ "type": "git",
40
+ "url": "git+https://github.com/egose/web-ts-toolkit.git",
41
+ "directory": "packages/access-router-deco"
43
42
  }
44
43
  }