Latest generation

This commit is contained in:
ci core model
2025-11-18 14:26:14 +00:00
parent d85bfb7614
commit f9c4d30868
26 changed files with 3527 additions and 262 deletions

View File

@@ -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);
}
}