Missing NPM package '@inductiveautomation/perspective-common'

I'm trying to create a new npm project for developing custom perspective components with React.

Since we are running 8.3.3, I tried to install the corresponding version of perspective-client:

npm install @inductiveautomation/perspective-client@2.3.3

This fails with the following error:
npm error 403 403 Forbidden - GET ``https://nexus.inductiveautomation.com/repository/node-packages/@inductiveautomation%2Fperspective-common

It appears that a new transitive dependency "@inductiveautomation/perspective-common" was added in 2.3.3, but was never published to the public nexus.inductiveautomation.com repository.

I also tried installing the latest perspective-client:
npm install @inductiveautomation/perspective-client

...and got a similar error:
npm error 404 The requested resource '@inductiveautomation/perspective-common@2.3.5' could not be found or you do not have permission to access it.

Can anyone tell me if there is an alternate repository I need to add to my .npmrc file in order to find this package?

That's our fault. We created perspective-common in attempts to exclude exports that we only use internally. You'll need to retarget to 8.3.1 as a workaround for now, since the change happened in 8.3.2. We will publish the perspective-common package asap. You shouldn't encounter any breaking changes once we do, unless you happen to be using some obscure exports (you'll know) that we are using internally. Again, sorry about that.

Thank you for the quick response. I am using 2.3.1 as a workaround for now.