@@ -92,6 +92,9 @@ export class BoardDetailsResp extends jspb.Message {
9292 getDebuggingSupported ( ) : boolean ;
9393 setDebuggingSupported ( value : boolean ) : BoardDetailsResp ;
9494
95+ getSerialnumber ( ) : string ;
96+ setSerialnumber ( value : string ) : BoardDetailsResp ;
97+
9598
9699 serializeBinary ( ) : Uint8Array ;
97100 toObject ( includeInstance ?: boolean ) : BoardDetailsResp . AsObject ;
@@ -119,6 +122,7 @@ export namespace BoardDetailsResp {
119122 identificationPrefList : Array < IdentificationPref . AsObject > ,
120123 programmersList : Array < commands_common_pb . Programmer . AsObject > ,
121124 debuggingSupported : boolean ,
125+ serialnumber : string ,
122126 }
123127}
124128
@@ -535,6 +539,9 @@ export class DetectedPort extends jspb.Message {
535539 setBoardsList ( value : Array < BoardListItem > ) : DetectedPort ;
536540 addBoards ( value ?: BoardListItem , index ?: number ) : BoardListItem ;
537541
542+ getSerialNumber ( ) : string ;
543+ setSerialNumber ( value : string ) : DetectedPort ;
544+
538545
539546 serializeBinary ( ) : Uint8Array ;
540547 toObject ( includeInstance ?: boolean ) : DetectedPort . AsObject ;
@@ -552,6 +559,7 @@ export namespace DetectedPort {
552559 protocol : string ,
553560 protocolLabel : string ,
554561 boardsList : Array < BoardListItem . AsObject > ,
562+ serialNumber : string ,
555563 }
556564}
557565
@@ -689,6 +697,12 @@ export class BoardListItem extends jspb.Message {
689697 setPid ( value : string ) : BoardListItem ;
690698
691699
700+ hasPlatform ( ) : boolean ;
701+ clearPlatform ( ) : void ;
702+ getPlatform ( ) : commands_common_pb . Platform | undefined ;
703+ setPlatform ( value ?: commands_common_pb . Platform ) : BoardListItem ;
704+
705+
692706 serializeBinary ( ) : Uint8Array ;
693707 toObject ( includeInstance ?: boolean ) : BoardListItem . AsObject ;
694708 static toObject ( includeInstance : boolean , msg : BoardListItem ) : BoardListItem . AsObject ;
@@ -706,5 +720,61 @@ export namespace BoardListItem {
706720 isHidden : boolean ,
707721 vid : string ,
708722 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 > ,
709779 }
710780}
0 commit comments