You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -4,6 +4,10 @@
|
||||
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
||||
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
|
||||
import { AppointmentInputAPI } from "./appointmentInput";
|
||||
import type { AppointmentAssigneesRemovedResponse } from "./appointmentInput";
|
||||
import type { AppointmentAssigneesRemovedRequest } from "./appointmentInput";
|
||||
import type { AppointmentAssigneesAddedResponse } from "./appointmentInput";
|
||||
import type { AppointmentAssigneesAddedRequest } from "./appointmentInput";
|
||||
import type { AppointmentAttachmentRemovedResponse } from "./appointmentInput";
|
||||
import type { AppointmentAttachmentRemovedRequest } from "./appointmentInput";
|
||||
import type { AppointmentAttachmentAddedResponse } from "./appointmentInput";
|
||||
@@ -98,6 +102,14 @@ export interface IAppointmentInputAPIClient {
|
||||
* @generated from protobuf rpc: AttachmentRemoved
|
||||
*/
|
||||
attachmentRemoved(input: AppointmentAttachmentRemovedRequest, options?: RpcOptions): UnaryCall<AppointmentAttachmentRemovedRequest, AppointmentAttachmentRemovedResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: AssigneesAdded
|
||||
*/
|
||||
assigneesAdded(input: AppointmentAssigneesAddedRequest, options?: RpcOptions): UnaryCall<AppointmentAssigneesAddedRequest, AppointmentAssigneesAddedResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: AssigneesRemoved
|
||||
*/
|
||||
assigneesRemoved(input: AppointmentAssigneesRemovedRequest, options?: RpcOptions): UnaryCall<AppointmentAssigneesRemovedRequest, AppointmentAssigneesRemovedResponse>;
|
||||
}
|
||||
/**
|
||||
*
|
||||
@@ -209,4 +221,18 @@ export class AppointmentInputAPIClient implements IAppointmentInputAPIClient, Se
|
||||
const method = this.methods[13], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<AppointmentAttachmentRemovedRequest, AppointmentAttachmentRemovedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: AssigneesAdded
|
||||
*/
|
||||
assigneesAdded(input: AppointmentAssigneesAddedRequest, options?: RpcOptions): UnaryCall<AppointmentAssigneesAddedRequest, AppointmentAssigneesAddedResponse> {
|
||||
const method = this.methods[14], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<AppointmentAssigneesAddedRequest, AppointmentAssigneesAddedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: AssigneesRemoved
|
||||
*/
|
||||
assigneesRemoved(input: AppointmentAssigneesRemovedRequest, options?: RpcOptions): UnaryCall<AppointmentAssigneesRemovedRequest, AppointmentAssigneesRemovedResponse> {
|
||||
const method = this.methods[15], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<AppointmentAssigneesRemovedRequest, AppointmentAssigneesRemovedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user