@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.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);