The "refreshes are not available for your destination" message indicates that the destination connector you're using does not support the refreshes feature. Refreshes are a feature in Airbyte that allow you to update your data in your destination without having to re-sync all your data. According to the [knowledge source](
https://docs.airbyte.com/operator-guides/refreshes#overview), there are two types of refreshes - "retaining history" and "removing history". Both kinds of Refresh Syncs can be triggered from the UI and via the Airbyte API at either the stream or connection levels. However, both might not be available depending on your sync mode. If you're developing your own connector using the Python CDK, you might need to implement support for refreshes in your connector. Currently, the Python CDK does not support substreams for resumable full refresh, but this work is in progress according to the [knowledge source](
https://docs.airbyte.com/connector-development/cdk-python/resumable-full-refresh-stream#criteria-for-resumable-full-refresh). If you're using an existing connector, it's possible that the connector does not yet support refreshes. In this case, you might need to wait for an update to the connector that adds support for refreshes. For example, in a [Github issue](
https://github.com/airbytehq/airbyte/issues/41991), it was mentioned that a new version of the destination-postgres connector that supports refreshes is coming soon. If you're facing issues with a specific connector, I would recommend checking the Github issues for that connector or opening a new issue if one does not exist.