Open `origin_visit_status_add` endpoint to add origin visit statuses.
This endpoints define 2 behaviors:
- one with sanity checks. This allows to prevent any writes in case checks
failure are detected. This one is expected to be the default behavior used by
loaders.
- one without sanity checks. This allows mass replay when we know in advance
that some data could be there yet. This is expected to be used with replayer
for example. As mentioned in the docstring, it's up to the caller to ensure
errors are caught.
Related to T2310