academe-kit 0.2.0 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -2859,6 +2859,15 @@ function createInstitutionService(apiClient) {
2859
2859
  params: { path: { institutionId, classroomId } },
2860
2860
  });
2861
2861
  },
2862
+ // Institution Users (list all users with filters)
2863
+ getUsers(institutionId, options) {
2864
+ return apiClient.GET('/institutions/{institutionId}/users', {
2865
+ params: {
2866
+ path: { institutionId },
2867
+ query: options,
2868
+ },
2869
+ });
2870
+ },
2862
2871
  // Institution Registrations (Users in Institution)
2863
2872
  getRegistrations(institutionId) {
2864
2873
  return apiClient.GET('/institutions/{institutionId}/registrations', {