@@ -2398,7 +2398,8 @@ proto.cc.arduino.cli.commands.PlatformListReq.prototype.toObject = function(opt_
2398
2398
proto . cc . arduino . cli . commands . PlatformListReq . toObject = function ( includeInstance , msg ) {
2399
2399
var f , obj = {
2400
2400
instance : ( f = msg . getInstance ( ) ) && commands_common_pb . Instance . toObject ( includeInstance , f ) ,
2401
- updatableOnly : jspb . Message . getBooleanFieldWithDefault ( msg , 2 , false )
2401
+ updatableOnly : jspb . Message . getBooleanFieldWithDefault ( msg , 2 , false ) ,
2402
+ all : jspb . Message . getBooleanFieldWithDefault ( msg , 3 , false )
2402
2403
} ;
2403
2404
2404
2405
if ( includeInstance ) {
@@ -2444,6 +2445,10 @@ proto.cc.arduino.cli.commands.PlatformListReq.deserializeBinaryFromReader = func
2444
2445
var value = /** @type {boolean } */ ( reader . readBool ( ) ) ;
2445
2446
msg . setUpdatableOnly ( value ) ;
2446
2447
break ;
2448
+ case 3 :
2449
+ var value = /** @type {boolean } */ ( reader . readBool ( ) ) ;
2450
+ msg . setAll ( value ) ;
2451
+ break ;
2447
2452
default :
2448
2453
reader . skipField ( ) ;
2449
2454
break ;
@@ -2488,6 +2493,13 @@ proto.cc.arduino.cli.commands.PlatformListReq.serializeBinaryToWriter = function
2488
2493
f
2489
2494
) ;
2490
2495
}
2496
+ f = message . getAll ( ) ;
2497
+ if ( f ) {
2498
+ writer . writeBool (
2499
+ 3 ,
2500
+ f
2501
+ ) ;
2502
+ }
2491
2503
} ;
2492
2504
2493
2505
@@ -2546,6 +2558,24 @@ proto.cc.arduino.cli.commands.PlatformListReq.prototype.setUpdatableOnly = funct
2546
2558
} ;
2547
2559
2548
2560
2561
+ /**
2562
+ * optional bool all = 3;
2563
+ * @return {boolean }
2564
+ */
2565
+ proto . cc . arduino . cli . commands . PlatformListReq . prototype . getAll = function ( ) {
2566
+ return /** @type {boolean } */ ( jspb . Message . getBooleanFieldWithDefault ( this , 3 , false ) ) ;
2567
+ } ;
2568
+
2569
+
2570
+ /**
2571
+ * @param {boolean } value
2572
+ * @return {!proto.cc.arduino.cli.commands.PlatformListReq } returns this
2573
+ */
2574
+ proto . cc . arduino . cli . commands . PlatformListReq . prototype . setAll = function ( value ) {
2575
+ return jspb . Message . setProto3BooleanField ( this , 3 , value ) ;
2576
+ } ;
2577
+
2578
+
2549
2579
2550
2580
/**
2551
2581
* List of repeated fields within this message type.
@@ -2753,7 +2783,8 @@ proto.cc.arduino.cli.commands.Platform.toObject = function(includeInstance, msg)
2753
2783
website : jspb . Message . getFieldWithDefault ( msg , 6 , "" ) ,
2754
2784
email : jspb . Message . getFieldWithDefault ( msg , 7 , "" ) ,
2755
2785
boardsList : jspb . Message . toObjectList ( msg . getBoardsList ( ) ,
2756
- proto . cc . arduino . cli . commands . Board . toObject , includeInstance )
2786
+ proto . cc . arduino . cli . commands . Board . toObject , includeInstance ) ,
2787
+ manuallyinstalled : jspb . Message . getBooleanFieldWithDefault ( msg , 9 , false )
2757
2788
} ;
2758
2789
2759
2790
if ( includeInstance ) {
@@ -2823,6 +2854,10 @@ proto.cc.arduino.cli.commands.Platform.deserializeBinaryFromReader = function(ms
2823
2854
reader . readMessage ( value , proto . cc . arduino . cli . commands . Board . deserializeBinaryFromReader ) ;
2824
2855
msg . addBoards ( value ) ;
2825
2856
break ;
2857
+ case 9 :
2858
+ var value = /** @type {boolean } */ ( reader . readBool ( ) ) ;
2859
+ msg . setManuallyinstalled ( value ) ;
2860
+ break ;
2826
2861
default :
2827
2862
reader . skipField ( ) ;
2828
2863
break ;
@@ -2909,6 +2944,13 @@ proto.cc.arduino.cli.commands.Platform.serializeBinaryToWriter = function(messag
2909
2944
proto . cc . arduino . cli . commands . Board . serializeBinaryToWriter
2910
2945
) ;
2911
2946
}
2947
+ f = message . getManuallyinstalled ( ) ;
2948
+ if ( f ) {
2949
+ writer . writeBool (
2950
+ 9 ,
2951
+ f
2952
+ ) ;
2953
+ }
2912
2954
} ;
2913
2955
2914
2956
@@ -3076,6 +3118,24 @@ proto.cc.arduino.cli.commands.Platform.prototype.clearBoardsList = function() {
3076
3118
} ;
3077
3119
3078
3120
3121
+ /**
3122
+ * optional bool ManuallyInstalled = 9;
3123
+ * @return {boolean }
3124
+ */
3125
+ proto . cc . arduino . cli . commands . Platform . prototype . getManuallyinstalled = function ( ) {
3126
+ return /** @type {boolean } */ ( jspb . Message . getBooleanFieldWithDefault ( this , 9 , false ) ) ;
3127
+ } ;
3128
+
3129
+
3130
+ /**
3131
+ * @param {boolean } value
3132
+ * @return {!proto.cc.arduino.cli.commands.Platform } returns this
3133
+ */
3134
+ proto . cc . arduino . cli . commands . Platform . prototype . setManuallyinstalled = function ( value ) {
3135
+ return jspb . Message . setProto3BooleanField ( this , 9 , value ) ;
3136
+ } ;
3137
+
3138
+
3079
3139
3080
3140
3081
3141
0 commit comments