Skip to content

0.30.0 (2024-05-23)

Choose a tag to compare

@simon-scherzinger simon-scherzinger released this 23 May 13:18
· 107 commits to develop since this release
  • release version 0.30.0 (c75d7f0)
  • feat: nativePermissions support in GroupResource and AccountResource (4f6c11d)

BREAKING CHANGE

  • This commit adds support for nativePermissions property. The setter for previously used permissions property has been removed.

before:

const account = await api.account(id);
account.permissions = generateNewPermissionArray();

after:

const account = await api.account(id);
account.nativePermissions = generateNewPermissionArray();