@@ -40,7 +40,7 @@ interface IImmuServiceService extends grpc.ServiceDefinition<grpc.UntypedService
4040 createDatabase : IImmuServiceService_ICreateDatabase ;
4141 databaseList : IImmuServiceService_IDatabaseList ;
4242 useDatabase : IImmuServiceService_IUseDatabase ;
43- cleanIndex : IImmuServiceService_ICleanIndex ;
43+ compactIndex : IImmuServiceService_ICompactIndex ;
4444 changePermission : IImmuServiceService_IChangePermission ;
4545 setActiveUser : IImmuServiceService_ISetActiveUser ;
4646 streamGet : IImmuServiceService_IstreamGet ;
@@ -329,8 +329,8 @@ interface IImmuServiceService_IUseDatabase extends grpc.MethodDefinition<schema_
329329 responseSerialize : grpc . serialize < schema_pb . UseDatabaseReply > ;
330330 responseDeserialize : grpc . deserialize < schema_pb . UseDatabaseReply > ;
331331}
332- interface IImmuServiceService_ICleanIndex extends grpc . MethodDefinition < google_protobuf_empty_pb . Empty , google_protobuf_empty_pb . Empty > {
333- path : "/immudb.schema.ImmuService/CleanIndex " ;
332+ interface IImmuServiceService_ICompactIndex extends grpc . MethodDefinition < google_protobuf_empty_pb . Empty , google_protobuf_empty_pb . Empty > {
333+ path : "/immudb.schema.ImmuService/CompactIndex " ;
334334 requestStream : false ;
335335 responseStream : false ;
336336 requestSerialize : grpc . serialize < google_protobuf_empty_pb . Empty > ;
@@ -516,7 +516,7 @@ export interface IImmuServiceServer {
516516 createDatabase : grpc . handleUnaryCall < schema_pb . Database , google_protobuf_empty_pb . Empty > ;
517517 databaseList : grpc . handleUnaryCall < google_protobuf_empty_pb . Empty , schema_pb . DatabaseListResponse > ;
518518 useDatabase : grpc . handleUnaryCall < schema_pb . Database , schema_pb . UseDatabaseReply > ;
519- cleanIndex : grpc . handleUnaryCall < google_protobuf_empty_pb . Empty , google_protobuf_empty_pb . Empty > ;
519+ compactIndex : grpc . handleUnaryCall < google_protobuf_empty_pb . Empty , google_protobuf_empty_pb . Empty > ;
520520 changePermission : grpc . handleUnaryCall < schema_pb . ChangePermissionRequest , google_protobuf_empty_pb . Empty > ;
521521 setActiveUser : grpc . handleUnaryCall < schema_pb . SetActiveUserRequest , google_protobuf_empty_pb . Empty > ;
522522 streamGet : grpc . handleServerStreamingCall < schema_pb . KeyRequest , schema_pb . Chunk > ;
@@ -626,9 +626,9 @@ export interface IImmuServiceClient {
626626 useDatabase ( request : schema_pb . Database , callback : ( error : grpc . ServiceError | null , response : schema_pb . UseDatabaseReply ) => void ) : grpc . ClientUnaryCall ;
627627 useDatabase ( request : schema_pb . Database , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : schema_pb . UseDatabaseReply ) => void ) : grpc . ClientUnaryCall ;
628628 useDatabase ( request : schema_pb . Database , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : schema_pb . UseDatabaseReply ) => void ) : grpc . ClientUnaryCall ;
629- cleanIndex ( request : google_protobuf_empty_pb . Empty , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
630- cleanIndex ( request : google_protobuf_empty_pb . Empty , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
631- cleanIndex ( request : google_protobuf_empty_pb . Empty , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
629+ compactIndex ( request : google_protobuf_empty_pb . Empty , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
630+ compactIndex ( request : google_protobuf_empty_pb . Empty , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
631+ compactIndex ( request : google_protobuf_empty_pb . Empty , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
632632 changePermission ( request : schema_pb . ChangePermissionRequest , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
633633 changePermission ( request : schema_pb . ChangePermissionRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
634634 changePermission ( request : schema_pb . ChangePermissionRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
@@ -769,9 +769,9 @@ export class ImmuServiceClient extends grpc.Client implements IImmuServiceClient
769769 public useDatabase ( request : schema_pb . Database , callback : ( error : grpc . ServiceError | null , response : schema_pb . UseDatabaseReply ) => void ) : grpc . ClientUnaryCall ;
770770 public useDatabase ( request : schema_pb . Database , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : schema_pb . UseDatabaseReply ) => void ) : grpc . ClientUnaryCall ;
771771 public useDatabase ( request : schema_pb . Database , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : schema_pb . UseDatabaseReply ) => void ) : grpc . ClientUnaryCall ;
772- public cleanIndex ( request : google_protobuf_empty_pb . Empty , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
773- public cleanIndex ( request : google_protobuf_empty_pb . Empty , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
774- public cleanIndex ( request : google_protobuf_empty_pb . Empty , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
772+ public compactIndex ( request : google_protobuf_empty_pb . Empty , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
773+ public compactIndex ( request : google_protobuf_empty_pb . Empty , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
774+ public compactIndex ( request : google_protobuf_empty_pb . Empty , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
775775 public changePermission ( request : schema_pb . ChangePermissionRequest , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
776776 public changePermission ( request : schema_pb . ChangePermissionRequest , metadata : grpc . Metadata , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
777777 public changePermission ( request : schema_pb . ChangePermissionRequest , metadata : grpc . Metadata , options : Partial < grpc . CallOptions > , callback : ( error : grpc . ServiceError | null , response : google_protobuf_empty_pb . Empty ) => void ) : grpc . ClientUnaryCall ;
0 commit comments