You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
// @generated by protobuf-ts 2.10.0 with parameter use_proto_field_name
|
||||
// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name
|
||||
// @generated from protobuf file "logger.proto" (package "api", syntax proto3)
|
||||
// tslint:disable
|
||||
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
||||
@@ -20,19 +20,19 @@ import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
|
||||
*/
|
||||
export interface ILoggerServiceClient {
|
||||
/**
|
||||
* @generated from protobuf rpc: Create(api.PlatformLogCreateRequest) returns (api.PlatformLogCreateResponse);
|
||||
* @generated from protobuf rpc: Create
|
||||
*/
|
||||
create(input: PlatformLogCreateRequest, options?: RpcOptions): UnaryCall<PlatformLogCreateRequest, PlatformLogCreateResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: GetByIds(api.PlatformLogGetByIdsRequest) returns (api.PlatformLogGetByIdsResult);
|
||||
* @generated from protobuf rpc: GetByIds
|
||||
*/
|
||||
getByIds(input: PlatformLogGetByIdsRequest, options?: RpcOptions): UnaryCall<PlatformLogGetByIdsRequest, PlatformLogGetByIdsResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: Find(api.PlatformLogFindRequest) returns (api.PlatformLogFindResult);
|
||||
* @generated from protobuf rpc: Find
|
||||
*/
|
||||
find(input: PlatformLogFindRequest, options?: RpcOptions): UnaryCall<PlatformLogFindRequest, PlatformLogFindResult>;
|
||||
/**
|
||||
* @generated from protobuf rpc: FindMatchingFieldValues(api.PlatformLogByMatchRequest) returns (api.PlatformLogByMatchResult);
|
||||
* @generated from protobuf rpc: FindMatchingFieldValues
|
||||
*/
|
||||
findMatchingFieldValues(input: PlatformLogByMatchRequest, options?: RpcOptions): UnaryCall<PlatformLogByMatchRequest, PlatformLogByMatchResult>;
|
||||
}
|
||||
@@ -46,28 +46,28 @@ export class LoggerServiceClient implements ILoggerServiceClient, ServiceInfo {
|
||||
constructor(private readonly _transport: RpcTransport) {
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: Create(api.PlatformLogCreateRequest) returns (api.PlatformLogCreateResponse);
|
||||
* @generated from protobuf rpc: Create
|
||||
*/
|
||||
create(input: PlatformLogCreateRequest, options?: RpcOptions): UnaryCall<PlatformLogCreateRequest, PlatformLogCreateResponse> {
|
||||
const method = this.methods[0], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<PlatformLogCreateRequest, PlatformLogCreateResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: GetByIds(api.PlatformLogGetByIdsRequest) returns (api.PlatformLogGetByIdsResult);
|
||||
* @generated from protobuf rpc: GetByIds
|
||||
*/
|
||||
getByIds(input: PlatformLogGetByIdsRequest, options?: RpcOptions): UnaryCall<PlatformLogGetByIdsRequest, PlatformLogGetByIdsResult> {
|
||||
const method = this.methods[1], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<PlatformLogGetByIdsRequest, PlatformLogGetByIdsResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: Find(api.PlatformLogFindRequest) returns (api.PlatformLogFindResult);
|
||||
* @generated from protobuf rpc: Find
|
||||
*/
|
||||
find(input: PlatformLogFindRequest, options?: RpcOptions): UnaryCall<PlatformLogFindRequest, PlatformLogFindResult> {
|
||||
const method = this.methods[2], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<PlatformLogFindRequest, PlatformLogFindResult>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: FindMatchingFieldValues(api.PlatformLogByMatchRequest) returns (api.PlatformLogByMatchResult);
|
||||
* @generated from protobuf rpc: FindMatchingFieldValues
|
||||
*/
|
||||
findMatchingFieldValues(input: PlatformLogByMatchRequest, options?: RpcOptions): UnaryCall<PlatformLogByMatchRequest, PlatformLogByMatchResult> {
|
||||
const method = this.methods[3], opt = this._transport.mergeOptions(options);
|
||||
|
||||
Reference in New Issue
Block a user