You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -4,8 +4,6 @@
|
||||
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
||||
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
|
||||
import { ViewService } from "./view";
|
||||
import type { GetSiteViewFieldsResult } from "./view";
|
||||
import type { GetSiteViewFieldsRequest } from "./view";
|
||||
import type { GetProjectViewFieldsResult } from "./view";
|
||||
import type { GetProjectViewFieldsRequest } from "./view";
|
||||
import { stackIntercept } from "@protobuf-ts/runtime-rpc";
|
||||
@@ -26,10 +24,6 @@ export interface IViewServiceClient {
|
||||
* @generated from protobuf rpc: GetProjectViewFields
|
||||
*/
|
||||
getProjectViewFields(input: GetProjectViewFieldsRequest, options?: RpcOptions): UnaryCall<GetProjectViewFieldsRequest, GetProjectViewFieldsResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: GetSiteViewFields
|
||||
*/
|
||||
getSiteViewFields(input: GetSiteViewFieldsRequest, options?: RpcOptions): UnaryCall<GetSiteViewFieldsRequest, GetSiteViewFieldsResult>;
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf service api.ViewService
|
||||
@@ -55,11 +49,4 @@ export class ViewServiceClient implements IViewServiceClient, ServiceInfo {
|
||||
const method = this.methods[1], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<GetProjectViewFieldsRequest, GetProjectViewFieldsResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: GetSiteViewFields
|
||||
*/
|
||||
getSiteViewFields(input: GetSiteViewFieldsRequest, options?: RpcOptions): UnaryCall<GetSiteViewFieldsRequest, GetSiteViewFieldsResult> {
|
||||
const method = this.methods[2], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<GetSiteViewFieldsRequest, GetSiteViewFieldsResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user