@@ -12,7 +12,6 @@ import * as cc_arduino_cli_commands_v1_common_pb from "../../../../../cc/arduino
12
12
import * as cc_arduino_cli_commands_v1_board_pb from "../../../../../cc/arduino/cli/commands/v1/board_pb" ;
13
13
import * as cc_arduino_cli_commands_v1_compile_pb from "../../../../../cc/arduino/cli/commands/v1/compile_pb" ;
14
14
import * as cc_arduino_cli_commands_v1_core_pb from "../../../../../cc/arduino/cli/commands/v1/core_pb" ;
15
- import * as cc_arduino_cli_commands_v1_monitor_pb from "../../../../../cc/arduino/cli/commands/v1/monitor_pb" ;
16
15
import * as cc_arduino_cli_commands_v1_upload_pb from "../../../../../cc/arduino/cli/commands/v1/upload_pb" ;
17
16
import * as cc_arduino_cli_commands_v1_lib_pb from "../../../../../cc/arduino/cli/commands/v1/lib_pb" ;
18
17
@@ -26,7 +25,6 @@ interface IArduinoCoreServiceService extends grpc.ServiceDefinition<grpc.Untyped
26
25
outdated : IArduinoCoreServiceService_IOutdated ;
27
26
upgrade : IArduinoCoreServiceService_IUpgrade ;
28
27
version : IArduinoCoreServiceService_IVersion ;
29
- newSketch : IArduinoCoreServiceService_INewSketch ;
30
28
loadSketch : IArduinoCoreServiceService_ILoadSketch ;
31
29
archiveSketch : IArduinoCoreServiceService_IArchiveSketch ;
32
30
boardDetails : IArduinoCoreServiceService_IBoardDetails ;
@@ -56,8 +54,6 @@ interface IArduinoCoreServiceService extends grpc.ServiceDefinition<grpc.Untyped
56
54
libraryResolveDependencies : IArduinoCoreServiceService_ILibraryResolveDependencies ;
57
55
librarySearch : IArduinoCoreServiceService_ILibrarySearch ;
58
56
libraryList : IArduinoCoreServiceService_ILibraryList ;
59
- monitor : IArduinoCoreServiceService_IMonitor ;
60
- enumerateMonitorPortSettings : IArduinoCoreServiceService_IEnumerateMonitorPortSettings ;
61
57
}
62
58
63
59
interface IArduinoCoreServiceService_ICreate extends grpc . MethodDefinition < cc_arduino_cli_commands_v1_commands_pb . CreateRequest , cc_arduino_cli_commands_v1_commands_pb . CreateResponse > {
@@ -141,15 +137,6 @@ interface IArduinoCoreServiceService_IVersion extends grpc.MethodDefinition<cc_a
141
137
responseSerialize : grpc . serialize < cc_arduino_cli_commands_v1_commands_pb . VersionResponse > ;
142
138
responseDeserialize : grpc . deserialize < cc_arduino_cli_commands_v1_commands_pb . VersionResponse > ;
143
139
}
144
- interface IArduinoCoreServiceService_INewSketch extends grpc . MethodDefinition < cc_arduino_cli_commands_v1_commands_pb . NewSketchRequest , cc_arduino_cli_commands_v1_commands_pb . NewSketchResponse > {
145
- path : "/cc.arduino.cli.commands.v1.ArduinoCoreService/NewSketch" ;
146
- requestStream : false ;
147
- responseStream : false ;
148
- requestSerialize : grpc . serialize < cc_arduino_cli_commands_v1_commands_pb . NewSketchRequest > ;
149
- requestDeserialize : grpc . deserialize < cc_arduino_cli_commands_v1_commands_pb . NewSketchRequest > ;
150
- responseSerialize : grpc . serialize < cc_arduino_cli_commands_v1_commands_pb . NewSketchResponse > ;
151
- responseDeserialize : grpc . deserialize < cc_arduino_cli_commands_v1_commands_pb . NewSketchResponse > ;
152
- }
153
140
interface IArduinoCoreServiceService_ILoadSketch extends grpc . MethodDefinition < cc_arduino_cli_commands_v1_commands_pb . LoadSketchRequest , cc_arduino_cli_commands_v1_commands_pb . LoadSketchResponse > {
154
141
path : "/cc.arduino.cli.commands.v1.ArduinoCoreService/LoadSketch" ;
155
142
requestStream : false ;
@@ -411,24 +398,6 @@ interface IArduinoCoreServiceService_ILibraryList extends grpc.MethodDefinition<
411
398
responseSerialize : grpc . serialize < cc_arduino_cli_commands_v1_lib_pb . LibraryListResponse > ;
412
399
responseDeserialize : grpc . deserialize < cc_arduino_cli_commands_v1_lib_pb . LibraryListResponse > ;
413
400
}
414
- interface IArduinoCoreServiceService_IMonitor extends grpc . MethodDefinition < cc_arduino_cli_commands_v1_monitor_pb . MonitorRequest , cc_arduino_cli_commands_v1_monitor_pb . MonitorResponse > {
415
- path : "/cc.arduino.cli.commands.v1.ArduinoCoreService/Monitor" ;
416
- requestStream : true ;
417
- responseStream : true ;
418
- requestSerialize : grpc . serialize < cc_arduino_cli_commands_v1_monitor_pb . MonitorRequest > ;
419
- requestDeserialize : grpc . deserialize < cc_arduino_cli_commands_v1_monitor_pb . MonitorRequest > ;
420
- responseSerialize : grpc . serialize < cc_arduino_cli_commands_v1_monitor_pb . MonitorResponse > ;
421
- responseDeserialize : grpc . deserialize < cc_arduino_cli_commands_v1_monitor_pb . MonitorResponse > ;
422
- }
423
- interface IArduinoCoreServiceService_IEnumerateMonitorPortSettings extends grpc . MethodDefinition < cc_arduino_cli_commands_v1_monitor_pb . EnumerateMonitorPortSettingsRequest , cc_arduino_cli_commands_v1_monitor_pb . EnumerateMonitorPortSettingsResponse > {
424
- path : "/cc.arduino.cli.commands.v1.ArduinoCoreService/EnumerateMonitorPortSettings" ;
425
- requestStream : false ;
426
- responseStream : false ;
427
- requestSerialize : grpc . serialize < cc_arduino_cli_commands_v1_monitor_pb . EnumerateMonitorPortSettingsRequest > ;
428
- requestDeserialize : grpc . deserialize < cc_arduino_cli_commands_v1_monitor_pb . EnumerateMonitorPortSettingsRequest > ;
429
- responseSerialize : grpc . serialize < cc_arduino_cli_commands_v1_monitor_pb . EnumerateMonitorPortSettingsResponse > ;
430
- responseDeserialize : grpc . deserialize < cc_arduino_cli_commands_v1_monitor_pb . EnumerateMonitorPortSettingsResponse > ;
431
- }
432
401
433
402
export const ArduinoCoreServiceService : IArduinoCoreServiceService ;
434
403
@@ -442,7 +411,6 @@ export interface IArduinoCoreServiceServer {
442
411
outdated : grpc . handleUnaryCall < cc_arduino_cli_commands_v1_commands_pb . OutdatedRequest , cc_arduino_cli_commands_v1_commands_pb . OutdatedResponse > ;
443
412
upgrade : grpc . handleServerStreamingCall < cc_arduino_cli_commands_v1_commands_pb . UpgradeRequest , cc_arduino_cli_commands_v1_commands_pb . UpgradeResponse > ;
444
413
version : grpc . handleUnaryCall < cc_arduino_cli_commands_v1_commands_pb . VersionRequest , cc_arduino_cli_commands_v1_commands_pb . VersionResponse > ;
445
- newSketch : grpc . handleUnaryCall < cc_arduino_cli_commands_v1_commands_pb . NewSketchRequest , cc_arduino_cli_commands_v1_commands_pb . NewSketchResponse > ;
446
414
loadSketch : grpc . handleUnaryCall < cc_arduino_cli_commands_v1_commands_pb . LoadSketchRequest , cc_arduino_cli_commands_v1_commands_pb . LoadSketchResponse > ;
447
415
archiveSketch : grpc . handleUnaryCall < cc_arduino_cli_commands_v1_commands_pb . ArchiveSketchRequest , cc_arduino_cli_commands_v1_commands_pb . ArchiveSketchResponse > ;
448
416
boardDetails : grpc . handleUnaryCall < cc_arduino_cli_commands_v1_board_pb . BoardDetailsRequest , cc_arduino_cli_commands_v1_board_pb . BoardDetailsResponse > ;
@@ -472,8 +440,6 @@ export interface IArduinoCoreServiceServer {
472
440
libraryResolveDependencies : grpc . handleUnaryCall < cc_arduino_cli_commands_v1_lib_pb . LibraryResolveDependenciesRequest , cc_arduino_cli_commands_v1_lib_pb . LibraryResolveDependenciesResponse > ;
473
441
librarySearch : grpc . handleUnaryCall < cc_arduino_cli_commands_v1_lib_pb . LibrarySearchRequest , cc_arduino_cli_commands_v1_lib_pb . LibrarySearchResponse > ;
474
442
libraryList : grpc . handleUnaryCall < cc_arduino_cli_commands_v1_lib_pb . LibraryListRequest , cc_arduino_cli_commands_v1_lib_pb . LibraryListResponse > ;
475
- monitor : grpc . handleBidiStreamingCall < cc_arduino_cli_commands_v1_monitor_pb . MonitorRequest , cc_arduino_cli_commands_v1_monitor_pb . MonitorResponse > ;
476
- enumerateMonitorPortSettings : grpc . handleUnaryCall < cc_arduino_cli_commands_v1_monitor_pb . EnumerateMonitorPortSettingsRequest , cc_arduino_cli_commands_v1_monitor_pb . EnumerateMonitorPortSettingsResponse > ;
477
443
}
478
444
479
445
export interface IArduinoCoreServiceClient {
@@ -499,9 +465,6 @@ export interface IArduinoCoreServiceClient {
499
465
version ( request : cc_arduino_cli_commands_v1_commands_pb . VersionRequest , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_commands_pb . VersionResponse ) => void ) : grpc . ClientUnaryCall ;
500
466
version ( request : cc_arduino_cli_commands_v1_commands_pb . VersionRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_commands_pb . VersionResponse ) => void ) : grpc . ClientUnaryCall ;
501
467
version ( request : cc_arduino_cli_commands_v1_commands_pb . VersionRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_commands_pb . VersionResponse ) => void ) : grpc . ClientUnaryCall ;
502
- newSketch ( request : cc_arduino_cli_commands_v1_commands_pb . NewSketchRequest , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_commands_pb . NewSketchResponse ) => void ) : grpc . ClientUnaryCall ;
503
- newSketch ( request : cc_arduino_cli_commands_v1_commands_pb . NewSketchRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_commands_pb . NewSketchResponse ) => void ) : grpc . ClientUnaryCall ;
504
- newSketch ( request : cc_arduino_cli_commands_v1_commands_pb . NewSketchRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_commands_pb . NewSketchResponse ) => void ) : grpc . ClientUnaryCall ;
505
468
loadSketch ( request : cc_arduino_cli_commands_v1_commands_pb . LoadSketchRequest , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_commands_pb . LoadSketchResponse ) => void ) : grpc . ClientUnaryCall ;
506
469
loadSketch ( request : cc_arduino_cli_commands_v1_commands_pb . LoadSketchRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_commands_pb . LoadSketchResponse ) => void ) : grpc . ClientUnaryCall ;
507
470
loadSketch ( request : cc_arduino_cli_commands_v1_commands_pb . LoadSketchRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_commands_pb . LoadSketchResponse ) => void ) : grpc . ClientUnaryCall ;
@@ -574,12 +537,6 @@ export interface IArduinoCoreServiceClient {
574
537
libraryList ( request : cc_arduino_cli_commands_v1_lib_pb . LibraryListRequest , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_lib_pb . LibraryListResponse ) => void ) : grpc . ClientUnaryCall ;
575
538
libraryList ( request : cc_arduino_cli_commands_v1_lib_pb . LibraryListRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_lib_pb . LibraryListResponse ) => void ) : grpc . ClientUnaryCall ;
576
539
libraryList ( request : cc_arduino_cli_commands_v1_lib_pb . LibraryListRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_lib_pb . LibraryListResponse ) => void ) : grpc . ClientUnaryCall ;
577
- monitor ( ) : grpc . ClientDuplexStream < cc_arduino_cli_commands_v1_monitor_pb . MonitorRequest , cc_arduino_cli_commands_v1_monitor_pb . MonitorResponse > ;
578
- monitor ( options : Partial < grpc . CallOptions > ) : grpc . ClientDuplexStream < cc_arduino_cli_commands_v1_monitor_pb . MonitorRequest , cc_arduino_cli_commands_v1_monitor_pb . MonitorResponse > ;
579
- monitor ( metadata : grpc . Metadata , options ?: Partial < grpc . CallOptions > ) : grpc . ClientDuplexStream < cc_arduino_cli_commands_v1_monitor_pb . MonitorRequest , cc_arduino_cli_commands_v1_monitor_pb . MonitorResponse > ;
580
- enumerateMonitorPortSettings ( request : cc_arduino_cli_commands_v1_monitor_pb . EnumerateMonitorPortSettingsRequest , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_monitor_pb . EnumerateMonitorPortSettingsResponse ) => void ) : grpc . ClientUnaryCall ;
581
- enumerateMonitorPortSettings ( request : cc_arduino_cli_commands_v1_monitor_pb . EnumerateMonitorPortSettingsRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_monitor_pb . EnumerateMonitorPortSettingsResponse ) => void ) : grpc . ClientUnaryCall ;
582
- enumerateMonitorPortSettings ( request : cc_arduino_cli_commands_v1_monitor_pb . EnumerateMonitorPortSettingsRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_monitor_pb . EnumerateMonitorPortSettingsResponse ) => void ) : grpc . ClientUnaryCall ;
583
540
}
584
541
585
542
export class ArduinoCoreServiceClient extends grpc . Client implements IArduinoCoreServiceClient {
@@ -606,9 +563,6 @@ export class ArduinoCoreServiceClient extends grpc.Client implements IArduinoCor
606
563
public version ( request : cc_arduino_cli_commands_v1_commands_pb . VersionRequest , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_commands_pb . VersionResponse ) => void ) : grpc . ClientUnaryCall ;
607
564
public version ( request : cc_arduino_cli_commands_v1_commands_pb . VersionRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_commands_pb . VersionResponse ) => void ) : grpc . ClientUnaryCall ;
608
565
public version ( request : cc_arduino_cli_commands_v1_commands_pb . VersionRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_commands_pb . VersionResponse ) => void ) : grpc . ClientUnaryCall ;
609
- public newSketch ( request : cc_arduino_cli_commands_v1_commands_pb . NewSketchRequest , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_commands_pb . NewSketchResponse ) => void ) : grpc . ClientUnaryCall ;
610
- public newSketch ( request : cc_arduino_cli_commands_v1_commands_pb . NewSketchRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_commands_pb . NewSketchResponse ) => void ) : grpc . ClientUnaryCall ;
611
- public newSketch ( request : cc_arduino_cli_commands_v1_commands_pb . NewSketchRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_commands_pb . NewSketchResponse ) => void ) : grpc . ClientUnaryCall ;
612
566
public loadSketch ( request : cc_arduino_cli_commands_v1_commands_pb . LoadSketchRequest , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_commands_pb . LoadSketchResponse ) => void ) : grpc . ClientUnaryCall ;
613
567
public loadSketch ( request : cc_arduino_cli_commands_v1_commands_pb . LoadSketchRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_commands_pb . LoadSketchResponse ) => void ) : grpc . ClientUnaryCall ;
614
568
public loadSketch ( request : cc_arduino_cli_commands_v1_commands_pb . LoadSketchRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_commands_pb . LoadSketchResponse ) => void ) : grpc . ClientUnaryCall ;
@@ -680,8 +634,4 @@ export class ArduinoCoreServiceClient extends grpc.Client implements IArduinoCor
680
634
public libraryList ( request : cc_arduino_cli_commands_v1_lib_pb . LibraryListRequest , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_lib_pb . LibraryListResponse ) => void ) : grpc . ClientUnaryCall ;
681
635
public libraryList ( request : cc_arduino_cli_commands_v1_lib_pb . LibraryListRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_lib_pb . LibraryListResponse ) => void ) : grpc . ClientUnaryCall ;
682
636
public libraryList ( request : cc_arduino_cli_commands_v1_lib_pb . LibraryListRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_lib_pb . LibraryListResponse ) => void ) : grpc . ClientUnaryCall ;
683
- public monitor ( metadata ?: grpc . Metadata , options ?: Partial < grpc . CallOptions > ) : grpc . ClientDuplexStream < cc_arduino_cli_commands_v1_monitor_pb . MonitorRequest , cc_arduino_cli_commands_v1_monitor_pb . MonitorResponse > ;
684
- public enumerateMonitorPortSettings ( request : cc_arduino_cli_commands_v1_monitor_pb . EnumerateMonitorPortSettingsRequest , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_monitor_pb . EnumerateMonitorPortSettingsResponse ) => void ) : grpc . ClientUnaryCall ;
685
- public enumerateMonitorPortSettings ( request : cc_arduino_cli_commands_v1_monitor_pb . EnumerateMonitorPortSettingsRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_monitor_pb . EnumerateMonitorPortSettingsResponse ) => void ) : grpc . ClientUnaryCall ;
686
- public enumerateMonitorPortSettings ( request : cc_arduino_cli_commands_v1_monitor_pb . EnumerateMonitorPortSettingsRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_monitor_pb . EnumerateMonitorPortSettingsResponse ) => void ) : grpc . ClientUnaryCall ;
687
637
}
0 commit comments