@onekeyfe/hd-transport-lowlevel 1.2.0-alpha.0 → 1.2.0-alpha.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.
|
@@ -157,9 +157,7 @@ describe('LowlevelTransport protocol framing', () => {
|
|
|
157
157
|
const probeResponse = ProtocolV2.encodeFrame(
|
|
158
158
|
schemas,
|
|
159
159
|
'Success',
|
|
160
|
-
{
|
|
161
|
-
message: 'probe',
|
|
162
|
-
},
|
|
160
|
+
{ message: 'ok' },
|
|
163
161
|
{ router: PROTOCOL_V2_CHANNEL_BLE_UART }
|
|
164
162
|
);
|
|
165
163
|
const callResponse = ProtocolV2.encodeFrame(
|
|
@@ -200,9 +198,7 @@ describe('LowlevelTransport protocol framing', () => {
|
|
|
200
198
|
const probeResponse = ProtocolV2.encodeFrame(
|
|
201
199
|
schemas,
|
|
202
200
|
'Success',
|
|
203
|
-
{
|
|
204
|
-
message: 'probe',
|
|
205
|
-
},
|
|
201
|
+
{ message: 'ok' },
|
|
206
202
|
{ router: PROTOCOL_V2_CHANNEL_BLE_UART }
|
|
207
203
|
);
|
|
208
204
|
const plugin = createPlugin({
|
|
@@ -222,9 +218,7 @@ describe('LowlevelTransport protocol framing', () => {
|
|
|
222
218
|
const probeResponse = ProtocolV2.encodeFrame(
|
|
223
219
|
schemas,
|
|
224
220
|
'Success',
|
|
225
|
-
{
|
|
226
|
-
message: 'probe',
|
|
227
|
-
},
|
|
221
|
+
{ message: 'ok' },
|
|
228
222
|
{ router: PROTOCOL_V2_CHANNEL_BLE_UART }
|
|
229
223
|
);
|
|
230
224
|
let staleReceivePending = false;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@onekeyfe/hd-transport-lowlevel",
|
|
3
|
-
"version": "1.2.0-alpha.
|
|
3
|
+
"version": "1.2.0-alpha.1",
|
|
4
4
|
"homepage": "https://github.com/OneKeyHQ/hardware-js-sdk#readme",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"lint:fix": "eslint . --fix"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@onekeyfe/hd-shared": "1.2.0-alpha.
|
|
24
|
-
"@onekeyfe/hd-transport": "1.2.0-alpha.
|
|
23
|
+
"@onekeyfe/hd-shared": "1.2.0-alpha.1",
|
|
24
|
+
"@onekeyfe/hd-transport": "1.2.0-alpha.1"
|
|
25
25
|
},
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "4f4aae3a47be7bd54b4db4a10c400056784e01bd"
|
|
27
27
|
}
|