You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
breaking: remove `.get{Scope name}Api()` methods
BREAKING CHANGE: `.get{Scope name}Api()` methods have been removed.
Before you could do this
```js
const reposApi = github.getReposApi()
```
Which is the same as doing
```js
const reposApi = github.repos
```
So we removed it :)