@@ -92,6 +92,9 @@ export class BoardDetailsResp extends jspb.Message {
92
92
getDebuggingSupported ( ) : boolean ;
93
93
setDebuggingSupported ( value : boolean ) : BoardDetailsResp ;
94
94
95
+ getSerialnumber ( ) : string ;
96
+ setSerialnumber ( value : string ) : BoardDetailsResp ;
97
+
95
98
96
99
serializeBinary ( ) : Uint8Array ;
97
100
toObject ( includeInstance ?: boolean ) : BoardDetailsResp . AsObject ;
@@ -119,6 +122,7 @@ export namespace BoardDetailsResp {
119
122
identificationPrefList : Array < IdentificationPref . AsObject > ,
120
123
programmersList : Array < commands_common_pb . Programmer . AsObject > ,
121
124
debuggingSupported : boolean ,
125
+ serialnumber : string ,
122
126
}
123
127
}
124
128
@@ -535,6 +539,9 @@ export class DetectedPort extends jspb.Message {
535
539
setBoardsList ( value : Array < BoardListItem > ) : DetectedPort ;
536
540
addBoards ( value ?: BoardListItem , index ?: number ) : BoardListItem ;
537
541
542
+ getSerialNumber ( ) : string ;
543
+ setSerialNumber ( value : string ) : DetectedPort ;
544
+
538
545
539
546
serializeBinary ( ) : Uint8Array ;
540
547
toObject ( includeInstance ?: boolean ) : DetectedPort . AsObject ;
@@ -552,6 +559,7 @@ export namespace DetectedPort {
552
559
protocol : string ,
553
560
protocolLabel : string ,
554
561
boardsList : Array < BoardListItem . AsObject > ,
562
+ serialNumber : string ,
555
563
}
556
564
}
557
565
@@ -689,6 +697,12 @@ export class BoardListItem extends jspb.Message {
689
697
setPid ( value : string ) : BoardListItem ;
690
698
691
699
700
+ hasPlatform ( ) : boolean ;
701
+ clearPlatform ( ) : void ;
702
+ getPlatform ( ) : commands_common_pb . Platform | undefined ;
703
+ setPlatform ( value ?: commands_common_pb . Platform ) : BoardListItem ;
704
+
705
+
692
706
serializeBinary ( ) : Uint8Array ;
693
707
toObject ( includeInstance ?: boolean ) : BoardListItem . AsObject ;
694
708
static toObject ( includeInstance : boolean , msg : BoardListItem ) : BoardListItem . AsObject ;
@@ -706,5 +720,61 @@ export namespace BoardListItem {
706
720
isHidden : boolean ,
707
721
vid : string ,
708
722
pid : string ,
723
+ platform ?: commands_common_pb . Platform . AsObject ,
724
+ }
725
+ }
726
+
727
+ export class BoardSearchReq extends jspb . Message {
728
+
729
+ hasInstance ( ) : boolean ;
730
+ clearInstance ( ) : void ;
731
+ getInstance ( ) : commands_common_pb . Instance | undefined ;
732
+ setInstance ( value ?: commands_common_pb . Instance ) : BoardSearchReq ;
733
+
734
+ getSearchArgs ( ) : string ;
735
+ setSearchArgs ( value : string ) : BoardSearchReq ;
736
+
737
+ getIncludeHiddenBoards ( ) : boolean ;
738
+ setIncludeHiddenBoards ( value : boolean ) : BoardSearchReq ;
739
+
740
+
741
+ serializeBinary ( ) : Uint8Array ;
742
+ toObject ( includeInstance ?: boolean ) : BoardSearchReq . AsObject ;
743
+ static toObject ( includeInstance : boolean , msg : BoardSearchReq ) : BoardSearchReq . AsObject ;
744
+ static extensions : { [ key : number ] : jspb . ExtensionFieldInfo < jspb . Message > } ;
745
+ static extensionsBinary : { [ key : number ] : jspb . ExtensionFieldBinaryInfo < jspb . Message > } ;
746
+ static serializeBinaryToWriter ( message : BoardSearchReq , writer : jspb . BinaryWriter ) : void ;
747
+ static deserializeBinary ( bytes : Uint8Array ) : BoardSearchReq ;
748
+ static deserializeBinaryFromReader ( message : BoardSearchReq , reader : jspb . BinaryReader ) : BoardSearchReq ;
749
+ }
750
+
751
+ export namespace BoardSearchReq {
752
+ export type AsObject = {
753
+ instance ?: commands_common_pb . Instance . AsObject ,
754
+ searchArgs : string ,
755
+ includeHiddenBoards : boolean ,
756
+ }
757
+ }
758
+
759
+ export class BoardSearchResp extends jspb . Message {
760
+ clearBoardsList ( ) : void ;
761
+ getBoardsList ( ) : Array < BoardListItem > ;
762
+ setBoardsList ( value : Array < BoardListItem > ) : BoardSearchResp ;
763
+ addBoards ( value ?: BoardListItem , index ?: number ) : BoardListItem ;
764
+
765
+
766
+ serializeBinary ( ) : Uint8Array ;
767
+ toObject ( includeInstance ?: boolean ) : BoardSearchResp . AsObject ;
768
+ static toObject ( includeInstance : boolean , msg : BoardSearchResp ) : BoardSearchResp . AsObject ;
769
+ static extensions : { [ key : number ] : jspb . ExtensionFieldInfo < jspb . Message > } ;
770
+ static extensionsBinary : { [ key : number ] : jspb . ExtensionFieldBinaryInfo < jspb . Message > } ;
771
+ static serializeBinaryToWriter ( message : BoardSearchResp , writer : jspb . BinaryWriter ) : void ;
772
+ static deserializeBinary ( bytes : Uint8Array ) : BoardSearchResp ;
773
+ static deserializeBinaryFromReader ( message : BoardSearchResp , reader : jspb . BinaryReader ) : BoardSearchResp ;
774
+ }
775
+
776
+ export namespace BoardSearchResp {
777
+ export type AsObject = {
778
+ boardsList : Array < BoardListItem . AsObject > ,
709
779
}
710
780
}
0 commit comments