You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -4,6 +4,7 @@
|
||||
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
||||
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
|
||||
import { MessagingService } from "./messaging";
|
||||
import type { GetMessagingPeriodUsageRequest } from "./messaging";
|
||||
import type { IsMessagingMaxUsageReachedResponse } from "./messaging";
|
||||
import type { IsMessagingMaxUsageReachedRequest } from "./messaging";
|
||||
import type { GetMessagingUsageResponse } from "./messaging";
|
||||
@@ -29,6 +30,10 @@ export interface IMessagingServiceClient {
|
||||
* @generated from protobuf rpc: IsMaxUsageReached
|
||||
*/
|
||||
isMaxUsageReached(input: IsMessagingMaxUsageReachedRequest, options?: RpcOptions): UnaryCall<IsMessagingMaxUsageReachedRequest, IsMessagingMaxUsageReachedResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: GetPeriodUsage
|
||||
*/
|
||||
getPeriodUsage(input: GetMessagingPeriodUsageRequest, options?: RpcOptions): UnaryCall<GetMessagingPeriodUsageRequest, GetMessagingUsageResponse>;
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf service api.MessagingService
|
||||
@@ -60,4 +65,11 @@ export class MessagingServiceClient implements IMessagingServiceClient, ServiceI
|
||||
const method = this.methods[2], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<IsMessagingMaxUsageReachedRequest, IsMessagingMaxUsageReachedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: GetPeriodUsage
|
||||
*/
|
||||
getPeriodUsage(input: GetMessagingPeriodUsageRequest, options?: RpcOptions): UnaryCall<GetMessagingPeriodUsageRequest, GetMessagingUsageResponse> {
|
||||
const method = this.methods[3], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<GetMessagingPeriodUsageRequest, GetMessagingUsageResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user