You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
// @generated by protobuf-ts 2.10.0 with parameter use_proto_field_name
|
||||
// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name
|
||||
// @generated from protobuf file "elastic.proto" (package "api", syntax proto3)
|
||||
// tslint:disable
|
||||
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
||||
@@ -132,19 +132,19 @@ export interface IElasticServiceClient {
|
||||
// };
|
||||
|
||||
/**
|
||||
* @generated from protobuf rpc: UpdateModelMappings(api.UpdateModelMappingsRequest) returns (api.UpdateModelMappingsResult);
|
||||
* @generated from protobuf rpc: UpdateModelMappings
|
||||
*/
|
||||
updateModelMappings(input: UpdateModelMappingsRequest, options?: RpcOptions): UnaryCall<UpdateModelMappingsRequest, UpdateModelMappingsResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: CreateProjectMappings(api.CreateProjectMappingsRequest) returns (api.CreateProjectMappingsResult);
|
||||
* @generated from protobuf rpc: CreateProjectMappings
|
||||
*/
|
||||
createProjectMappings(input: CreateProjectMappingsRequest, options?: RpcOptions): UnaryCall<CreateProjectMappingsRequest, CreateProjectMappingsResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: DeleteProjectMappings(api.DeleteProjectMappingsRequest) returns (api.DeleteProjectMappingsResult);
|
||||
* @generated from protobuf rpc: DeleteProjectMappings
|
||||
*/
|
||||
deleteProjectMappings(input: DeleteProjectMappingsRequest, options?: RpcOptions): UnaryCall<DeleteProjectMappingsRequest, DeleteProjectMappingsResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: ClearIndexEntity(api.ClearIndexEntityRequest) returns (api.ClearIndexEntityResult);
|
||||
* @generated from protobuf rpc: ClearIndexEntity
|
||||
*/
|
||||
clearIndexEntity(input: ClearIndexEntityRequest, options?: RpcOptions): UnaryCall<ClearIndexEntityRequest, ClearIndexEntityResult>;
|
||||
}
|
||||
@@ -270,28 +270,28 @@ export class ElasticServiceClient implements IElasticServiceClient, ServiceInfo
|
||||
// };
|
||||
|
||||
/**
|
||||
* @generated from protobuf rpc: UpdateModelMappings(api.UpdateModelMappingsRequest) returns (api.UpdateModelMappingsResult);
|
||||
* @generated from protobuf rpc: UpdateModelMappings
|
||||
*/
|
||||
updateModelMappings(input: UpdateModelMappingsRequest, options?: RpcOptions): UnaryCall<UpdateModelMappingsRequest, UpdateModelMappingsResult> {
|
||||
const method = this.methods[0], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<UpdateModelMappingsRequest, UpdateModelMappingsResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: CreateProjectMappings(api.CreateProjectMappingsRequest) returns (api.CreateProjectMappingsResult);
|
||||
* @generated from protobuf rpc: CreateProjectMappings
|
||||
*/
|
||||
createProjectMappings(input: CreateProjectMappingsRequest, options?: RpcOptions): UnaryCall<CreateProjectMappingsRequest, CreateProjectMappingsResult> {
|
||||
const method = this.methods[1], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<CreateProjectMappingsRequest, CreateProjectMappingsResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: DeleteProjectMappings(api.DeleteProjectMappingsRequest) returns (api.DeleteProjectMappingsResult);
|
||||
* @generated from protobuf rpc: DeleteProjectMappings
|
||||
*/
|
||||
deleteProjectMappings(input: DeleteProjectMappingsRequest, options?: RpcOptions): UnaryCall<DeleteProjectMappingsRequest, DeleteProjectMappingsResult> {
|
||||
const method = this.methods[2], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<DeleteProjectMappingsRequest, DeleteProjectMappingsResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: ClearIndexEntity(api.ClearIndexEntityRequest) returns (api.ClearIndexEntityResult);
|
||||
* @generated from protobuf rpc: ClearIndexEntity
|
||||
*/
|
||||
clearIndexEntity(input: ClearIndexEntityRequest, options?: RpcOptions): UnaryCall<ClearIndexEntityRequest, ClearIndexEntityResult> {
|
||||
const method = this.methods[3], opt = this._transport.mergeOptions(options);
|
||||
|
||||
Reference in New Issue
Block a user