You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -6,6 +6,8 @@ import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
|
||||
import { AppointmentQuery } from "./appointmentQuery";
|
||||
import type { CountLinesResult } from "./shared";
|
||||
import type { CountLinesQuery } from "./shared";
|
||||
import type { GetKPIDataResult } from "./clickhouse";
|
||||
import type { GetKPIDataSiteQuery } from "./clickhouse";
|
||||
import type { ExtractResult } from "./shared";
|
||||
import type { ExtractSiteQuery } from "./shared";
|
||||
import type { ElementByMatchResult } from "./shared";
|
||||
@@ -44,18 +46,10 @@ export interface IAppointmentQueryClient {
|
||||
*/
|
||||
extract(input: ExtractSiteQuery, options?: RpcOptions): UnaryCall<ExtractSiteQuery, ExtractResult>;
|
||||
/**
|
||||
* rpc GetKPIData (GetKPIDataSiteQuery) returns (GetKPIDataResult) {
|
||||
* option (rscType) = "Site";
|
||||
* option (roles) = "";
|
||||
* option (moduleID) = "appointment-scheduling";
|
||||
* option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation) = {
|
||||
* description: "Get Appointment KPI data"
|
||||
* summary: ""
|
||||
* tags: "Appointment Query"
|
||||
* };
|
||||
* option (google.api.method_visibility).restriction = "PUBLIC";
|
||||
* };
|
||||
*
|
||||
* @generated from protobuf rpc: GetKPIData
|
||||
*/
|
||||
getKPIData(input: GetKPIDataSiteQuery, options?: RpcOptions): UnaryCall<GetKPIDataSiteQuery, GetKPIDataResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: CountLines
|
||||
*/
|
||||
countLines(input: CountLinesQuery, options?: RpcOptions): UnaryCall<CountLinesQuery, CountLinesResult>;
|
||||
@@ -105,22 +99,17 @@ export class AppointmentQueryClient implements IAppointmentQueryClient, ServiceI
|
||||
return stackIntercept<ExtractSiteQuery, ExtractResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* rpc GetKPIData (GetKPIDataSiteQuery) returns (GetKPIDataResult) {
|
||||
* option (rscType) = "Site";
|
||||
* option (roles) = "";
|
||||
* option (moduleID) = "appointment-scheduling";
|
||||
* option (grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation) = {
|
||||
* description: "Get Appointment KPI data"
|
||||
* summary: ""
|
||||
* tags: "Appointment Query"
|
||||
* };
|
||||
* option (google.api.method_visibility).restriction = "PUBLIC";
|
||||
* };
|
||||
*
|
||||
* @generated from protobuf rpc: GetKPIData
|
||||
*/
|
||||
getKPIData(input: GetKPIDataSiteQuery, options?: RpcOptions): UnaryCall<GetKPIDataSiteQuery, GetKPIDataResult> {
|
||||
const method = this.methods[5], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<GetKPIDataSiteQuery, GetKPIDataResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: CountLines
|
||||
*/
|
||||
countLines(input: CountLinesQuery, options?: RpcOptions): UnaryCall<CountLinesQuery, CountLinesResult> {
|
||||
const method = this.methods[5], opt = this._transport.mergeOptions(options);
|
||||
const method = this.methods[6], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<CountLinesQuery, CountLinesResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user