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 { HandlingunitInputAPI } from "./handlingunitInput";
|
||||
import type { HandlingunitCustomFieldsUpdatedResponse } from "./handlingunitInput";
|
||||
import type { HandlingunitCustomFieldsUpdatedRequest } from "./handlingunitInput";
|
||||
import type { HandlingunitSanitisedResponse } from "./handlingunitInput";
|
||||
import type { HandlingunitSanitisedRequest } from "./handlingunitInput";
|
||||
import type { HandlingunitDeletedResponse } from "./handlingunitInput";
|
||||
@@ -104,6 +106,10 @@ export interface IHandlingunitInputAPIClient {
|
||||
* @generated from protobuf rpc: Sanitised
|
||||
*/
|
||||
sanitised(input: HandlingunitSanitisedRequest, options?: RpcOptions): UnaryCall<HandlingunitSanitisedRequest, HandlingunitSanitisedResponse>;
|
||||
/**
|
||||
* @generated from protobuf rpc: CustomFieldsUpdated
|
||||
*/
|
||||
customFieldsUpdated(input: HandlingunitCustomFieldsUpdatedRequest, options?: RpcOptions): UnaryCall<HandlingunitCustomFieldsUpdatedRequest, HandlingunitCustomFieldsUpdatedResponse>;
|
||||
}
|
||||
/**
|
||||
*
|
||||
@@ -222,4 +228,11 @@ export class HandlingunitInputAPIClient implements IHandlingunitInputAPIClient,
|
||||
const method = this.methods[14], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<HandlingunitSanitisedRequest, HandlingunitSanitisedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf rpc: CustomFieldsUpdated
|
||||
*/
|
||||
customFieldsUpdated(input: HandlingunitCustomFieldsUpdatedRequest, options?: RpcOptions): UnaryCall<HandlingunitCustomFieldsUpdatedRequest, HandlingunitCustomFieldsUpdatedResponse> {
|
||||
const method = this.methods[15], opt = this._transport.mergeOptions(options);
|
||||
return stackIntercept<HandlingunitCustomFieldsUpdatedRequest, HandlingunitCustomFieldsUpdatedResponse>("unary", this._transport, method, opt, input);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user