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 { OrderInputAPI } from "./orderInput";
|
||||
import type { OrderAppointmentUpdatedResponse } from "./orderInput";
|
||||
import type { OrderAppointmentUpdatedRequest } from "./orderInput";
|
||||
import type { OrderReceiptCompletedResponse } from "./orderInput";
|
||||
import type { OrderReceiptCompletedRequest } from "./orderInput";
|
||||
import type { OrderReceiptStartedResponse } from "./orderInput";
|
||||
@@ -194,6 +196,10 @@ export interface IOrderInputAPIClient {
|
||||
* @generated from protobuf rpc: ReceiptCompleted
|
||||
*/
|
||||
receiptCompleted(input: OrderReceiptCompletedRequest, options?: RpcOptions): UnaryCall<OrderReceiptCompletedRequest, OrderReceiptCompletedResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: AppointmentUpdated
|
||||
*/
|
||||
appointmentUpdated(input: OrderAppointmentUpdatedRequest, options?: RpcOptions): UnaryCall<OrderAppointmentUpdatedRequest, OrderAppointmentUpdatedResponse>;
|
||||
}
|
||||
/**
|
||||
*
|
||||
@@ -417,4 +423,11 @@ export class OrderInputAPIClient implements IOrderInputAPIClient, ServiceInfo {
|
||||
const method = this.methods[29], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<OrderReceiptCompletedRequest, OrderReceiptCompletedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: AppointmentUpdated
|
||||
*/
|
||||
appointmentUpdated(input: OrderAppointmentUpdatedRequest, options?: RpcOptions): UnaryCall<OrderAppointmentUpdatedRequest, OrderAppointmentUpdatedResponse> {
|
||||
const method = this.methods[30], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<OrderAppointmentUpdatedRequest, OrderAppointmentUpdatedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user