@easyedu/js-lsm-api 1.23.0 → 1.25.0
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/README.md +2 -2
- package/dist/apis/ReportingApi.d.ts +10 -10
- package/dist/apis/ReportingApi.js +10 -10
- package/dist/esm/apis/ReportingApi.d.ts +10 -10
- package/dist/esm/apis/ReportingApi.js +10 -10
- package/package.json +1 -1
- package/src/apis/ReportingApi.ts +10 -10
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @easyedu/js-lsm-api@1.
|
|
1
|
+
## @easyedu/js-lsm-api@1.25.0
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @easyedu/js-lsm-api@1.
|
|
39
|
+
npm install @easyedu/js-lsm-api@1.25.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -58,11 +58,11 @@ export interface GetPortalStudentReportingRequest {
|
|
|
58
58
|
*/
|
|
59
59
|
export declare class ReportingApi extends runtime.BaseAPI {
|
|
60
60
|
/**
|
|
61
|
-
* Get detailed grade information for a specific student and content
|
|
61
|
+
* Get detailed grade information for a specific student and content (can use \'current\' for studentId)
|
|
62
62
|
*/
|
|
63
63
|
getContentGradeDetailRaw(requestParameters: GetContentGradeDetailRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GetContentGradeDetail>>;
|
|
64
64
|
/**
|
|
65
|
-
* Get detailed grade information for a specific student and content
|
|
65
|
+
* Get detailed grade information for a specific student and content (can use \'current\' for studentId)
|
|
66
66
|
*/
|
|
67
67
|
getContentGradeDetail(requestParameters: GetContentGradeDetailRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetContentGradeDetail>;
|
|
68
68
|
/**
|
|
@@ -90,11 +90,11 @@ export declare class ReportingApi extends runtime.BaseAPI {
|
|
|
90
90
|
*/
|
|
91
91
|
getCourseInstructorReportingBasic(requestParameters: GetCourseInstructorReportingBasicRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetCourseReportingBasic>;
|
|
92
92
|
/**
|
|
93
|
-
* Get student-specific reporting for a course
|
|
93
|
+
* Get student-specific reporting for a course (can use \'current\' for studentId)
|
|
94
94
|
*/
|
|
95
95
|
getCourseStudentReportingRaw(requestParameters: GetCourseStudentReportingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GetCourseStudentReporting>>;
|
|
96
96
|
/**
|
|
97
|
-
* Get student-specific reporting for a course
|
|
97
|
+
* Get student-specific reporting for a course (can use \'current\' for studentId)
|
|
98
98
|
*/
|
|
99
99
|
getCourseStudentReporting(requestParameters: GetCourseStudentReportingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetCourseStudentReporting>;
|
|
100
100
|
/**
|
|
@@ -106,27 +106,27 @@ export declare class ReportingApi extends runtime.BaseAPI {
|
|
|
106
106
|
*/
|
|
107
107
|
getModuleInstructorBasicReporting(requestParameters: GetModuleInstructorBasicReportingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetModuleInstructorBasicReporting>;
|
|
108
108
|
/**
|
|
109
|
-
* Get student-specific reporting for a module
|
|
109
|
+
* Get student-specific reporting for a module (can use \'current\' for studentId)
|
|
110
110
|
*/
|
|
111
111
|
getModuleStudentReportingRaw(requestParameters: GetModuleStudentReportingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GetModuleStudentReporting>>;
|
|
112
112
|
/**
|
|
113
|
-
* Get student-specific reporting for a module
|
|
113
|
+
* Get student-specific reporting for a module (can use \'current\' for studentId)
|
|
114
114
|
*/
|
|
115
115
|
getModuleStudentReporting(requestParameters: GetModuleStudentReportingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetModuleStudentReporting>;
|
|
116
116
|
/**
|
|
117
|
-
* Get basic reporting for a portal
|
|
117
|
+
* Get basic reporting for a portal (can use \'current\' for portalId)
|
|
118
118
|
*/
|
|
119
119
|
getPortalBasicReportingRaw(requestParameters: GetPortalBasicReportingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GetPortalBasicReporting>>;
|
|
120
120
|
/**
|
|
121
|
-
* Get basic reporting for a portal
|
|
121
|
+
* Get basic reporting for a portal (can use \'current\' for portalId)
|
|
122
122
|
*/
|
|
123
123
|
getPortalBasicReporting(requestParameters: GetPortalBasicReportingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetPortalBasicReporting>;
|
|
124
124
|
/**
|
|
125
|
-
* Get student reporting for a portal
|
|
125
|
+
* Get student reporting for a portal (can use \'current\' for portalId and studentId)
|
|
126
126
|
*/
|
|
127
127
|
getPortalStudentReportingRaw(requestParameters: GetPortalStudentReportingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GetPortalStudentReporting>>;
|
|
128
128
|
/**
|
|
129
|
-
* Get student reporting for a portal
|
|
129
|
+
* Get student reporting for a portal (can use \'current\' for portalId and studentId)
|
|
130
130
|
*/
|
|
131
131
|
getPortalStudentReporting(requestParameters: GetPortalStudentReportingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetPortalStudentReporting>;
|
|
132
132
|
}
|
|
@@ -30,7 +30,7 @@ const index_1 = require("../models/index");
|
|
|
30
30
|
*/
|
|
31
31
|
class ReportingApi extends runtime.BaseAPI {
|
|
32
32
|
/**
|
|
33
|
-
* Get detailed grade information for a specific student and content
|
|
33
|
+
* Get detailed grade information for a specific student and content (can use \'current\' for studentId)
|
|
34
34
|
*/
|
|
35
35
|
getContentGradeDetailRaw(requestParameters, initOverrides) {
|
|
36
36
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -58,7 +58,7 @@ class ReportingApi extends runtime.BaseAPI {
|
|
|
58
58
|
});
|
|
59
59
|
}
|
|
60
60
|
/**
|
|
61
|
-
* Get detailed grade information for a specific student and content
|
|
61
|
+
* Get detailed grade information for a specific student and content (can use \'current\' for studentId)
|
|
62
62
|
*/
|
|
63
63
|
getContentGradeDetail(requestParameters, initOverrides) {
|
|
64
64
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -172,7 +172,7 @@ class ReportingApi extends runtime.BaseAPI {
|
|
|
172
172
|
});
|
|
173
173
|
}
|
|
174
174
|
/**
|
|
175
|
-
* Get student-specific reporting for a course
|
|
175
|
+
* Get student-specific reporting for a course (can use \'current\' for studentId)
|
|
176
176
|
*/
|
|
177
177
|
getCourseStudentReportingRaw(requestParameters, initOverrides) {
|
|
178
178
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -194,7 +194,7 @@ class ReportingApi extends runtime.BaseAPI {
|
|
|
194
194
|
});
|
|
195
195
|
}
|
|
196
196
|
/**
|
|
197
|
-
* Get student-specific reporting for a course
|
|
197
|
+
* Get student-specific reporting for a course (can use \'current\' for studentId)
|
|
198
198
|
*/
|
|
199
199
|
getCourseStudentReporting(requestParameters, initOverrides) {
|
|
200
200
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -234,7 +234,7 @@ class ReportingApi extends runtime.BaseAPI {
|
|
|
234
234
|
});
|
|
235
235
|
}
|
|
236
236
|
/**
|
|
237
|
-
* Get student-specific reporting for a module
|
|
237
|
+
* Get student-specific reporting for a module (can use \'current\' for studentId)
|
|
238
238
|
*/
|
|
239
239
|
getModuleStudentReportingRaw(requestParameters, initOverrides) {
|
|
240
240
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -259,7 +259,7 @@ class ReportingApi extends runtime.BaseAPI {
|
|
|
259
259
|
});
|
|
260
260
|
}
|
|
261
261
|
/**
|
|
262
|
-
* Get student-specific reporting for a module
|
|
262
|
+
* Get student-specific reporting for a module (can use \'current\' for studentId)
|
|
263
263
|
*/
|
|
264
264
|
getModuleStudentReporting(requestParameters, initOverrides) {
|
|
265
265
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -268,7 +268,7 @@ class ReportingApi extends runtime.BaseAPI {
|
|
|
268
268
|
});
|
|
269
269
|
}
|
|
270
270
|
/**
|
|
271
|
-
* Get basic reporting for a portal
|
|
271
|
+
* Get basic reporting for a portal (can use \'current\' for portalId)
|
|
272
272
|
*/
|
|
273
273
|
getPortalBasicReportingRaw(requestParameters, initOverrides) {
|
|
274
274
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -287,7 +287,7 @@ class ReportingApi extends runtime.BaseAPI {
|
|
|
287
287
|
});
|
|
288
288
|
}
|
|
289
289
|
/**
|
|
290
|
-
* Get basic reporting for a portal
|
|
290
|
+
* Get basic reporting for a portal (can use \'current\' for portalId)
|
|
291
291
|
*/
|
|
292
292
|
getPortalBasicReporting(requestParameters, initOverrides) {
|
|
293
293
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -296,7 +296,7 @@ class ReportingApi extends runtime.BaseAPI {
|
|
|
296
296
|
});
|
|
297
297
|
}
|
|
298
298
|
/**
|
|
299
|
-
* Get student reporting for a portal
|
|
299
|
+
* Get student reporting for a portal (can use \'current\' for portalId and studentId)
|
|
300
300
|
*/
|
|
301
301
|
getPortalStudentReportingRaw(requestParameters, initOverrides) {
|
|
302
302
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -318,7 +318,7 @@ class ReportingApi extends runtime.BaseAPI {
|
|
|
318
318
|
});
|
|
319
319
|
}
|
|
320
320
|
/**
|
|
321
|
-
* Get student reporting for a portal
|
|
321
|
+
* Get student reporting for a portal (can use \'current\' for portalId and studentId)
|
|
322
322
|
*/
|
|
323
323
|
getPortalStudentReporting(requestParameters, initOverrides) {
|
|
324
324
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -58,11 +58,11 @@ export interface GetPortalStudentReportingRequest {
|
|
|
58
58
|
*/
|
|
59
59
|
export declare class ReportingApi extends runtime.BaseAPI {
|
|
60
60
|
/**
|
|
61
|
-
* Get detailed grade information for a specific student and content
|
|
61
|
+
* Get detailed grade information for a specific student and content (can use \'current\' for studentId)
|
|
62
62
|
*/
|
|
63
63
|
getContentGradeDetailRaw(requestParameters: GetContentGradeDetailRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GetContentGradeDetail>>;
|
|
64
64
|
/**
|
|
65
|
-
* Get detailed grade information for a specific student and content
|
|
65
|
+
* Get detailed grade information for a specific student and content (can use \'current\' for studentId)
|
|
66
66
|
*/
|
|
67
67
|
getContentGradeDetail(requestParameters: GetContentGradeDetailRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetContentGradeDetail>;
|
|
68
68
|
/**
|
|
@@ -90,11 +90,11 @@ export declare class ReportingApi extends runtime.BaseAPI {
|
|
|
90
90
|
*/
|
|
91
91
|
getCourseInstructorReportingBasic(requestParameters: GetCourseInstructorReportingBasicRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetCourseReportingBasic>;
|
|
92
92
|
/**
|
|
93
|
-
* Get student-specific reporting for a course
|
|
93
|
+
* Get student-specific reporting for a course (can use \'current\' for studentId)
|
|
94
94
|
*/
|
|
95
95
|
getCourseStudentReportingRaw(requestParameters: GetCourseStudentReportingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GetCourseStudentReporting>>;
|
|
96
96
|
/**
|
|
97
|
-
* Get student-specific reporting for a course
|
|
97
|
+
* Get student-specific reporting for a course (can use \'current\' for studentId)
|
|
98
98
|
*/
|
|
99
99
|
getCourseStudentReporting(requestParameters: GetCourseStudentReportingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetCourseStudentReporting>;
|
|
100
100
|
/**
|
|
@@ -106,27 +106,27 @@ export declare class ReportingApi extends runtime.BaseAPI {
|
|
|
106
106
|
*/
|
|
107
107
|
getModuleInstructorBasicReporting(requestParameters: GetModuleInstructorBasicReportingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetModuleInstructorBasicReporting>;
|
|
108
108
|
/**
|
|
109
|
-
* Get student-specific reporting for a module
|
|
109
|
+
* Get student-specific reporting for a module (can use \'current\' for studentId)
|
|
110
110
|
*/
|
|
111
111
|
getModuleStudentReportingRaw(requestParameters: GetModuleStudentReportingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GetModuleStudentReporting>>;
|
|
112
112
|
/**
|
|
113
|
-
* Get student-specific reporting for a module
|
|
113
|
+
* Get student-specific reporting for a module (can use \'current\' for studentId)
|
|
114
114
|
*/
|
|
115
115
|
getModuleStudentReporting(requestParameters: GetModuleStudentReportingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetModuleStudentReporting>;
|
|
116
116
|
/**
|
|
117
|
-
* Get basic reporting for a portal
|
|
117
|
+
* Get basic reporting for a portal (can use \'current\' for portalId)
|
|
118
118
|
*/
|
|
119
119
|
getPortalBasicReportingRaw(requestParameters: GetPortalBasicReportingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GetPortalBasicReporting>>;
|
|
120
120
|
/**
|
|
121
|
-
* Get basic reporting for a portal
|
|
121
|
+
* Get basic reporting for a portal (can use \'current\' for portalId)
|
|
122
122
|
*/
|
|
123
123
|
getPortalBasicReporting(requestParameters: GetPortalBasicReportingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetPortalBasicReporting>;
|
|
124
124
|
/**
|
|
125
|
-
* Get student reporting for a portal
|
|
125
|
+
* Get student reporting for a portal (can use \'current\' for portalId and studentId)
|
|
126
126
|
*/
|
|
127
127
|
getPortalStudentReportingRaw(requestParameters: GetPortalStudentReportingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GetPortalStudentReporting>>;
|
|
128
128
|
/**
|
|
129
|
-
* Get student reporting for a portal
|
|
129
|
+
* Get student reporting for a portal (can use \'current\' for portalId and studentId)
|
|
130
130
|
*/
|
|
131
131
|
getPortalStudentReporting(requestParameters: GetPortalStudentReportingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetPortalStudentReporting>;
|
|
132
132
|
}
|
|
@@ -27,7 +27,7 @@ import { GetContentGradeDetailFromJSON, GetContentGradesFromJSON, GetContentInst
|
|
|
27
27
|
*/
|
|
28
28
|
export class ReportingApi extends runtime.BaseAPI {
|
|
29
29
|
/**
|
|
30
|
-
* Get detailed grade information for a specific student and content
|
|
30
|
+
* Get detailed grade information for a specific student and content (can use \'current\' for studentId)
|
|
31
31
|
*/
|
|
32
32
|
getContentGradeDetailRaw(requestParameters, initOverrides) {
|
|
33
33
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -55,7 +55,7 @@ export class ReportingApi extends runtime.BaseAPI {
|
|
|
55
55
|
});
|
|
56
56
|
}
|
|
57
57
|
/**
|
|
58
|
-
* Get detailed grade information for a specific student and content
|
|
58
|
+
* Get detailed grade information for a specific student and content (can use \'current\' for studentId)
|
|
59
59
|
*/
|
|
60
60
|
getContentGradeDetail(requestParameters, initOverrides) {
|
|
61
61
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -169,7 +169,7 @@ export class ReportingApi extends runtime.BaseAPI {
|
|
|
169
169
|
});
|
|
170
170
|
}
|
|
171
171
|
/**
|
|
172
|
-
* Get student-specific reporting for a course
|
|
172
|
+
* Get student-specific reporting for a course (can use \'current\' for studentId)
|
|
173
173
|
*/
|
|
174
174
|
getCourseStudentReportingRaw(requestParameters, initOverrides) {
|
|
175
175
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -191,7 +191,7 @@ export class ReportingApi extends runtime.BaseAPI {
|
|
|
191
191
|
});
|
|
192
192
|
}
|
|
193
193
|
/**
|
|
194
|
-
* Get student-specific reporting for a course
|
|
194
|
+
* Get student-specific reporting for a course (can use \'current\' for studentId)
|
|
195
195
|
*/
|
|
196
196
|
getCourseStudentReporting(requestParameters, initOverrides) {
|
|
197
197
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -231,7 +231,7 @@ export class ReportingApi extends runtime.BaseAPI {
|
|
|
231
231
|
});
|
|
232
232
|
}
|
|
233
233
|
/**
|
|
234
|
-
* Get student-specific reporting for a module
|
|
234
|
+
* Get student-specific reporting for a module (can use \'current\' for studentId)
|
|
235
235
|
*/
|
|
236
236
|
getModuleStudentReportingRaw(requestParameters, initOverrides) {
|
|
237
237
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -256,7 +256,7 @@ export class ReportingApi extends runtime.BaseAPI {
|
|
|
256
256
|
});
|
|
257
257
|
}
|
|
258
258
|
/**
|
|
259
|
-
* Get student-specific reporting for a module
|
|
259
|
+
* Get student-specific reporting for a module (can use \'current\' for studentId)
|
|
260
260
|
*/
|
|
261
261
|
getModuleStudentReporting(requestParameters, initOverrides) {
|
|
262
262
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -265,7 +265,7 @@ export class ReportingApi extends runtime.BaseAPI {
|
|
|
265
265
|
});
|
|
266
266
|
}
|
|
267
267
|
/**
|
|
268
|
-
* Get basic reporting for a portal
|
|
268
|
+
* Get basic reporting for a portal (can use \'current\' for portalId)
|
|
269
269
|
*/
|
|
270
270
|
getPortalBasicReportingRaw(requestParameters, initOverrides) {
|
|
271
271
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -284,7 +284,7 @@ export class ReportingApi extends runtime.BaseAPI {
|
|
|
284
284
|
});
|
|
285
285
|
}
|
|
286
286
|
/**
|
|
287
|
-
* Get basic reporting for a portal
|
|
287
|
+
* Get basic reporting for a portal (can use \'current\' for portalId)
|
|
288
288
|
*/
|
|
289
289
|
getPortalBasicReporting(requestParameters, initOverrides) {
|
|
290
290
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -293,7 +293,7 @@ export class ReportingApi extends runtime.BaseAPI {
|
|
|
293
293
|
});
|
|
294
294
|
}
|
|
295
295
|
/**
|
|
296
|
-
* Get student reporting for a portal
|
|
296
|
+
* Get student reporting for a portal (can use \'current\' for portalId and studentId)
|
|
297
297
|
*/
|
|
298
298
|
getPortalStudentReportingRaw(requestParameters, initOverrides) {
|
|
299
299
|
return __awaiter(this, void 0, void 0, function* () {
|
|
@@ -315,7 +315,7 @@ export class ReportingApi extends runtime.BaseAPI {
|
|
|
315
315
|
});
|
|
316
316
|
}
|
|
317
317
|
/**
|
|
318
|
-
* Get student reporting for a portal
|
|
318
|
+
* Get student reporting for a portal (can use \'current\' for portalId and studentId)
|
|
319
319
|
*/
|
|
320
320
|
getPortalStudentReporting(requestParameters, initOverrides) {
|
|
321
321
|
return __awaiter(this, void 0, void 0, function* () {
|
package/package.json
CHANGED
package/src/apis/ReportingApi.ts
CHANGED
|
@@ -103,7 +103,7 @@ export interface GetPortalStudentReportingRequest {
|
|
|
103
103
|
export class ReportingApi extends runtime.BaseAPI {
|
|
104
104
|
|
|
105
105
|
/**
|
|
106
|
-
* Get detailed grade information for a specific student and content
|
|
106
|
+
* Get detailed grade information for a specific student and content (can use \'current\' for studentId)
|
|
107
107
|
*/
|
|
108
108
|
async getContentGradeDetailRaw(requestParameters: GetContentGradeDetailRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GetContentGradeDetail>> {
|
|
109
109
|
if (requestParameters['courseId'] == null) {
|
|
@@ -149,7 +149,7 @@ export class ReportingApi extends runtime.BaseAPI {
|
|
|
149
149
|
}
|
|
150
150
|
|
|
151
151
|
/**
|
|
152
|
-
* Get detailed grade information for a specific student and content
|
|
152
|
+
* Get detailed grade information for a specific student and content (can use \'current\' for studentId)
|
|
153
153
|
*/
|
|
154
154
|
async getContentGradeDetail(requestParameters: GetContentGradeDetailRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetContentGradeDetail> {
|
|
155
155
|
const response = await this.getContentGradeDetailRaw(requestParameters, initOverrides);
|
|
@@ -296,7 +296,7 @@ export class ReportingApi extends runtime.BaseAPI {
|
|
|
296
296
|
}
|
|
297
297
|
|
|
298
298
|
/**
|
|
299
|
-
* Get student-specific reporting for a course
|
|
299
|
+
* Get student-specific reporting for a course (can use \'current\' for studentId)
|
|
300
300
|
*/
|
|
301
301
|
async getCourseStudentReportingRaw(requestParameters: GetCourseStudentReportingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GetCourseStudentReporting>> {
|
|
302
302
|
if (requestParameters['courseId'] == null) {
|
|
@@ -328,7 +328,7 @@ export class ReportingApi extends runtime.BaseAPI {
|
|
|
328
328
|
}
|
|
329
329
|
|
|
330
330
|
/**
|
|
331
|
-
* Get student-specific reporting for a course
|
|
331
|
+
* Get student-specific reporting for a course (can use \'current\' for studentId)
|
|
332
332
|
*/
|
|
333
333
|
async getCourseStudentReporting(requestParameters: GetCourseStudentReportingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetCourseStudentReporting> {
|
|
334
334
|
const response = await this.getCourseStudentReportingRaw(requestParameters, initOverrides);
|
|
@@ -376,7 +376,7 @@ export class ReportingApi extends runtime.BaseAPI {
|
|
|
376
376
|
}
|
|
377
377
|
|
|
378
378
|
/**
|
|
379
|
-
* Get student-specific reporting for a module
|
|
379
|
+
* Get student-specific reporting for a module (can use \'current\' for studentId)
|
|
380
380
|
*/
|
|
381
381
|
async getModuleStudentReportingRaw(requestParameters: GetModuleStudentReportingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GetModuleStudentReporting>> {
|
|
382
382
|
if (requestParameters['courseId'] == null) {
|
|
@@ -415,7 +415,7 @@ export class ReportingApi extends runtime.BaseAPI {
|
|
|
415
415
|
}
|
|
416
416
|
|
|
417
417
|
/**
|
|
418
|
-
* Get student-specific reporting for a module
|
|
418
|
+
* Get student-specific reporting for a module (can use \'current\' for studentId)
|
|
419
419
|
*/
|
|
420
420
|
async getModuleStudentReporting(requestParameters: GetModuleStudentReportingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetModuleStudentReporting> {
|
|
421
421
|
const response = await this.getModuleStudentReportingRaw(requestParameters, initOverrides);
|
|
@@ -423,7 +423,7 @@ export class ReportingApi extends runtime.BaseAPI {
|
|
|
423
423
|
}
|
|
424
424
|
|
|
425
425
|
/**
|
|
426
|
-
* Get basic reporting for a portal
|
|
426
|
+
* Get basic reporting for a portal (can use \'current\' for portalId)
|
|
427
427
|
*/
|
|
428
428
|
async getPortalBasicReportingRaw(requestParameters: GetPortalBasicReportingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GetPortalBasicReporting>> {
|
|
429
429
|
if (requestParameters['portalId'] == null) {
|
|
@@ -448,7 +448,7 @@ export class ReportingApi extends runtime.BaseAPI {
|
|
|
448
448
|
}
|
|
449
449
|
|
|
450
450
|
/**
|
|
451
|
-
* Get basic reporting for a portal
|
|
451
|
+
* Get basic reporting for a portal (can use \'current\' for portalId)
|
|
452
452
|
*/
|
|
453
453
|
async getPortalBasicReporting(requestParameters: GetPortalBasicReportingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetPortalBasicReporting> {
|
|
454
454
|
const response = await this.getPortalBasicReportingRaw(requestParameters, initOverrides);
|
|
@@ -456,7 +456,7 @@ export class ReportingApi extends runtime.BaseAPI {
|
|
|
456
456
|
}
|
|
457
457
|
|
|
458
458
|
/**
|
|
459
|
-
* Get student reporting for a portal
|
|
459
|
+
* Get student reporting for a portal (can use \'current\' for portalId and studentId)
|
|
460
460
|
*/
|
|
461
461
|
async getPortalStudentReportingRaw(requestParameters: GetPortalStudentReportingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GetPortalStudentReporting>> {
|
|
462
462
|
if (requestParameters['portalId'] == null) {
|
|
@@ -488,7 +488,7 @@ export class ReportingApi extends runtime.BaseAPI {
|
|
|
488
488
|
}
|
|
489
489
|
|
|
490
490
|
/**
|
|
491
|
-
* Get student reporting for a portal
|
|
491
|
+
* Get student reporting for a portal (can use \'current\' for portalId and studentId)
|
|
492
492
|
*/
|
|
493
493
|
async getPortalStudentReporting(requestParameters: GetPortalStudentReportingRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GetPortalStudentReporting> {
|
|
494
494
|
const response = await this.getPortalStudentReportingRaw(requestParameters, initOverrides);
|