7.0.0
shuowu-okta
released this
05 Apr 20:24
·
18 commits
to master
since this release
Breaking changes
-
#373 Uses openapi-generator for creating SDK.
- Methods are invoked on scoped clients
- Method params are passed as a single object
- Models no longer have CRUD methods
- Methods which return
Collection
become async - Enums are replaced with union types
- Model properties are optional
- await client.getUser('ausmvdt5xg8wRVI1d0g3') + await client.userApi.getUser({ userId: 'ausmvdt5xg8wRVI1d0g3' })
- await user.deactivate() + await client.userApi.deactivateUser({ userId: user.id })