Latest generation

This commit is contained in:
ci core model
2026-06-18 09:00:58 +00:00
parent 5c2bd89f12
commit a1ea104060
11 changed files with 124 additions and 3 deletions

View File

@@ -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);
}
}