@travetto/web 8.0.0-alpha.11 → 8.0.0-alpha.13

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/README.md CHANGED
@@ -74,6 +74,7 @@ export interface WebResponseContext {
74
74
 
75
75
  /**
76
76
  * Web Response as a simple object
77
+ * @see body Type of the response body #target
77
78
  */
78
79
  export class WebResponse<B = unknown> extends BaseWebMessage<B, WebResponseContext> {
79
80
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/web",
3
- "version": "8.0.0-alpha.11",
3
+ "version": "8.0.0-alpha.13",
4
4
  "type": "module",
5
5
  "description": "Declarative support for creating Web Applications",
6
6
  "keywords": [
@@ -26,18 +26,18 @@
26
26
  "directory": "module/web"
27
27
  },
28
28
  "dependencies": {
29
- "@travetto/config": "^8.0.0-alpha.10",
30
- "@travetto/context": "^8.0.0-alpha.10",
31
- "@travetto/di": "^8.0.0-alpha.10",
32
- "@travetto/registry": "^8.0.0-alpha.10",
33
- "@travetto/runtime": "^8.0.0-alpha.10",
34
- "@travetto/schema": "^8.0.0-alpha.10",
29
+ "@travetto/config": "^8.0.0-alpha.12",
30
+ "@travetto/context": "^8.0.0-alpha.11",
31
+ "@travetto/di": "^8.0.0-alpha.11",
32
+ "@travetto/registry": "^8.0.0-alpha.11",
33
+ "@travetto/runtime": "^8.0.0-alpha.11",
34
+ "@travetto/schema": "^8.0.0-alpha.12",
35
35
  "find-my-way": "^9.5.0"
36
36
  },
37
37
  "peerDependencies": {
38
- "@travetto/cli": "^8.0.0-alpha.15",
39
- "@travetto/test": "^8.0.0-alpha.10",
40
- "@travetto/transformer": "^8.0.0-alpha.5"
38
+ "@travetto/cli": "^8.0.0-alpha.17",
39
+ "@travetto/test": "^8.0.0-alpha.11",
40
+ "@travetto/transformer": "^8.0.0-alpha.7"
41
41
  },
42
42
  "peerDependenciesMeta": {
43
43
  "@travetto/transformer": {
@@ -8,6 +8,7 @@ export interface WebResponseContext {
8
8
 
9
9
  /**
10
10
  * Web Response as a simple object
11
+ * @see body Type of the response body #target
11
12
  */
12
13
  export class WebResponse<B = unknown> extends BaseWebMessage<B, WebResponseContext> {
13
14