You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user