@dashevo/dapi-grpc 0.25.16-pr.1574.2 → 0.25.16-rc.2
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/Cargo.toml
CHANGED
|
@@ -305,7 +305,9 @@ class PlatformPromiseClient {
|
|
|
305
305
|
* @returns {Promise<!GetIdentitiesByPublicKeyHashesResponse>}
|
|
306
306
|
*/
|
|
307
307
|
getIdentitiesByPublicKeyHashes(
|
|
308
|
-
getIdentitiesByPublicKeyHashesRequest,
|
|
308
|
+
getIdentitiesByPublicKeyHashesRequest,
|
|
309
|
+
metadata = {},
|
|
310
|
+
options = {},
|
|
309
311
|
) {
|
|
310
312
|
if (!isObject(metadata)) {
|
|
311
313
|
throw new Error('metadata must be an object');
|
|
@@ -337,9 +339,7 @@ class PlatformPromiseClient {
|
|
|
337
339
|
* @param {CallOptions} [options={}]
|
|
338
340
|
* @returns {Promise<!WaitForStateTransitionResultResponse>}
|
|
339
341
|
*/
|
|
340
|
-
waitForStateTransitionResult(
|
|
341
|
-
waitForStateTransitionResultRequest, metadata = {}, options = {},
|
|
342
|
-
) {
|
|
342
|
+
waitForStateTransitionResult(waitForStateTransitionResultRequest, metadata = {}, options = {}) {
|
|
343
343
|
if (!isObject(metadata)) {
|
|
344
344
|
throw new Error('metadata must be an object');
|
|
345
345
|
}
|
|
@@ -370,9 +370,7 @@ class PlatformPromiseClient {
|
|
|
370
370
|
* @param {CallOptions} [options={}]
|
|
371
371
|
* @returns {Promise<!GetConsensusParamsResponse>}
|
|
372
372
|
*/
|
|
373
|
-
getConsensusParams(
|
|
374
|
-
getConsensusParamsRequest, metadata = {}, options = {},
|
|
375
|
-
) {
|
|
373
|
+
getConsensusParams(getConsensusParamsRequest, metadata = {}, options = {}) {
|
|
376
374
|
if (!isObject(metadata)) {
|
|
377
375
|
throw new Error('metadata must be an object');
|
|
378
376
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dashevo/dapi-grpc",
|
|
3
|
-
"version": "0.25.16-
|
|
3
|
+
"version": "0.25.16-rc.2",
|
|
4
4
|
"description": "DAPI GRPC definition file and generated clients",
|
|
5
5
|
"browser": "browser.js",
|
|
6
6
|
"main": "node.js",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
},
|
|
46
46
|
"homepage": "https://github.com/dashevo/dapi-grpc#readme",
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@dashevo/grpc-common": "0.25.16-
|
|
48
|
+
"@dashevo/grpc-common": "0.25.16-rc.2",
|
|
49
49
|
"@dashevo/protobufjs": "6.10.5",
|
|
50
50
|
"@grpc/grpc-js": "^1.3.7",
|
|
51
51
|
"@improbable-eng/grpc-web": "^0.15.0",
|
|
@@ -53,15 +53,15 @@
|
|
|
53
53
|
"long": "^5.2.0"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"chai": "^4.3.
|
|
56
|
+
"chai": "^4.3.10",
|
|
57
57
|
"chai-as-promised": "^7.1.1",
|
|
58
58
|
"dirty-chai": "^2.0.1",
|
|
59
|
-
"eslint": "^
|
|
60
|
-
"eslint-config-airbnb-base": "^
|
|
61
|
-
"eslint-plugin-import": "^2.
|
|
59
|
+
"eslint": "^8.53.0",
|
|
60
|
+
"eslint-config-airbnb-base": "^15.0.0",
|
|
61
|
+
"eslint-plugin-import": "^2.29.0",
|
|
62
62
|
"mocha": "^10.2.0",
|
|
63
63
|
"mocha-sinon": "^2.1.2",
|
|
64
|
-
"sinon": "^
|
|
64
|
+
"sinon": "^17.0.1",
|
|
65
65
|
"sinon-chai": "^3.7.0"
|
|
66
66
|
}
|
|
67
67
|
}
|