Based on the information provided in the extracts, it seems that Airbyte does not directly support subtracting a day from the current date in its configuration. However, there are a few workarounds you might consider: 1. In the context of the Google Analytics v4 source, a timedelta subtraction of two days was added to ensure data is golden. This was done in the stream_slices
method. You might be able to implement a similar solution in your own use case. Here is the link to the issue for reference. 2. Another user asked a similar question about configuring Airbyte data source’s “Replication Start Date” dynamically. The response suggested using the “Update Source” endpoint for the Airbyte API and programmatically passing in new replication start dates. You could potentially use this approach to pass in the current date minus one day. Here is the link to the forum post for reference. Please note that these are workarounds and might not work perfectly for your use case. You might need to adjust them according to your specific requirements.