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 { ActorInputAPI } from "./actorInput";
|
||||
import type { ActorAppointmentConfigurationUpdatedResponse } from "./actorInput";
|
||||
import type { ActorAppointmentConfigurationUpdatedRequest } from "./actorInput";
|
||||
import type { ActorMetaDataUpdatedResponse } from "./actorInput";
|
||||
import type { ActorMetaDataUpdatedRequest } from "./actorInput";
|
||||
import type { ActorClaimAddedResponse } from "./actorInput";
|
||||
@@ -62,6 +64,10 @@ export interface IActorInputAPIClient {
|
||||
* @generated from protobuf rpc: MetaDataUpdated
|
||||
*/
|
||||
metaDataUpdated(input: ActorMetaDataUpdatedRequest, options?: RpcOptions): UnaryCall<ActorMetaDataUpdatedRequest, ActorMetaDataUpdatedResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: AppointmentConfigurationUpdated
|
||||
*/
|
||||
appointmentConfigurationUpdated(input: ActorAppointmentConfigurationUpdatedRequest, options?: RpcOptions): UnaryCall<ActorAppointmentConfigurationUpdatedRequest, ActorAppointmentConfigurationUpdatedResponse>;
|
||||
}
|
||||
/**
|
||||
*
|
||||
@@ -131,4 +137,11 @@ export class ActorInputAPIClient implements IActorInputAPIClient, ServiceInfo {
|
||||
const method = this.methods[7], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ActorMetaDataUpdatedRequest, ActorMetaDataUpdatedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: AppointmentConfigurationUpdated
|
||||
*/
|
||||
appointmentConfigurationUpdated(input: ActorAppointmentConfigurationUpdatedRequest, options?: RpcOptions): UnaryCall<ActorAppointmentConfigurationUpdatedRequest, ActorAppointmentConfigurationUpdatedResponse> {
|
||||
const method = this.methods[8], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ActorAppointmentConfigurationUpdatedRequest, ActorAppointmentConfigurationUpdatedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user