academe-kit 0.2.4 → 0.2.6

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
@@ -2828,6 +2828,7 @@ function createInstitutionService(apiClient) {
2828
2828
  body: data,
2829
2829
  });
2830
2830
  },
2831
+ // Institution Classrooms
2831
2832
  getClassrooms(institutionId, options) {
2832
2833
  return apiClient.GET('/institutions/{institutionId}/classrooms', {
2833
2834
  params: {
@@ -2906,6 +2907,11 @@ function createInstitutionService(apiClient) {
2906
2907
  params: { path: { institutionId, registrationId } },
2907
2908
  });
2908
2909
  },
2910
+ getGroupUsers(institutionId) {
2911
+ return apiClient.GET('/institutions/{institutionId}/groups/users', {
2912
+ params: { path: { institutionId } },
2913
+ });
2914
+ },
2909
2915
  };
2910
2916
  }
2911
2917