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 "kpi.proto" (package "api", syntax proto3)
|
||||
// tslint:disable
|
||||
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
||||
@@ -28,35 +28,35 @@ import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
|
||||
*/
|
||||
export interface IKpiServiceClient {
|
||||
/**
|
||||
* @generated from protobuf rpc: GetKpis(api.GetKpisRequest) returns (api.GetKpisResult);
|
||||
* @generated from protobuf rpc: GetKpis
|
||||
*/
|
||||
getKpis(input: GetKpisRequest, options?: RpcOptions): UnaryCall<GetKpisRequest, GetKpisResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: GetKpiTableStructure(api.GetKpiTableStructureRequest) returns (api.GetKpiTableStructureResult);
|
||||
* @generated from protobuf rpc: GetKpiTableStructure
|
||||
*/
|
||||
getKpiTableStructure(input: GetKpiTableStructureRequest, options?: RpcOptions): UnaryCall<GetKpiTableStructureRequest, GetKpiTableStructureResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: UpdateKpiTableStructure(api.UpdateKpiTableStructureRequest) returns (api.UpdateKpiTableStructureResult);
|
||||
* @generated from protobuf rpc: UpdateKpiTableStructure
|
||||
*/
|
||||
updateKpiTableStructure(input: UpdateKpiTableStructureRequest, options?: RpcOptions): UnaryCall<UpdateKpiTableStructureRequest, UpdateKpiTableStructureResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: GetKpiEntities(api.GetKpiEntitiesRequest) returns (api.GetKpiEntitiesResult);
|
||||
* @generated from protobuf rpc: GetKpiEntities
|
||||
*/
|
||||
getKpiEntities(input: GetKpiEntitiesRequest, options?: RpcOptions): UnaryCall<GetKpiEntitiesRequest, GetKpiEntitiesResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: ClearKpiEntity(api.ClearKpiEntityRequest) returns (api.ClearKpiEntityResult);
|
||||
* @generated from protobuf rpc: ClearKpiEntity
|
||||
*/
|
||||
clearKpiEntity(input: ClearKpiEntityRequest, options?: RpcOptions): UnaryCall<ClearKpiEntityRequest, ClearKpiEntityResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: CreateMV(api.CreateMVRequest) returns (api.CreateMVResult);
|
||||
* @generated from protobuf rpc: CreateMV
|
||||
*/
|
||||
createMV(input: CreateMVRequest, options?: RpcOptions): UnaryCall<CreateMVRequest, CreateMVResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: DropMV(api.DropMVRequest) returns (api.DropMVResult);
|
||||
* @generated from protobuf rpc: DropMV
|
||||
*/
|
||||
dropMV(input: DropMVRequest, options?: RpcOptions): UnaryCall<DropMVRequest, DropMVResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: PopulateMV(api.PopulateMVRequest) returns (api.PopulateMVResult);
|
||||
* @generated from protobuf rpc: PopulateMV
|
||||
*/
|
||||
populateMV(input: PopulateMVRequest, options?: RpcOptions): UnaryCall<PopulateMVRequest, PopulateMVResult>;
|
||||
}
|
||||
@@ -70,56 +70,56 @@ export class KpiServiceClient implements IKpiServiceClient, ServiceInfo {
|
||||
constructor(private readonly _transport: RpcTransport) {
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: GetKpis(api.GetKpisRequest) returns (api.GetKpisResult);
|
||||
* @generated from protobuf rpc: GetKpis
|
||||
*/
|
||||
getKpis(input: GetKpisRequest, options?: RpcOptions): UnaryCall<GetKpisRequest, GetKpisResult> {
|
||||
const method = this.methods[0], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<GetKpisRequest, GetKpisResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: GetKpiTableStructure(api.GetKpiTableStructureRequest) returns (api.GetKpiTableStructureResult);
|
||||
* @generated from protobuf rpc: GetKpiTableStructure
|
||||
*/
|
||||
getKpiTableStructure(input: GetKpiTableStructureRequest, options?: RpcOptions): UnaryCall<GetKpiTableStructureRequest, GetKpiTableStructureResult> {
|
||||
const method = this.methods[1], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<GetKpiTableStructureRequest, GetKpiTableStructureResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: UpdateKpiTableStructure(api.UpdateKpiTableStructureRequest) returns (api.UpdateKpiTableStructureResult);
|
||||
* @generated from protobuf rpc: UpdateKpiTableStructure
|
||||
*/
|
||||
updateKpiTableStructure(input: UpdateKpiTableStructureRequest, options?: RpcOptions): UnaryCall<UpdateKpiTableStructureRequest, UpdateKpiTableStructureResult> {
|
||||
const method = this.methods[2], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<UpdateKpiTableStructureRequest, UpdateKpiTableStructureResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: GetKpiEntities(api.GetKpiEntitiesRequest) returns (api.GetKpiEntitiesResult);
|
||||
* @generated from protobuf rpc: GetKpiEntities
|
||||
*/
|
||||
getKpiEntities(input: GetKpiEntitiesRequest, options?: RpcOptions): UnaryCall<GetKpiEntitiesRequest, GetKpiEntitiesResult> {
|
||||
const method = this.methods[3], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<GetKpiEntitiesRequest, GetKpiEntitiesResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: ClearKpiEntity(api.ClearKpiEntityRequest) returns (api.ClearKpiEntityResult);
|
||||
* @generated from protobuf rpc: ClearKpiEntity
|
||||
*/
|
||||
clearKpiEntity(input: ClearKpiEntityRequest, options?: RpcOptions): UnaryCall<ClearKpiEntityRequest, ClearKpiEntityResult> {
|
||||
const method = this.methods[4], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ClearKpiEntityRequest, ClearKpiEntityResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: CreateMV(api.CreateMVRequest) returns (api.CreateMVResult);
|
||||
* @generated from protobuf rpc: CreateMV
|
||||
*/
|
||||
createMV(input: CreateMVRequest, options?: RpcOptions): UnaryCall<CreateMVRequest, CreateMVResult> {
|
||||
const method = this.methods[5], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<CreateMVRequest, CreateMVResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: DropMV(api.DropMVRequest) returns (api.DropMVResult);
|
||||
* @generated from protobuf rpc: DropMV
|
||||
*/
|
||||
dropMV(input: DropMVRequest, options?: RpcOptions): UnaryCall<DropMVRequest, DropMVResult> {
|
||||
const method = this.methods[6], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<DropMVRequest, DropMVResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: PopulateMV(api.PopulateMVRequest) returns (api.PopulateMVResult);
|
||||
* @generated from protobuf rpc: PopulateMV
|
||||
*/
|
||||
populateMV(input: PopulateMVRequest, options?: RpcOptions): UnaryCall<PopulateMVRequest, PopulateMVResult> {
|
||||
const method = this.methods[7], opt = this._transport.mergeOptions(options);
|
||||
|
||||
Reference in New Issue
Block a user