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.d.ts +57 -6
- package/dist/index.esm.js +6 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/types/services/InstitutionService.d.ts +45 -0
- package/dist/types/services/SerieService.d.ts +2 -2
- package/dist/types/types/academe-api.d.ts +10 -4
- package/package.json +1 -1
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
|
|