Closed debae closed 1 week ago
Latest commit: 9b67e62649c1868df0f7ba6c681b3d93b0bb18d5
The changes in this PR will be included in the next version bump.
Not sure what this means? Click here to learn what changesets are.
Click here if you're a maintainer who wants to add another changeset to this PR
Thank you mate! Appreciate the effort. Will review early next week.
Great @debae thanks for this. Merged!
This pull request introduces functionality for managing teams and users in the EventCatalog. The most important changes include adding new modules for teams and users, updating the SDK to include these new functionalities, and adding corresponding tests.
New Functionality for Teams and Users:
src/teams.ts
: Added functions to get, write, and remove teams from the EventCatalog. This includesgetTeam
,getTeams
,writeTeam
, andrmTeamById
.src/users.ts
: Added functions to get, write, and remove users from the EventCatalog. This includesgetUser
,getUsers
,writeUser
, andrmUserById
.SDK Updates:
src/index.ts
: Updated the SDK to include the new team and user functions. This includes importing the new functions and adding them to the SDK's exported methods. [1] [2]