Latest generation

This commit is contained in:
ci core model
2025-04-01 09:55:21 +00:00
parent 708d42709e
commit a1814c142c
3 changed files with 299 additions and 2 deletions

View File

@@ -4,6 +4,8 @@
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import { TrackingInputAPI } from "./trackingInput";
import type { TrackingURLUpdatedResponse } from "./trackingInput";
import type { TrackingURLUpdatedRequest } from "./trackingInput";
import type { TrackingDeletedResponse } from "./trackingInput";
import type { TrackingDeletedRequest } from "./trackingInput";
import type { TrackingAttachmentRemovedResponse } from "./trackingInput";
@@ -63,6 +65,10 @@ export interface ITrackingInputAPIClient {
* @generated from protobuf rpc: Deleted(api.TrackingDeletedRequest) returns (api.TrackingDeletedResponse);
*/
deleted(input: TrackingDeletedRequest, options?: RpcOptions): UnaryCall<TrackingDeletedRequest, TrackingDeletedResponse>;
/**
* @generated from protobuf rpc: URLUpdated(api.TrackingURLUpdatedRequest) returns (api.TrackingURLUpdatedResponse);
*/
uRLUpdated(input: TrackingURLUpdatedRequest, options?: RpcOptions): UnaryCall<TrackingURLUpdatedRequest, TrackingURLUpdatedResponse>;
}
/**
*
@@ -133,4 +139,11 @@ export class TrackingInputAPIClient implements ITrackingInputAPIClient, ServiceI
const method = this.methods[7], opt = this._transport.mergeOptions(options);
return stackIntercept<TrackingDeletedRequest, TrackingDeletedResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: URLUpdated(api.TrackingURLUpdatedRequest) returns (api.TrackingURLUpdatedResponse);
*/
uRLUpdated(input: TrackingURLUpdatedRequest, options?: RpcOptions): UnaryCall<TrackingURLUpdatedRequest, TrackingURLUpdatedResponse> {
const method = this.methods[8], opt = this._transport.mergeOptions(options);
return stackIntercept<TrackingURLUpdatedRequest, TrackingURLUpdatedResponse>("unary", this._transport, method, opt, input);
}
}