// @generated by protobuf-ts 2.11.1 with parameter use_proto_field_name,keep_enum_prefix // @generated from protobuf file "metadatadef.proto" (package "api", syntax proto3) // tslint:disable import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; import type { ServiceInfo } from "@protobuf-ts/runtime-rpc"; import { MetadataService } from "./metadatadef"; import type { RestoreMetadatasResult } from "./metadatadef"; import type { RestoreMetadatasRequest } from "./metadatadef"; import type { GetTransitiveMetadatasResult } from "./metadatadef"; import type { GetTransitiveMetadatasRequest } from "./metadatadef"; import type { GetMetadataCountResult } from "./metadatadef"; import type { GetMetadataCountRequest } from "./metadatadef"; import type { DeleteMetadatasResult } from "./metadatadef"; import type { DeleteMetadatasRequest } from "./metadatadef"; import type { GetMetadatasResult } from "./metadatadef"; import type { GetMetadatasRequest } from "./metadatadef"; import type { UpdateMetadataResult } from "./metadatadef"; import type { UpdateMetadataRequest } from "./metadatadef"; import { stackIntercept } from "@protobuf-ts/runtime-rpc"; import type { CreateMetadataResult } from "./metadatadef"; import type { CreateMetadataRequest } from "./metadatadef"; import type { UnaryCall } from "@protobuf-ts/runtime-rpc"; import type { RpcOptions } from "@protobuf-ts/runtime-rpc"; /** * @generated from protobuf service api.MetadataService */ export interface IMetadataServiceClient { /** * @generated from protobuf rpc: CreateMetadata */ createMetadata(input: CreateMetadataRequest, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: UpdateMetadata */ updateMetadata(input: UpdateMetadataRequest, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: GetMetadatas */ getMetadatas(input: GetMetadatasRequest, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: DeleteMetadatas */ deleteMetadatas(input: DeleteMetadatasRequest, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: GetMetadataCount */ getMetadataCount(input: GetMetadataCountRequest, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: GetTransitiveMetadatas */ getTransitiveMetadatas(input: GetTransitiveMetadatasRequest, options?: RpcOptions): UnaryCall; /** * @generated from protobuf rpc: RestoreMetadatas */ restoreMetadatas(input: RestoreMetadatasRequest, options?: RpcOptions): UnaryCall; } /** * @generated from protobuf service api.MetadataService */ export class MetadataServiceClient implements IMetadataServiceClient, ServiceInfo { typeName = MetadataService.typeName; methods = MetadataService.methods; options = MetadataService.options; constructor(private readonly _transport: RpcTransport) { } /** * @generated from protobuf rpc: CreateMetadata */ createMetadata(input: CreateMetadataRequest, options?: RpcOptions): UnaryCall { const method = this.methods[0], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } /** * @generated from protobuf rpc: UpdateMetadata */ updateMetadata(input: UpdateMetadataRequest, options?: RpcOptions): UnaryCall { const method = this.methods[1], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } /** * @generated from protobuf rpc: GetMetadatas */ getMetadatas(input: GetMetadatasRequest, options?: RpcOptions): UnaryCall { const method = this.methods[2], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } /** * @generated from protobuf rpc: DeleteMetadatas */ deleteMetadatas(input: DeleteMetadatasRequest, options?: RpcOptions): UnaryCall { const method = this.methods[3], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } /** * @generated from protobuf rpc: GetMetadataCount */ getMetadataCount(input: GetMetadataCountRequest, options?: RpcOptions): UnaryCall { const method = this.methods[4], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } /** * @generated from protobuf rpc: GetTransitiveMetadatas */ getTransitiveMetadatas(input: GetTransitiveMetadatasRequest, options?: RpcOptions): UnaryCall { const method = this.methods[5], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } /** * @generated from protobuf rpc: RestoreMetadatas */ restoreMetadatas(input: RestoreMetadatasRequest, options?: RpcOptions): UnaryCall { const method = this.methods[6], opt = this._transport.mergeOptions(options); return stackIntercept("unary", this._transport, method, opt, input); } }