@examplary/sdk 2.13.0 → 2.14.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/dist/index.d.mts +77 -5
- package/dist/index.d.ts +77 -5
- package/dist/index.js +8 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -307,6 +307,14 @@ var ExamsSessions = class {
|
|
|
307
307
|
const args = arg;
|
|
308
308
|
return request(this.ctx, "POST", "/exams/{examId}/sessions/scan-document", ["examId"], [], true, args, options);
|
|
309
309
|
}
|
|
310
|
+
getResultsSummary(arg, options) {
|
|
311
|
+
const args = typeof arg === "string" ? { examId: arg } : arg;
|
|
312
|
+
return request(this.ctx, "GET", "/exams/{examId}/sessions/summary", ["examId"], [], false, args, options);
|
|
313
|
+
}
|
|
314
|
+
generateResultsSummary(arg, options) {
|
|
315
|
+
const args = typeof arg === "string" ? { examId: arg } : arg;
|
|
316
|
+
return request(this.ctx, "POST", "/exams/{examId}/sessions/summary", ["examId"], [], false, args, options);
|
|
317
|
+
}
|
|
310
318
|
get(arg, options) {
|
|
311
319
|
const args = arg;
|
|
312
320
|
return request(this.ctx, "GET", "/exams/{examId}/sessions/{sessionId}", ["examId", "sessionId"], [], false, args, options);
|