So I’ve setup Zapier CLI with refresh token and everything was working fine.
Recently, I’ve made some changes and I started getting this. It means the auth token is getting expired.
The changes I’ve made were not even related to authentication even.
Any idea why this is happening?
For reference:
Earlier
```
module.exports = {
perform: perform,
….
}
```
My changes:
```
module.export = {
perform : (z, bundle) => someFunction(z, bundle, perform)
...
}
```