@blueid/access-cli 9.21.0 → 9.22.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/proto/BlueCore_pb.js +68 -0
- package/package.json +1 -1
package/lib/proto/BlueCore_pb.js
CHANGED
|
@@ -33,6 +33,7 @@ export const BlueReturnCode = proto2.makeEnum(
|
|
|
33
33
|
{no: -20, name: "PointerConversionFailed"},
|
|
34
34
|
{no: -21, name: "Unavailable"},
|
|
35
35
|
{no: -22, name: "Aborted"},
|
|
36
|
+
{no: -23, name: "OutOfMemory"},
|
|
36
37
|
{no: -29, name: "Test"},
|
|
37
38
|
{no: -30, name: "EncodeDataWriteFailed"},
|
|
38
39
|
{no: -31, name: "EncodeDataWriteNothingWritten"},
|
|
@@ -548,6 +549,73 @@ export const BlueSPResult = proto2.makeMessageType(
|
|
|
548
549
|
],
|
|
549
550
|
);
|
|
550
551
|
|
|
552
|
+
/**
|
|
553
|
+
* @generated from message BlueWebSPHandshake
|
|
554
|
+
*/
|
|
555
|
+
export const BlueWebSPHandshake = proto2.makeMessageType(
|
|
556
|
+
"BlueWebSPHandshake",
|
|
557
|
+
() => [
|
|
558
|
+
{ no: 1, name: "salt", kind: "scalar", T: 12 /* ScalarType.BYTES */ },
|
|
559
|
+
],
|
|
560
|
+
);
|
|
561
|
+
|
|
562
|
+
/**
|
|
563
|
+
* @generated from message BlueWebSPHandshakeReply
|
|
564
|
+
*/
|
|
565
|
+
export const BlueWebSPHandshakeReply = proto2.makeMessageType(
|
|
566
|
+
"BlueWebSPHandshakeReply",
|
|
567
|
+
() => [
|
|
568
|
+
{ no: 1, name: "deviceId", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
569
|
+
{ no: 2, name: "signature", kind: "scalar", T: 12 /* ScalarType.BYTES */ },
|
|
570
|
+
],
|
|
571
|
+
);
|
|
572
|
+
|
|
573
|
+
/**
|
|
574
|
+
* @generated from message BlueWebSPMessage
|
|
575
|
+
*/
|
|
576
|
+
export const BlueWebSPMessage = proto2.makeMessageType(
|
|
577
|
+
"BlueWebSPMessage",
|
|
578
|
+
() => [
|
|
579
|
+
{ no: 1, name: "transactionId", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
580
|
+
{ no: 2, name: "payload", kind: "message", T: BlueSPResult },
|
|
581
|
+
],
|
|
582
|
+
);
|
|
583
|
+
|
|
584
|
+
/**
|
|
585
|
+
* Message sent by the server to the device
|
|
586
|
+
*
|
|
587
|
+
* @generated from message BlueWebSPServerMessage
|
|
588
|
+
*/
|
|
589
|
+
export const BlueWebSPServerMessage = proto2.makeMessageType(
|
|
590
|
+
"BlueWebSPServerMessage",
|
|
591
|
+
() => [
|
|
592
|
+
{ no: 2, name: "handshake", kind: "message", T: BlueWebSPHandshake, oneof: "payload" },
|
|
593
|
+
{ no: 3, name: "command", kind: "message", T: BlueSPTokenCommand, oneof: "payload" },
|
|
594
|
+
{ no: 4, name: "ossSo", kind: "message", T: BlueOssSoMobile, oneof: "payload" },
|
|
595
|
+
{ no: 5, name: "ossSid", kind: "message", T: BlueOssSidMobile, oneof: "payload" },
|
|
596
|
+
],
|
|
597
|
+
);
|
|
598
|
+
|
|
599
|
+
/**
|
|
600
|
+
* TODO: payload
|
|
601
|
+
*
|
|
602
|
+
* @generated from message BlueWebSPClientMessage
|
|
603
|
+
*/
|
|
604
|
+
export const BlueWebSPClientMessage = proto2.makeMessageType(
|
|
605
|
+
"BlueWebSPClientMessage",
|
|
606
|
+
[],
|
|
607
|
+
);
|
|
608
|
+
|
|
609
|
+
/**
|
|
610
|
+
* @generated from message BlueWebSPStatusMessage
|
|
611
|
+
*/
|
|
612
|
+
export const BlueWebSPStatusMessage = proto2.makeMessageType(
|
|
613
|
+
"BlueWebSPStatusMessage",
|
|
614
|
+
() => [
|
|
615
|
+
{ no: 1, name: "status", kind: "enum", T: proto2.getEnumType(BlueReturnCode) },
|
|
616
|
+
],
|
|
617
|
+
);
|
|
618
|
+
|
|
551
619
|
/**
|
|
552
620
|
* @generated from message BlueOssAccessResult
|
|
553
621
|
*/
|