Issues with install function js/raven

I am using https://docs.sentry.io/clients/javascript/ for an existing clojurescript project. Has something changed with sentry or raven? I’m getting the following error: Uncaught TypeError: Raven.config(…).install is not a function for this code

(.install (.config js/Raven
                 "https://my-cdn-code@app.getsentry.com/.."
                 (clj->js {:release (version)
                           :transport transport})))

This has worked in the past for the previous two years.
When I print the .config function I see that install is actually a function. So the error makes sense, I’m just trying to get this to work and figure out what changed

Maybe something is now loading the new Unified JS SDK: https://docs.sentry.io/error-reporting/quickstart/?platform=browser

The new one has a slightly different API which is not compatible with this legacy and deprecated client.