Request for .handle field for pcc/pdc callbacks

I work currently working on a driver module supporting your nRF91x1.
I schedule rx-operations via your nrf_modem_dect_phy_rx() dect_phy modem-api.
I am using the .handle field of the struct nrf_modem_dect_phy_rx_params to store my context which I want to reference to when the modem does notify me via my provided callbacks.

If the rx-operation has finished the op_complete callback provides this very handle as parameter and I can re-create my related context.
But if pcc/pdc have been received the handle is not returned with pcc/pdc/pcc_crc_err/pdc_crc_err callbacks.
Now it creates some unexpected trouble for me to retrieve the related handle for that data if I want to associate that data to its related rx-operation.

Do you plan to add that handle as parameter field for example with nrf_modem_dect_phy_rx_pcc_status/nrf_modem_dect_phy_rx_pcc_status/nrf_modem_dect_phy_rx_pcc_crc_failure/nrf_modem_dect_phy_rx_pdc_crc_failure?

Related