@@ -22,9 +22,6 @@ interface IArduinoCoreServiceService extends grpc.ServiceDefinition<grpc.Untyped
22
22
destroy : IArduinoCoreServiceService_IDestroy ;
23
23
updateIndex : IArduinoCoreServiceService_IUpdateIndex ;
24
24
updateLibrariesIndex : IArduinoCoreServiceService_IUpdateLibrariesIndex ;
25
- updateCoreLibrariesIndex : IArduinoCoreServiceService_IUpdateCoreLibrariesIndex ;
26
- outdated : IArduinoCoreServiceService_IOutdated ;
27
- upgrade : IArduinoCoreServiceService_IUpgrade ;
28
25
version : IArduinoCoreServiceService_IVersion ;
29
26
newSketch : IArduinoCoreServiceService_INewSketch ;
30
27
loadSketch : IArduinoCoreServiceService_ILoadSketch ;
@@ -106,33 +103,6 @@ interface IArduinoCoreServiceService_IUpdateLibrariesIndex extends grpc.MethodDe
106
103
responseSerialize : grpc . serialize < cc_arduino_cli_commands_v1_commands_pb . UpdateLibrariesIndexResponse > ;
107
104
responseDeserialize : grpc . deserialize < cc_arduino_cli_commands_v1_commands_pb . UpdateLibrariesIndexResponse > ;
108
105
}
109
- interface IArduinoCoreServiceService_IUpdateCoreLibrariesIndex extends grpc . MethodDefinition < cc_arduino_cli_commands_v1_commands_pb . UpdateCoreLibrariesIndexRequest , cc_arduino_cli_commands_v1_commands_pb . UpdateCoreLibrariesIndexResponse > {
110
- path : "/cc.arduino.cli.commands.v1.ArduinoCoreService/UpdateCoreLibrariesIndex" ;
111
- requestStream : false ;
112
- responseStream : true ;
113
- requestSerialize : grpc . serialize < cc_arduino_cli_commands_v1_commands_pb . UpdateCoreLibrariesIndexRequest > ;
114
- requestDeserialize : grpc . deserialize < cc_arduino_cli_commands_v1_commands_pb . UpdateCoreLibrariesIndexRequest > ;
115
- responseSerialize : grpc . serialize < cc_arduino_cli_commands_v1_commands_pb . UpdateCoreLibrariesIndexResponse > ;
116
- responseDeserialize : grpc . deserialize < cc_arduino_cli_commands_v1_commands_pb . UpdateCoreLibrariesIndexResponse > ;
117
- }
118
- interface IArduinoCoreServiceService_IOutdated extends grpc . MethodDefinition < cc_arduino_cli_commands_v1_commands_pb . OutdatedRequest , cc_arduino_cli_commands_v1_commands_pb . OutdatedResponse > {
119
- path : "/cc.arduino.cli.commands.v1.ArduinoCoreService/Outdated" ;
120
- requestStream : false ;
121
- responseStream : false ;
122
- requestSerialize : grpc . serialize < cc_arduino_cli_commands_v1_commands_pb . OutdatedRequest > ;
123
- requestDeserialize : grpc . deserialize < cc_arduino_cli_commands_v1_commands_pb . OutdatedRequest > ;
124
- responseSerialize : grpc . serialize < cc_arduino_cli_commands_v1_commands_pb . OutdatedResponse > ;
125
- responseDeserialize : grpc . deserialize < cc_arduino_cli_commands_v1_commands_pb . OutdatedResponse > ;
126
- }
127
- interface IArduinoCoreServiceService_IUpgrade extends grpc . MethodDefinition < cc_arduino_cli_commands_v1_commands_pb . UpgradeRequest , cc_arduino_cli_commands_v1_commands_pb . UpgradeResponse > {
128
- path : "/cc.arduino.cli.commands.v1.ArduinoCoreService/Upgrade" ;
129
- requestStream : false ;
130
- responseStream : true ;
131
- requestSerialize : grpc . serialize < cc_arduino_cli_commands_v1_commands_pb . UpgradeRequest > ;
132
- requestDeserialize : grpc . deserialize < cc_arduino_cli_commands_v1_commands_pb . UpgradeRequest > ;
133
- responseSerialize : grpc . serialize < cc_arduino_cli_commands_v1_commands_pb . UpgradeResponse > ;
134
- responseDeserialize : grpc . deserialize < cc_arduino_cli_commands_v1_commands_pb . UpgradeResponse > ;
135
- }
136
106
interface IArduinoCoreServiceService_IVersion extends grpc . MethodDefinition < cc_arduino_cli_commands_v1_commands_pb . VersionRequest , cc_arduino_cli_commands_v1_commands_pb . VersionResponse > {
137
107
path : "/cc.arduino.cli.commands.v1.ArduinoCoreService/Version" ;
138
108
requestStream : false ;
@@ -448,9 +418,6 @@ export interface IArduinoCoreServiceServer {
448
418
destroy : grpc . handleUnaryCall < cc_arduino_cli_commands_v1_commands_pb . DestroyRequest , cc_arduino_cli_commands_v1_commands_pb . DestroyResponse > ;
449
419
updateIndex : grpc . handleServerStreamingCall < cc_arduino_cli_commands_v1_commands_pb . UpdateIndexRequest , cc_arduino_cli_commands_v1_commands_pb . UpdateIndexResponse > ;
450
420
updateLibrariesIndex : grpc . handleServerStreamingCall < cc_arduino_cli_commands_v1_commands_pb . UpdateLibrariesIndexRequest , cc_arduino_cli_commands_v1_commands_pb . UpdateLibrariesIndexResponse > ;
451
- updateCoreLibrariesIndex : grpc . handleServerStreamingCall < cc_arduino_cli_commands_v1_commands_pb . UpdateCoreLibrariesIndexRequest , cc_arduino_cli_commands_v1_commands_pb . UpdateCoreLibrariesIndexResponse > ;
452
- outdated : grpc . handleUnaryCall < cc_arduino_cli_commands_v1_commands_pb . OutdatedRequest , cc_arduino_cli_commands_v1_commands_pb . OutdatedResponse > ;
453
- upgrade : grpc . handleServerStreamingCall < cc_arduino_cli_commands_v1_commands_pb . UpgradeRequest , cc_arduino_cli_commands_v1_commands_pb . UpgradeResponse > ;
454
421
version : grpc . handleUnaryCall < cc_arduino_cli_commands_v1_commands_pb . VersionRequest , cc_arduino_cli_commands_v1_commands_pb . VersionResponse > ;
455
422
newSketch : grpc . handleUnaryCall < cc_arduino_cli_commands_v1_commands_pb . NewSketchRequest , cc_arduino_cli_commands_v1_commands_pb . NewSketchResponse > ;
456
423
loadSketch : grpc . handleUnaryCall < cc_arduino_cli_commands_v1_commands_pb . LoadSketchRequest , cc_arduino_cli_commands_v1_commands_pb . LoadSketchResponse > ;
@@ -500,13 +467,6 @@ export interface IArduinoCoreServiceClient {
500
467
updateIndex ( request : cc_arduino_cli_commands_v1_commands_pb . UpdateIndexRequest , metadata ?: grpc . Metadata , options ?: Partial < grpc . CallOptions > ) : grpc . ClientReadableStream < cc_arduino_cli_commands_v1_commands_pb . UpdateIndexResponse > ;
501
468
updateLibrariesIndex ( request : cc_arduino_cli_commands_v1_commands_pb . UpdateLibrariesIndexRequest , options ?: Partial < grpc . CallOptions > ) : grpc . ClientReadableStream < cc_arduino_cli_commands_v1_commands_pb . UpdateLibrariesIndexResponse > ;
502
469
updateLibrariesIndex ( request : cc_arduino_cli_commands_v1_commands_pb . UpdateLibrariesIndexRequest , metadata ?: grpc . Metadata , options ?: Partial < grpc . CallOptions > ) : grpc . ClientReadableStream < cc_arduino_cli_commands_v1_commands_pb . UpdateLibrariesIndexResponse > ;
503
- updateCoreLibrariesIndex ( request : cc_arduino_cli_commands_v1_commands_pb . UpdateCoreLibrariesIndexRequest , options ?: Partial < grpc . CallOptions > ) : grpc . ClientReadableStream < cc_arduino_cli_commands_v1_commands_pb . UpdateCoreLibrariesIndexResponse > ;
504
- updateCoreLibrariesIndex ( request : cc_arduino_cli_commands_v1_commands_pb . UpdateCoreLibrariesIndexRequest , metadata ?: grpc . Metadata , options ?: Partial < grpc . CallOptions > ) : grpc . ClientReadableStream < cc_arduino_cli_commands_v1_commands_pb . UpdateCoreLibrariesIndexResponse > ;
505
- outdated ( request : cc_arduino_cli_commands_v1_commands_pb . OutdatedRequest , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_commands_pb . OutdatedResponse ) => void ) : grpc . ClientUnaryCall ;
506
- outdated ( request : cc_arduino_cli_commands_v1_commands_pb . OutdatedRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_commands_pb . OutdatedResponse ) => void ) : grpc . ClientUnaryCall ;
507
- outdated ( request : cc_arduino_cli_commands_v1_commands_pb . OutdatedRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_commands_pb . OutdatedResponse ) => void ) : grpc . ClientUnaryCall ;
508
- upgrade ( request : cc_arduino_cli_commands_v1_commands_pb . UpgradeRequest , options ?: Partial < grpc . CallOptions > ) : grpc . ClientReadableStream < cc_arduino_cli_commands_v1_commands_pb . UpgradeResponse > ;
509
- upgrade ( request : cc_arduino_cli_commands_v1_commands_pb . UpgradeRequest , metadata ?: grpc . Metadata , options ?: Partial < grpc . CallOptions > ) : grpc . ClientReadableStream < cc_arduino_cli_commands_v1_commands_pb . UpgradeResponse > ;
510
470
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 ;
511
471
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 ;
512
472
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,13 +569,6 @@ export class ArduinoCoreServiceClient extends grpc.Client implements IArduinoCor
609
569
public updateIndex ( request : cc_arduino_cli_commands_v1_commands_pb . UpdateIndexRequest , metadata ?: grpc . Metadata , options ?: Partial < grpc . CallOptions > ) : grpc . ClientReadableStream < cc_arduino_cli_commands_v1_commands_pb . UpdateIndexResponse > ;
610
570
public updateLibrariesIndex ( request : cc_arduino_cli_commands_v1_commands_pb . UpdateLibrariesIndexRequest , options ?: Partial < grpc . CallOptions > ) : grpc . ClientReadableStream < cc_arduino_cli_commands_v1_commands_pb . UpdateLibrariesIndexResponse > ;
611
571
public updateLibrariesIndex ( request : cc_arduino_cli_commands_v1_commands_pb . UpdateLibrariesIndexRequest , metadata ?: grpc . Metadata , options ?: Partial < grpc . CallOptions > ) : grpc . ClientReadableStream < cc_arduino_cli_commands_v1_commands_pb . UpdateLibrariesIndexResponse > ;
612
- public updateCoreLibrariesIndex ( request : cc_arduino_cli_commands_v1_commands_pb . UpdateCoreLibrariesIndexRequest , options ?: Partial < grpc . CallOptions > ) : grpc . ClientReadableStream < cc_arduino_cli_commands_v1_commands_pb . UpdateCoreLibrariesIndexResponse > ;
613
- public updateCoreLibrariesIndex ( request : cc_arduino_cli_commands_v1_commands_pb . UpdateCoreLibrariesIndexRequest , metadata ?: grpc . Metadata , options ?: Partial < grpc . CallOptions > ) : grpc . ClientReadableStream < cc_arduino_cli_commands_v1_commands_pb . UpdateCoreLibrariesIndexResponse > ;
614
- public outdated ( request : cc_arduino_cli_commands_v1_commands_pb . OutdatedRequest , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_commands_pb . OutdatedResponse ) => void ) : grpc . ClientUnaryCall ;
615
- public outdated ( request : cc_arduino_cli_commands_v1_commands_pb . OutdatedRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_commands_pb . OutdatedResponse ) => void ) : grpc . ClientUnaryCall ;
616
- public outdated ( request : cc_arduino_cli_commands_v1_commands_pb . OutdatedRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : cc_arduino_cli_commands_v1_commands_pb . OutdatedResponse ) => void ) : grpc . ClientUnaryCall ;
617
- public upgrade ( request : cc_arduino_cli_commands_v1_commands_pb . UpgradeRequest , options ?: Partial < grpc . CallOptions > ) : grpc . ClientReadableStream < cc_arduino_cli_commands_v1_commands_pb . UpgradeResponse > ;
618
- public upgrade ( request : cc_arduino_cli_commands_v1_commands_pb . UpgradeRequest , metadata ?: grpc . Metadata , options ?: Partial < grpc . CallOptions > ) : grpc . ClientReadableStream < cc_arduino_cli_commands_v1_commands_pb . UpgradeResponse > ;
619
572
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 ;
620
573
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 ;
621
574
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 ;
0 commit comments