You've already forked npm-core-sdk
37 lines
938 B
TypeScript
37 lines
938 B
TypeScript
// @generated by protoc-gen-connect-es v0.13.0 with parameter "target=ts"
|
|
// @generated from file trackingQuery.proto (package api, syntax proto3)
|
|
/* eslint-disable */
|
|
// @ts-nocheck
|
|
|
|
import { TrackingByIdQuery, TrackingByIdResult } from "./trackingQuery_pb.js";
|
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
import { CountLinesQuery, CountLinesResult } from "./shared_pb.js";
|
|
|
|
/**
|
|
* @generated from service api.TrackingQuery
|
|
*/
|
|
export const TrackingQuery = {
|
|
typeName: "api.TrackingQuery",
|
|
methods: {
|
|
/**
|
|
* @generated from rpc api.TrackingQuery.GetByIds
|
|
*/
|
|
getByIds: {
|
|
name: "GetByIds",
|
|
I: TrackingByIdQuery,
|
|
O: TrackingByIdResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
/**
|
|
* @generated from rpc api.TrackingQuery.CountLines
|
|
*/
|
|
countLines: {
|
|
name: "CountLines",
|
|
I: CountLinesQuery,
|
|
O: CountLinesResult,
|
|
kind: MethodKind.Unary,
|
|
},
|
|
}
|
|
} as const;
|
|
|