@lodestar/reqresp 1.43.0-rc.2 → 1.43.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/lib/interface.d.ts +1 -1
- package/lib/interface.js +1 -1
- package/package.json +7 -7
- package/src/interface.ts +1 -1
package/lib/interface.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ export declare enum RespStatus {
|
|
|
13
13
|
*/
|
|
14
14
|
SERVER_ERROR = 2,
|
|
15
15
|
/**
|
|
16
|
-
* The responder does not have requested resource.
|
|
16
|
+
* The responder does not have requested resource. The response payload adheres to the ErrorMessage schema.
|
|
17
17
|
*/
|
|
18
18
|
RESOURCE_UNAVAILABLE = 3,
|
|
19
19
|
/**
|
package/lib/interface.js
CHANGED
|
@@ -16,7 +16,7 @@ var RespStatus;
|
|
|
16
16
|
*/
|
|
17
17
|
RespStatus[RespStatus["SERVER_ERROR"] = 2] = "SERVER_ERROR";
|
|
18
18
|
/**
|
|
19
|
-
* The responder does not have requested resource.
|
|
19
|
+
* The responder does not have requested resource. The response payload adheres to the ErrorMessage schema.
|
|
20
20
|
*/
|
|
21
21
|
RespStatus[RespStatus["RESOURCE_UNAVAILABLE"] = 3] = "RESOURCE_UNAVAILABLE";
|
|
22
22
|
/**
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"bugs": {
|
|
12
12
|
"url": "https://github.com/ChainSafe/lodestar/issues"
|
|
13
13
|
},
|
|
14
|
-
"version": "1.43.0
|
|
14
|
+
"version": "1.43.0",
|
|
15
15
|
"type": "module",
|
|
16
16
|
"exports": {
|
|
17
17
|
".": {
|
|
@@ -47,9 +47,9 @@
|
|
|
47
47
|
"@chainsafe/fast-crc32c": "^4.2.0",
|
|
48
48
|
"@libp2p/interface": "^3.1.0",
|
|
49
49
|
"@libp2p/utils": "^7.0.13",
|
|
50
|
-
"@lodestar/config": "^1.43.0
|
|
51
|
-
"@lodestar/params": "^1.43.0
|
|
52
|
-
"@lodestar/utils": "^1.43.0
|
|
50
|
+
"@lodestar/config": "^1.43.0",
|
|
51
|
+
"@lodestar/params": "^1.43.0",
|
|
52
|
+
"@lodestar/utils": "^1.43.0",
|
|
53
53
|
"snappy": "^7.2.2",
|
|
54
54
|
"snappyjs": "^0.7.0",
|
|
55
55
|
"uint8-varint": "^2.0.2",
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
"@libp2p/crypto": "^5.1.13",
|
|
61
61
|
"@libp2p/logger": "^6.2.2",
|
|
62
62
|
"@libp2p/peer-id": "^6.0.4",
|
|
63
|
-
"@lodestar/logger": "^1.43.0
|
|
64
|
-
"@lodestar/types": "^1.43.0
|
|
63
|
+
"@lodestar/logger": "^1.43.0",
|
|
64
|
+
"@lodestar/types": "^1.43.0",
|
|
65
65
|
"libp2p": "3.1.6"
|
|
66
66
|
},
|
|
67
67
|
"peerDependencies": {
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"reqresp",
|
|
76
76
|
"blockchain"
|
|
77
77
|
],
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "5cb87b7632ff76f9f93947147967618b26da2d0c"
|
|
79
79
|
}
|
package/src/interface.ts
CHANGED
|
@@ -14,7 +14,7 @@ export enum RespStatus {
|
|
|
14
14
|
*/
|
|
15
15
|
SERVER_ERROR = 2,
|
|
16
16
|
/**
|
|
17
|
-
* The responder does not have requested resource.
|
|
17
|
+
* The responder does not have requested resource. The response payload adheres to the ErrorMessage schema.
|
|
18
18
|
*/
|
|
19
19
|
RESOURCE_UNAVAILABLE = 3,
|
|
20
20
|
/**
|