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 { ExecutionflowInputAPI } from "./executionflowInput";
|
||||
import type { ExecutionflowAppointmentUpdatedResponse } from "./executionflowInput";
|
||||
import type { ExecutionflowAppointmentUpdatedRequest } from "./executionflowInput";
|
||||
import type { ExecutionflowCustomFieldsUpdatedResponse } from "./executionflowInput";
|
||||
import type { ExecutionflowCustomFieldsUpdatedRequest } from "./executionflowInput";
|
||||
import type { ExecutionflowSanitisedResponse } from "./executionflowInput";
|
||||
@@ -212,6 +214,10 @@ export interface IExecutionflowInputAPIClient {
|
||||
* @generated from protobuf rpc: CustomFieldsUpdated
|
||||
*/
|
||||
customFieldsUpdated(input: ExecutionflowCustomFieldsUpdatedRequest, options?: RpcOptions): UnaryCall<ExecutionflowCustomFieldsUpdatedRequest, ExecutionflowCustomFieldsUpdatedResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: AppointmentUpdated
|
||||
*/
|
||||
appointmentUpdated(input: ExecutionflowAppointmentUpdatedRequest, options?: RpcOptions): UnaryCall<ExecutionflowAppointmentUpdatedRequest, ExecutionflowAppointmentUpdatedResponse>;
|
||||
}
|
||||
/**
|
||||
*
|
||||
@@ -456,4 +462,11 @@ export class ExecutionflowInputAPIClient implements IExecutionflowInputAPIClient
|
||||
const method = this.methods[32], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ExecutionflowCustomFieldsUpdatedRequest, ExecutionflowCustomFieldsUpdatedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: AppointmentUpdated
|
||||
*/
|
||||
appointmentUpdated(input: ExecutionflowAppointmentUpdatedRequest, options?: RpcOptions): UnaryCall<ExecutionflowAppointmentUpdatedRequest, ExecutionflowAppointmentUpdatedResponse> {
|
||||
const method = this.methods[33], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<ExecutionflowAppointmentUpdatedRequest, ExecutionflowAppointmentUpdatedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user