It seems that the option to set the sameSite property in security provider has no impact - looking at the provider.js file, it appears that it only allows true/false in a falsy expression (line 22) this needs to allow the value of the sameSite setting e.g. ‘None’
In the setcookie action I’ve changed it to sameSite: options.sameSite || false and in the security provider sameSite: opts.sameSite || 'Strict' having Strict as default for the security cookie.