The setSignatureValidationRequired() methods in the object have been removed in the new version,IExecuteFunctions | IWebhookFunctions

I use Feishu node(zhgqthomas/n8n-nodes-feishu-lark) to send messages in the workflow and wait for nodes to receive an error message: context.setSignatureValidator Required is not a function
I checked the code and used the context: IEExecuteFunctions | IWebhookFunctions object, and called the method context. setSignatureValidator Required ();

Why does the send and wait node function not wait for results when EXECUTIONs_MODE is set to queue mode, but immediately returns an empty response and can wait when debugging on the workflow page, but not when using production, and EXECUTIONs_MODE is set to regular mode

code:

export function getSendAndWaitConfig(
context: IExecuteFunctions | IWebhookFunctions,
): SendAndWaitConfig {

context.setSignatureValidationRequired();


}