Good catch! This boolean is indeed not available in the module. Another interesting point is that even the API reference documentation doesn't show that as a valid parameter. However, the example request at the bottom shows this parameter being used. It's the same for API v2 and v2.0.1.
Meanwhile, the good news is that this can be added to the Ansible module if you want it; you can edit the module code to include it yourself to test it. If you're not in the mood to edit the module code, I added the parameters to the module in my GitHub tree you can test. You can can install this branch with ansible-galaxy with a Git URL:
ansible-galaxy collection install -U git+https://github.com/duanetoler/CheckPointAnsibleMgmtCollection.git,cp_mgmt_interface
This will install into your existing default collection path, but you if you need it to be installed elsewhere, then add -p <pathname> at the end.
The -U option will do an in-place upgrade of what you have already. If you have issues, or want to revert back to the original Check Point collection, then re-install the collection from ansible-galaxy like you did originally, but also add the -U option. This will again overwrite what you installed from my branch and put you back to where you started.
Let us know if it works. If it doesn't, ...let us know, too.