@@ -149,7 +149,8 @@ proto.cc.arduino.cli.commands.v1.CompileRequest.toObject = function(includeInsta
149
149
libraryList : ( f = jspb . Message . getRepeatedField ( msg , 24 ) ) == null ? undefined : f ,
150
150
keysKeychain : jspb . Message . getFieldWithDefault ( msg , 25 , "" ) ,
151
151
signKey : jspb . Message . getFieldWithDefault ( msg , 26 , "" ) ,
152
- encryptKey : jspb . Message . getFieldWithDefault ( msg , 27 , "" )
152
+ encryptKey : jspb . Message . getFieldWithDefault ( msg , 27 , "" ) ,
153
+ skipLibrariesDiscovery : jspb . Message . getBooleanFieldWithDefault ( msg , 28 , false )
153
154
} ;
154
155
155
156
if ( includeInstance ) {
@@ -286,6 +287,10 @@ proto.cc.arduino.cli.commands.v1.CompileRequest.deserializeBinaryFromReader = fu
286
287
var value = /** @type {string } */ ( reader . readString ( ) ) ;
287
288
msg . setEncryptKey ( value ) ;
288
289
break ;
290
+ case 28 :
291
+ var value = /** @type {boolean } */ ( reader . readBool ( ) ) ;
292
+ msg . setSkipLibrariesDiscovery ( value ) ;
293
+ break ;
289
294
default :
290
295
reader . skipField ( ) ;
291
296
break ;
@@ -482,6 +487,13 @@ proto.cc.arduino.cli.commands.v1.CompileRequest.serializeBinaryToWriter = functi
482
487
f
483
488
) ;
484
489
}
490
+ f = message . getSkipLibrariesDiscovery ( ) ;
491
+ if ( f ) {
492
+ writer . writeBool (
493
+ 28 ,
494
+ f
495
+ ) ;
496
+ }
485
497
} ;
486
498
487
499
@@ -1016,6 +1028,24 @@ proto.cc.arduino.cli.commands.v1.CompileRequest.prototype.setEncryptKey = functi
1016
1028
} ;
1017
1029
1018
1030
1031
+ /**
1032
+ * optional bool skip_libraries_discovery = 28;
1033
+ * @return {boolean }
1034
+ */
1035
+ proto . cc . arduino . cli . commands . v1 . CompileRequest . prototype . getSkipLibrariesDiscovery = function ( ) {
1036
+ return /** @type {boolean } */ ( jspb . Message . getBooleanFieldWithDefault ( this , 28 , false ) ) ;
1037
+ } ;
1038
+
1039
+
1040
+ /**
1041
+ * @param {boolean } value
1042
+ * @return {!proto.cc.arduino.cli.commands.v1.CompileRequest } returns this
1043
+ */
1044
+ proto . cc . arduino . cli . commands . v1 . CompileRequest . prototype . setSkipLibrariesDiscovery = function ( value ) {
1045
+ return jspb . Message . setProto3BooleanField ( this , 28 , value ) ;
1046
+ } ;
1047
+
1048
+
1019
1049
1020
1050
/**
1021
1051
* List of repeated fields within this message type.
0 commit comments