You've already forked npm-core-sdk
56 lines
1.5 KiB
TypeScript
56 lines
1.5 KiB
TypeScript
// @generated by protoc-gen-connect-es v0.13.0 with parameter "target=ts"
|
|
// @generated from file executionflowQuery.proto (package api, syntax proto3)
|
|
/* eslint-disable */
|
|
// @ts-nocheck
|
|
|
|
import { ExecutionflowByFilterQuery, ExecutionflowByFilterResult, ExecutionflowByIdQuery, ExecutionflowByIdResult } from "./executionflowQuery_pb.js";
|
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
import { GetKPIDataQuery, GetKPIDataResult } from "./clickhouse_pb.js";
|
|
import { CountLinesQuery, CountLinesResult } from "./shared_pb.js";
|
|
|
|
/**
|
|
* @generated from service api.ExecutionflowQuery
|
|
*/
|
|
export const ExecutionflowQuery = {
|
|
typeName: "api.ExecutionflowQuery",
|
|
methods: {
|
|
/**
|
|
* @generated from rpc api.ExecutionflowQuery.GetByIds
|
|
*/
|
|
getByIds: {
|
|
name: "GetByIds",
|
|
I: ExecutionflowByIdQuery,
|
|
O: ExecutionflowByIdResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.ExecutionflowQuery.GetKPIData
|
|
*/
|
|
getKPIData: {
|
|
name: "GetKPIData",
|
|
I: GetKPIDataQuery,
|
|
O: GetKPIDataResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.ExecutionflowQuery.CountLines
|
|
*/
|
|
countLines: {
|
|
name: "CountLines",
|
|
I: CountLinesQuery,
|
|
O: CountLinesResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.ExecutionflowQuery.Find
|
|
*/
|
|
find: {
|
|
name: "Find",
|
|
I: ExecutionflowByFilterQuery,
|
|
O: ExecutionflowByFilterResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
}
|
|
} as const;
|
|
|