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 { MovementInputAPI } from "./movementInput";
import type { MovementCustomFieldsUpdatedResponse } from "./movementInput";
import type { MovementCustomFieldsUpdatedRequest } from "./movementInput";
import type { MovementSanitisedResponse } from "./movementInput";
import type { MovementSanitisedRequest } from "./movementInput";
import type { MovementDeletedResponse } from "./movementInput";
@@ -62,6 +64,10 @@ export interface IMovementInputAPIClient {
* @generated from protobuf rpc: Sanitised
*/
sanitised(input: MovementSanitisedRequest, options?: RpcOptions): UnaryCall<MovementSanitisedRequest, MovementSanitisedResponse>;
/**
* @generated from protobuf rpc: CustomFieldsUpdated
*/
customFieldsUpdated(input: MovementCustomFieldsUpdatedRequest, options?: RpcOptions): UnaryCall<MovementCustomFieldsUpdatedRequest, MovementCustomFieldsUpdatedResponse>;
}
/**
*
@@ -131,4 +137,11 @@ export class MovementInputAPIClient implements IMovementInputAPIClient, ServiceI
const method = this.methods[7], opt = this._transport.mergeOptions(options);
return stackIntercept<MovementSanitisedRequest, MovementSanitisedResponse>("unary", this._transport, method, opt, input);
}
/**
* @generated from protobuf rpc: CustomFieldsUpdated
*/
customFieldsUpdated(input: MovementCustomFieldsUpdatedRequest, options?: RpcOptions): UnaryCall<MovementCustomFieldsUpdatedRequest, MovementCustomFieldsUpdatedResponse> {
const method = this.methods[8], opt = this._transport.mergeOptions(options);
return stackIntercept<MovementCustomFieldsUpdatedRequest, MovementCustomFieldsUpdatedResponse>("unary", this._transport, method, opt, input);
}
}