Serverless Deployment Error

I am getting the error as attached in the image, while deploying using serverless.
I am using “serverless”: “^3.27.0”

Error: “this.provider.naming.getLambdaFunctionUrlOutputLogicalId”

Found a temporary solution. Updated the plugin file by just adding a small check that function exists or not.

Previous:
output.OutputKey === this.provider.naming.getLambdaFunctionUrlOutputLogicalId(func)
Modified Code:
output.OutputKey === this.provider.naming.hasOwnProperty('getLambdaFunctionUrlOutputLogicalId') ? this.provider.naming.getLambdaFunctionUrlOutputLogicalId(func) : false