@faiber/faiber-lms 0.5.1 → 0.6.2

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.
@@ -200,6 +200,18 @@ export class LmsOperations extends ServiceApi {
200
200
  classroomUpdateClassroomPatch(id, data, options) {
201
201
  return this.client.request({ ...options, method: "PATCH", url: `/api/v1/classrooms/${encodeURIComponent(id)}`, data: data });
202
202
  }
203
+ /**
204
+ * Performs the finalize classroom operation for the classroom capability.
205
+ * Calls `POST /api/v1/classrooms/{id}/finalize` through the shared IDP-aware Faiber client.
206
+ * @param id Backend path identifier `id`.
207
+ * @param data Typed JSON request body.
208
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
209
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
210
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:finalize.
211
+ */
212
+ classroomFinalizeClassroomPost(id, data, options) {
213
+ return this.client.request({ ...options, method: "POST", url: `/api/v1/classrooms/${encodeURIComponent(id)}/finalize`, data: data });
214
+ }
203
215
  /**
204
216
  * Performs the index classroom users operation for the classroom capability.
205
217
  * Calls `GET /api/v1/classrooms/{id}/users` through the shared IDP-aware Faiber client.
@@ -295,60 +307,39 @@ export class LmsOperations extends ServiceApi {
295
307
  return this.client.request({ ...options, method: "PATCH", url: `/api/v1/classrooms/sessions/${encodeURIComponent(id)}`, data: data });
296
308
  }
297
309
  /**
298
- * Performs the index absences operation for the classroom capability.
299
- * Calls `GET /api/v1/classrooms/users/sessions/absences` through the shared IDP-aware Faiber client.
310
+ * Performs the index attendance operation for the classroom capability.
311
+ * Calls `GET /api/v1/classrooms/sessions/{id}/attendance` through the shared IDP-aware Faiber client.
312
+ * @param id Backend path identifier `id`.
300
313
  * @param params Typed query parameters; omitted members retain backend defaults.
301
314
  * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
302
315
  * @returns The complete Axios response, including the typed service envelope, status, and headers.
303
316
  * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:read.
304
317
  */
305
- classroomIndexAbsencesGet(params, options) {
306
- return this.client.request({ ...options, method: "GET", url: `/api/v1/classrooms/users/sessions/absences`, params });
307
- }
308
- /**
309
- * Performs the index club project operation for the ops capability.
310
- * Calls `GET /api/v1/club/projects` through the shared IDP-aware Faiber client.
311
- * @param params Typed query parameters; omitted members retain backend defaults.
312
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
313
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
314
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:read.
315
- */
316
- opsIndexClubProjectGet(params, options) {
317
- return this.client.request({ ...options, method: "GET", url: `/api/v1/club/projects`, params });
318
- }
319
- /**
320
- * Performs the store club project operation for the ops capability.
321
- * Calls `POST /api/v1/club/projects` through the shared IDP-aware Faiber client.
322
- * @param data Typed JSON request body.
323
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
324
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
325
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:create.
326
- */
327
- opsStoreClubProjectPost(data, options) {
328
- return this.client.request({ ...options, method: "POST", url: `/api/v1/club/projects`, data: data });
318
+ classroomIndexAttendanceGet(id, params, options) {
319
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/classrooms/sessions/${encodeURIComponent(id)}/attendance`, params });
329
320
  }
330
321
  /**
331
- * Performs the show club project operation for the ops capability.
332
- * Calls `GET /api/v1/club/projects/{id}` through the shared IDP-aware Faiber client.
322
+ * Performs the record attendance operation for the classroom capability.
323
+ * Calls `PUT /api/v1/classrooms/sessions/{id}/attendance` through the shared IDP-aware Faiber client.
333
324
  * @param id Backend path identifier `id`.
325
+ * @param data Typed JSON request body.
334
326
  * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
335
327
  * @returns The complete Axios response, including the typed service envelope, status, and headers.
336
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:read.
328
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:attendance:update.
337
329
  */
338
- opsShowClubProjectGet(id, options) {
339
- return this.client.request({ ...options, method: "GET", url: `/api/v1/club/projects/${encodeURIComponent(id)}` });
330
+ classroomRecordAttendancePut(id, data, options) {
331
+ return this.client.request({ ...options, method: "PUT", url: `/api/v1/classrooms/sessions/${encodeURIComponent(id)}/attendance`, data: data });
340
332
  }
341
333
  /**
342
- * Performs the update club project operation for the ops capability.
343
- * Calls `PATCH /api/v1/club/projects/{id}` through the shared IDP-aware Faiber client.
344
- * @param id Backend path identifier `id`.
345
- * @param data Typed JSON request body.
334
+ * Performs the index absences operation for the classroom capability.
335
+ * Calls `GET /api/v1/classrooms/users/sessions/absences` through the shared IDP-aware Faiber client.
336
+ * @param params Typed query parameters; omitted members retain backend defaults.
346
337
  * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
347
338
  * @returns The complete Axios response, including the typed service envelope, status, and headers.
348
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:update.
339
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:read.
349
340
  */
350
- opsUpdateClubProjectPatch(id, data, options) {
351
- return this.client.request({ ...options, method: "PATCH", url: `/api/v1/club/projects/${encodeURIComponent(id)}`, data: data });
341
+ classroomIndexAbsencesGet(params, options) {
342
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/classrooms/users/sessions/absences`, params });
352
343
  }
353
344
  /**
354
345
  * Performs the index classroom type operation for the config capability.
@@ -486,49 +477,49 @@ export class LmsOperations extends ServiceApi {
486
477
  return this.client.request({ ...options, method: "PATCH", url: `/api/v1/config/grades/${encodeURIComponent(id)}`, data: data });
487
478
  }
488
479
  /**
489
- * Performs the index text template operation for the config capability.
490
- * Calls `GET /api/v1/config/text-templates` through the shared IDP-aware Faiber client.
480
+ * Performs the index holiday operation for the config capability.
481
+ * Calls `GET /api/v1/config/holidays` through the shared IDP-aware Faiber client.
491
482
  * @param params Typed query parameters; omitted members retain backend defaults.
492
483
  * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
493
484
  * @returns The complete Axios response, including the typed service envelope, status, and headers.
494
485
  * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:read.
495
486
  */
496
- configIndexTextTemplateGet(params, options) {
497
- return this.client.request({ ...options, method: "GET", url: `/api/v1/config/text-templates`, params });
487
+ configIndexHolidayGet(params, options) {
488
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/config/holidays`, params });
498
489
  }
499
490
  /**
500
- * Performs the store text template operation for the config capability.
501
- * Calls `POST /api/v1/config/text-templates` through the shared IDP-aware Faiber client.
491
+ * Performs the store holiday operation for the config capability.
492
+ * Calls `POST /api/v1/config/holidays` through the shared IDP-aware Faiber client.
502
493
  * @param data Typed JSON request body.
503
494
  * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
504
495
  * @returns The complete Axios response, including the typed service envelope, status, and headers.
505
496
  * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:create.
506
497
  */
507
- configStoreTextTemplatePost(data, options) {
508
- return this.client.request({ ...options, method: "POST", url: `/api/v1/config/text-templates`, data: data });
498
+ configStoreHolidayPost(data, options) {
499
+ return this.client.request({ ...options, method: "POST", url: `/api/v1/config/holidays`, data: data });
509
500
  }
510
501
  /**
511
- * Performs the show text template operation for the config capability.
512
- * Calls `GET /api/v1/config/text-templates/{id}` through the shared IDP-aware Faiber client.
502
+ * Performs the show holiday operation for the config capability.
503
+ * Calls `GET /api/v1/config/holidays/{id}` through the shared IDP-aware Faiber client.
513
504
  * @param id Backend path identifier `id`.
514
505
  * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
515
506
  * @returns The complete Axios response, including the typed service envelope, status, and headers.
516
507
  * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:read.
517
508
  */
518
- configShowTextTemplateGet(id, options) {
519
- return this.client.request({ ...options, method: "GET", url: `/api/v1/config/text-templates/${encodeURIComponent(id)}` });
509
+ configShowHolidayGet(id, options) {
510
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/config/holidays/${encodeURIComponent(id)}` });
520
511
  }
521
512
  /**
522
- * Performs the update text template operation for the config capability.
523
- * Calls `PATCH /api/v1/config/text-templates/{id}` through the shared IDP-aware Faiber client.
513
+ * Performs the update holiday operation for the config capability.
514
+ * Calls `PATCH /api/v1/config/holidays/{id}` through the shared IDP-aware Faiber client.
524
515
  * @param id Backend path identifier `id`.
525
516
  * @param data Typed JSON request body.
526
517
  * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
527
518
  * @returns The complete Axios response, including the typed service envelope, status, and headers.
528
519
  * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:update.
529
520
  */
530
- configUpdateTextTemplatePatch(id, data, options) {
531
- return this.client.request({ ...options, method: "PATCH", url: `/api/v1/config/text-templates/${encodeURIComponent(id)}`, data: data });
521
+ configUpdateHolidayPatch(id, data, options) {
522
+ return this.client.request({ ...options, method: "PATCH", url: `/api/v1/config/holidays/${encodeURIComponent(id)}`, data: data });
532
523
  }
533
524
  /**
534
525
  * Performs the index weekend operation for the config capability.
@@ -749,60 +740,26 @@ export class LmsOperations extends ServiceApi {
749
740
  return this.client.request({ ...options, method: "PATCH", url: `/api/v1/courses/categories/${encodeURIComponent(id)}`, data: data });
750
741
  }
751
742
  /**
752
- * Performs the index video section operation for the course capability.
753
- * Calls `GET /api/v1/courses/video-sections` through the shared IDP-aware Faiber client.
754
- * @param params Typed query parameters; omitted members retain backend defaults.
755
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
756
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
757
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:read.
758
- */
759
- courseIndexVideoSectionGet(params, options) {
760
- return this.client.request({ ...options, method: "GET", url: `/api/v1/courses/video-sections`, params });
761
- }
762
- /**
763
- * Performs the store video section operation for the course capability.
764
- * Calls `POST /api/v1/courses/video-sections` through the shared IDP-aware Faiber client.
743
+ * Performs the reorder categories operation for the course capability.
744
+ * Calls `PATCH /api/v1/courses/categories/reorder` through the shared IDP-aware Faiber client.
765
745
  * @param data Typed JSON request body.
766
746
  * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
767
747
  * @returns The complete Axios response, including the typed service envelope, status, and headers.
768
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:create.
769
- */
770
- courseStoreVideoSectionPost(data, options) {
771
- return this.client.request({ ...options, method: "POST", url: `/api/v1/courses/video-sections`, data: data });
772
- }
773
- /**
774
- * Performs the destroy video section operation for the course capability.
775
- * Calls `DELETE /api/v1/courses/video-sections/{id}` through the shared IDP-aware Faiber client.
776
- * @param id Backend path identifier `id`.
777
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
778
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
779
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:delete.
780
- */
781
- courseDestroyVideoSectionDelete(id, options) {
782
- return this.client.request({ ...options, method: "DELETE", url: `/api/v1/courses/video-sections/${encodeURIComponent(id)}` });
783
- }
784
- /**
785
- * Performs the show video section operation for the course capability.
786
- * Calls `GET /api/v1/courses/video-sections/{id}` through the shared IDP-aware Faiber client.
787
- * @param id Backend path identifier `id`.
788
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
789
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
790
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:read.
748
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:update.
791
749
  */
792
- courseShowVideoSectionGet(id, options) {
793
- return this.client.request({ ...options, method: "GET", url: `/api/v1/courses/video-sections/${encodeURIComponent(id)}` });
750
+ courseReorderCategoriesPatch(data, options) {
751
+ return this.client.request({ ...options, method: "PATCH", url: `/api/v1/courses/categories/reorder`, data: data });
794
752
  }
795
753
  /**
796
- * Performs the update video section operation for the course capability.
797
- * Calls `PATCH /api/v1/courses/video-sections/{id}` through the shared IDP-aware Faiber client.
798
- * @param id Backend path identifier `id`.
754
+ * Performs the reorder courses operation for the course capability.
755
+ * Calls `PATCH /api/v1/courses/reorder` through the shared IDP-aware Faiber client.
799
756
  * @param data Typed JSON request body.
800
757
  * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
801
758
  * @returns The complete Axios response, including the typed service envelope, status, and headers.
802
759
  * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:update.
803
760
  */
804
- courseUpdateVideoSectionPatch(id, data, options) {
805
- return this.client.request({ ...options, method: "PATCH", url: `/api/v1/courses/video-sections/${encodeURIComponent(id)}`, data: data });
761
+ courseReorderCoursesPatch(data, options) {
762
+ return this.client.request({ ...options, method: "PATCH", url: `/api/v1/courses/reorder`, data: data });
806
763
  }
807
764
  /**
808
765
  * Performs the index operation for the dashboard capability.
@@ -824,145 +781,6 @@ export class LmsOperations extends ServiceApi {
824
781
  docsIntegrationGet(options) {
825
782
  return this.client.request({ ...options, method: "GET", url: `/api/v1/docs/integration` });
826
783
  }
827
- /**
828
- * Performs the index event operation for the event capability.
829
- * Calls `GET /api/v1/events` through the shared IDP-aware Faiber client.
830
- * @param params Typed query parameters; omitted members retain backend defaults.
831
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
832
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
833
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:read.
834
- */
835
- eventIndexEventGet(params, options) {
836
- return this.client.request({ ...options, method: "GET", url: `/api/v1/events`, params });
837
- }
838
- /**
839
- * Performs the store event operation for the event capability.
840
- * Calls `POST /api/v1/events` through the shared IDP-aware Faiber client.
841
- * @param data Typed JSON request body.
842
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
843
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
844
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:create.
845
- */
846
- eventStoreEventPost(data, options) {
847
- return this.client.request({ ...options, method: "POST", url: `/api/v1/events`, data: data });
848
- }
849
- /**
850
- * Performs the index user operation for the event capability.
851
- * Calls `GET /api/v1/events/{event_id}/users` through the shared IDP-aware Faiber client.
852
- * @param eventId Backend path identifier `event_id`.
853
- * @param params Typed query parameters; omitted members retain backend defaults.
854
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
855
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
856
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:read.
857
- */
858
- eventIndexUserGet(eventId, params, options) {
859
- return this.client.request({ ...options, method: "GET", url: `/api/v1/events/${encodeURIComponent(eventId)}/users`, params });
860
- }
861
- /**
862
- * Performs the store user operation for the event capability.
863
- * Calls `POST /api/v1/events/{event_id}/users` through the shared IDP-aware Faiber client.
864
- * @param eventId Backend path identifier `event_id`.
865
- * @param data Typed JSON request body.
866
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
867
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
868
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:create.
869
- */
870
- eventStoreUserPost(eventId, data, options) {
871
- return this.client.request({ ...options, method: "POST", url: `/api/v1/events/${encodeURIComponent(eventId)}/users`, data: data });
872
- }
873
- /**
874
- * Performs the show user operation for the event capability.
875
- * Calls `GET /api/v1/events/{event_id}/users/{id}` through the shared IDP-aware Faiber client.
876
- * @param eventId Backend path identifier `event_id`.
877
- * @param id Backend path identifier `id`.
878
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
879
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
880
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:read.
881
- */
882
- eventShowUserGet(eventId, id, options) {
883
- return this.client.request({ ...options, method: "GET", url: `/api/v1/events/${encodeURIComponent(eventId)}/users/${encodeURIComponent(id)}` });
884
- }
885
- /**
886
- * Performs the update user operation for the event capability.
887
- * Calls `PATCH /api/v1/events/{event_id}/users/{id}` through the shared IDP-aware Faiber client.
888
- * @param eventId Backend path identifier `event_id`.
889
- * @param id Backend path identifier `id`.
890
- * @param data Typed JSON request body.
891
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
892
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
893
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:update.
894
- */
895
- eventUpdateUserPatch(eventId, id, data, options) {
896
- return this.client.request({ ...options, method: "PATCH", url: `/api/v1/events/${encodeURIComponent(eventId)}/users/${encodeURIComponent(id)}`, data: data });
897
- }
898
- /**
899
- * Performs the show event operation for the event capability.
900
- * Calls `GET /api/v1/events/{id}` through the shared IDP-aware Faiber client.
901
- * @param id Backend path identifier `id`.
902
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
903
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
904
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:read.
905
- */
906
- eventShowEventGet(id, options) {
907
- return this.client.request({ ...options, method: "GET", url: `/api/v1/events/${encodeURIComponent(id)}` });
908
- }
909
- /**
910
- * Performs the update event operation for the event capability.
911
- * Calls `PATCH /api/v1/events/{id}` through the shared IDP-aware Faiber client.
912
- * @param id Backend path identifier `id`.
913
- * @param data Typed JSON request body.
914
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
915
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
916
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:update.
917
- */
918
- eventUpdateEventPatch(id, data, options) {
919
- return this.client.request({ ...options, method: "PATCH", url: `/api/v1/events/${encodeURIComponent(id)}`, data: data });
920
- }
921
- /**
922
- * Performs the index session operation for the event capability.
923
- * Calls `GET /api/v1/events/sessions` through the shared IDP-aware Faiber client.
924
- * @param params Typed query parameters; omitted members retain backend defaults.
925
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
926
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
927
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:read.
928
- */
929
- eventIndexSessionGet(params, options) {
930
- return this.client.request({ ...options, method: "GET", url: `/api/v1/events/sessions`, params });
931
- }
932
- /**
933
- * Performs the store session operation for the event capability.
934
- * Calls `POST /api/v1/events/sessions` through the shared IDP-aware Faiber client.
935
- * @param data Typed JSON request body.
936
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
937
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
938
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:create.
939
- */
940
- eventStoreSessionPost(data, options) {
941
- return this.client.request({ ...options, method: "POST", url: `/api/v1/events/sessions`, data: data });
942
- }
943
- /**
944
- * Performs the show session operation for the event capability.
945
- * Calls `GET /api/v1/events/sessions/{id}` through the shared IDP-aware Faiber client.
946
- * @param id Backend path identifier `id`.
947
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
948
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
949
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:read.
950
- */
951
- eventShowSessionGet(id, options) {
952
- return this.client.request({ ...options, method: "GET", url: `/api/v1/events/sessions/${encodeURIComponent(id)}` });
953
- }
954
- /**
955
- * Performs the update session operation for the event capability.
956
- * Calls `PATCH /api/v1/events/sessions/{id}` through the shared IDP-aware Faiber client.
957
- * @param id Backend path identifier `id`.
958
- * @param data Typed JSON request body.
959
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
960
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
961
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:update.
962
- */
963
- eventUpdateSessionPatch(id, data, options) {
964
- return this.client.request({ ...options, method: "PATCH", url: `/api/v1/events/sessions/${encodeURIComponent(id)}`, data: data });
965
- }
966
784
  /**
967
785
  * Performs the index exam operation for the exam capability.
968
786
  * Calls `GET /api/v1/exams` through the shared IDP-aware Faiber client.
@@ -1019,6 +837,40 @@ export class LmsOperations extends ServiceApi {
1019
837
  examUpdateExamPatch(id, data, options) {
1020
838
  return this.client.request({ ...options, method: "PATCH", url: `/api/v1/exams/${encodeURIComponent(id)}`, data: data });
1021
839
  }
840
+ /**
841
+ * Performs the index attempt operation for the exam capability.
842
+ * Calls `GET /api/v1/exams/attempts` through the shared IDP-aware Faiber client.
843
+ * @param params Typed query parameters; omitted members retain backend defaults.
844
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
845
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
846
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:read.
847
+ */
848
+ examIndexAttemptGet(params, options) {
849
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/exams/attempts`, params });
850
+ }
851
+ /**
852
+ * Performs the show attempt operation for the exam capability.
853
+ * Calls `GET /api/v1/exams/attempts/{id}` through the shared IDP-aware Faiber client.
854
+ * @param id Backend path identifier `id`.
855
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
856
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
857
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:read.
858
+ */
859
+ examShowAttemptGet(id, options) {
860
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/exams/attempts/${encodeURIComponent(id)}` });
861
+ }
862
+ /**
863
+ * Performs the update attempt operation for the exam capability.
864
+ * Calls `PATCH /api/v1/exams/attempts/{id}` through the shared IDP-aware Faiber client.
865
+ * @param id Backend path identifier `id`.
866
+ * @param data Typed JSON request body.
867
+ * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
868
+ * @returns The complete Axios response, including the typed service envelope, status, and headers.
869
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:update.
870
+ */
871
+ examUpdateAttemptPatch(id, data, options) {
872
+ return this.client.request({ ...options, method: "PATCH", url: `/api/v1/exams/attempts/${encodeURIComponent(id)}`, data: data });
873
+ }
1022
874
  /**
1023
875
  * Performs the index question operation for the exam capability.
1024
876
  * Calls `GET /api/v1/exams/questions` through the shared IDP-aware Faiber client.
@@ -1266,236 +1118,114 @@ export class LmsOperations extends ServiceApi {
1266
1118
  return this.client.request({ ...options, method: "GET", url: `/api/v1/integration/flow` });
1267
1119
  }
1268
1120
  /**
1269
- * Performs the index category operation for the interactive capability.
1270
- * Calls `GET /api/v1/interactive/categories` through the shared IDP-aware Faiber client.
1271
- * @param params Typed query parameters; omitted members retain backend defaults.
1272
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1273
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
1274
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:read.
1275
- */
1276
- interactiveIndexCategoryGet(params, options) {
1277
- return this.client.request({ ...options, method: "GET", url: `/api/v1/interactive/categories`, params });
1278
- }
1279
- /**
1280
- * Performs the store category operation for the interactive capability.
1281
- * Calls `POST /api/v1/interactive/categories` through the shared IDP-aware Faiber client.
1282
- * @param data Typed JSON request body.
1283
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1284
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
1285
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:create.
1286
- */
1287
- interactiveStoreCategoryPost(data, options) {
1288
- return this.client.request({ ...options, method: "POST", url: `/api/v1/interactive/categories`, data: data });
1289
- }
1290
- /**
1291
- * Performs the show category operation for the interactive capability.
1292
- * Calls `GET /api/v1/interactive/categories/{id}` through the shared IDP-aware Faiber client.
1293
- * @param id Backend path identifier `id`.
1121
+ * Performs the upload image operation for the media capability.
1122
+ * Calls `POST /api/v1/media/images` through the shared IDP-aware Faiber client.
1123
+ * @param data Typed multipart form.
1294
1124
  * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1295
1125
  * @returns The complete Axios response, including the typed service envelope, status, and headers.
1296
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:read.
1126
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:update.
1297
1127
  */
1298
- interactiveShowCategoryGet(id, options) {
1299
- return this.client.request({ ...options, method: "GET", url: `/api/v1/interactive/categories/${encodeURIComponent(id)}` });
1128
+ mediaUploadImagePost(data, options) {
1129
+ return this.client.request({ ...options, method: "POST", url: `/api/v1/media/images`, data: data });
1300
1130
  }
1301
1131
  /**
1302
- * Performs the update category operation for the interactive capability.
1303
- * Calls `PATCH /api/v1/interactive/categories/{id}` through the shared IDP-aware Faiber client.
1304
- * @param id Backend path identifier `id`.
1305
- * @param data Typed JSON request body.
1132
+ * Performs the download image operation for the media capability.
1133
+ * Calls `GET /api/v1/media/images/{filename}` through the shared IDP-aware Faiber client.
1134
+ * @param filename Backend path identifier `filename`.
1306
1135
  * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1307
1136
  * @returns The complete Axios response, including the typed service envelope, status, and headers.
1308
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:update.
1137
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:read.
1309
1138
  */
1310
- interactiveUpdateCategoryPatch(id, data, options) {
1311
- return this.client.request({ ...options, method: "PATCH", url: `/api/v1/interactive/categories/${encodeURIComponent(id)}`, data: data });
1139
+ mediaDownloadImageGet(filename, options) {
1140
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/media/images/${encodeURIComponent(filename)}` });
1312
1141
  }
1313
1142
  /**
1314
- * Performs the index classroom session operation for the interactive capability.
1315
- * Calls `GET /api/v1/interactive/classroom-sessions` through the shared IDP-aware Faiber client.
1143
+ * Performs the index operation for the profile routes capability.
1144
+ * Calls `GET /api/v1/profiles` through the shared IDP-aware Faiber client.
1316
1145
  * @param params Typed query parameters; omitted members retain backend defaults.
1317
1146
  * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1318
1147
  * @returns The complete Axios response, including the typed service envelope, status, and headers.
1319
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:read.
1320
- */
1321
- interactiveIndexClassroomSessionGet(params, options) {
1322
- return this.client.request({ ...options, method: "GET", url: `/api/v1/interactive/classroom-sessions`, params });
1323
- }
1324
- /**
1325
- * Performs the store classroom session operation for the interactive capability.
1326
- * Calls `POST /api/v1/interactive/classroom-sessions` through the shared IDP-aware Faiber client.
1327
- * @param data Typed JSON request body.
1328
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1329
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
1330
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:create.
1148
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:read.
1331
1149
  */
1332
- interactiveStoreClassroomSessionPost(data, options) {
1333
- return this.client.request({ ...options, method: "POST", url: `/api/v1/interactive/classroom-sessions`, data: data });
1150
+ profileRoutesIndexGet(params, options) {
1151
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/profiles`, params });
1334
1152
  }
1335
1153
  /**
1336
- * Performs the show classroom session operation for the interactive capability.
1337
- * Calls `GET /api/v1/interactive/classroom-sessions/{id}` through the shared IDP-aware Faiber client.
1338
- * @param id Backend path identifier `id`.
1154
+ * Performs the show operation for the profile routes capability.
1155
+ * Calls `GET /api/v1/profiles/{user_id}` through the shared IDP-aware Faiber client.
1156
+ * @param userId Backend path identifier `user_id`.
1339
1157
  * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1340
1158
  * @returns The complete Axios response, including the typed service envelope, status, and headers.
1341
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:read.
1159
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:read.
1342
1160
  */
1343
- interactiveShowClassroomSessionGet(id, options) {
1344
- return this.client.request({ ...options, method: "GET", url: `/api/v1/interactive/classroom-sessions/${encodeURIComponent(id)}` });
1161
+ profileRoutesShowGet(userId, options) {
1162
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/profiles/${encodeURIComponent(userId)}` });
1345
1163
  }
1346
1164
  /**
1347
- * Performs the update classroom session operation for the interactive capability.
1348
- * Calls `PATCH /api/v1/interactive/classroom-sessions/{id}` through the shared IDP-aware Faiber client.
1349
- * @param id Backend path identifier `id`.
1350
- * @param data Typed JSON request body.
1165
+ * Performs the verify certificate operation for the certificate capability.
1166
+ * Calls `GET /api/v1/public/certificates/{code}` through the shared IDP-aware Faiber client.
1167
+ * @param code Backend path identifier `code`.
1351
1168
  * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1352
1169
  * @returns The complete Axios response, including the typed service envelope, status, and headers.
1353
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:update.
1170
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
1354
1171
  */
1355
- interactiveUpdateClassroomSessionPatch(id, data, options) {
1356
- return this.client.request({ ...options, method: "PATCH", url: `/api/v1/interactive/classroom-sessions/${encodeURIComponent(id)}`, data: data });
1172
+ certificateVerifyCertificateGet(code, options) {
1173
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/public/certificates/${encodeURIComponent(code)}` });
1357
1174
  }
1358
1175
  /**
1359
- * Performs the index content operation for the interactive capability.
1360
- * Calls `GET /api/v1/interactive/content` through the shared IDP-aware Faiber client.
1176
+ * Performs the classrooms operation for the report capability.
1177
+ * Calls `GET /api/v1/reports/classrooms` through the shared IDP-aware Faiber client.
1361
1178
  * @param params Typed query parameters; omitted members retain backend defaults.
1362
1179
  * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1363
1180
  * @returns The complete Axios response, including the typed service envelope, status, and headers.
1364
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:read.
1365
- */
1366
- interactiveIndexContentGet(params, options) {
1367
- return this.client.request({ ...options, method: "GET", url: `/api/v1/interactive/content`, params });
1368
- }
1369
- /**
1370
- * Performs the store content operation for the interactive capability.
1371
- * Calls `POST /api/v1/interactive/content` through the shared IDP-aware Faiber client.
1372
- * @param data Typed JSON request body.
1373
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1374
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
1375
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:create.
1376
- */
1377
- interactiveStoreContentPost(data, options) {
1378
- return this.client.request({ ...options, method: "POST", url: `/api/v1/interactive/content`, data: data });
1379
- }
1380
- /**
1381
- * Performs the show content operation for the interactive capability.
1382
- * Calls `GET /api/v1/interactive/content/{id}` through the shared IDP-aware Faiber client.
1383
- * @param id Backend path identifier `id`.
1384
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1385
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
1386
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:read.
1387
- */
1388
- interactiveShowContentGet(id, options) {
1389
- return this.client.request({ ...options, method: "GET", url: `/api/v1/interactive/content/${encodeURIComponent(id)}` });
1390
- }
1391
- /**
1392
- * Performs the update content operation for the interactive capability.
1393
- * Calls `PATCH /api/v1/interactive/content/{id}` through the shared IDP-aware Faiber client.
1394
- * @param id Backend path identifier `id`.
1395
- * @param data Typed JSON request body.
1396
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1397
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
1398
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:update.
1181
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:report:read.
1399
1182
  */
1400
- interactiveUpdateContentPatch(id, data, options) {
1401
- return this.client.request({ ...options, method: "PATCH", url: `/api/v1/interactive/content/${encodeURIComponent(id)}`, data: data });
1183
+ reportClassroomsGet(params, options) {
1184
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/reports/classrooms`, params });
1402
1185
  }
1403
1186
  /**
1404
- * Performs the index invitation operation for the ops capability.
1405
- * Calls `GET /api/v1/invitations` through the shared IDP-aware Faiber client.
1187
+ * Performs the consultants operation for the report capability.
1188
+ * Calls `GET /api/v1/reports/consultants` through the shared IDP-aware Faiber client.
1406
1189
  * @param params Typed query parameters; omitted members retain backend defaults.
1407
1190
  * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1408
1191
  * @returns The complete Axios response, including the typed service envelope, status, and headers.
1409
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:read.
1410
- */
1411
- opsIndexInvitationGet(params, options) {
1412
- return this.client.request({ ...options, method: "GET", url: `/api/v1/invitations`, params });
1413
- }
1414
- /**
1415
- * Performs the store invitation operation for the ops capability.
1416
- * Calls `POST /api/v1/invitations` through the shared IDP-aware Faiber client.
1417
- * @param data Typed JSON request body.
1418
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1419
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
1420
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:create.
1421
- */
1422
- opsStoreInvitationPost(data, options) {
1423
- return this.client.request({ ...options, method: "POST", url: `/api/v1/invitations`, data: data });
1424
- }
1425
- /**
1426
- * Performs the show invitation operation for the ops capability.
1427
- * Calls `GET /api/v1/invitations/{id}` through the shared IDP-aware Faiber client.
1428
- * @param id Backend path identifier `id`.
1429
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1430
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
1431
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:read.
1432
- */
1433
- opsShowInvitationGet(id, options) {
1434
- return this.client.request({ ...options, method: "GET", url: `/api/v1/invitations/${encodeURIComponent(id)}` });
1435
- }
1436
- /**
1437
- * Performs the update invitation operation for the ops capability.
1438
- * Calls `PATCH /api/v1/invitations/{id}` through the shared IDP-aware Faiber client.
1439
- * @param id Backend path identifier `id`.
1440
- * @param data Typed JSON request body.
1441
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1442
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
1443
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:update.
1444
- */
1445
- opsUpdateInvitationPatch(id, data, options) {
1446
- return this.client.request({ ...options, method: "PATCH", url: `/api/v1/invitations/${encodeURIComponent(id)}`, data: data });
1447
- }
1448
- /**
1449
- * Performs the upload image operation for the media capability.
1450
- * Calls `POST /api/v1/media/images` through the shared IDP-aware Faiber client.
1451
- * @param data Typed multipart form.
1452
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1453
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
1454
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:update.
1455
- */
1456
- mediaUploadImagePost(data, options) {
1457
- return this.client.request({ ...options, method: "POST", url: `/api/v1/media/images`, data: data });
1458
- }
1459
- /**
1460
- * Performs the download image operation for the media capability.
1461
- * Calls `GET /api/v1/media/images/{filename}` through the shared IDP-aware Faiber client.
1462
- * @param filename Backend path identifier `filename`.
1463
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1464
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
1465
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:read.
1192
+ * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:report:read.
1466
1193
  */
1467
- mediaDownloadImageGet(filename, options) {
1468
- return this.client.request({ ...options, method: "GET", url: `/api/v1/media/images/${encodeURIComponent(filename)}` });
1194
+ reportConsultantsGet(params, options) {
1195
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/reports/consultants`, params });
1469
1196
  }
1470
1197
  /**
1471
- * Performs the classrooms operation for the report capability.
1472
- * Calls `GET /api/v1/reports/classrooms` through the shared IDP-aware Faiber client.
1198
+ * Performs the courses operation for the report capability.
1199
+ * Calls `GET /api/v1/reports/courses` through the shared IDP-aware Faiber client.
1200
+ * @param params Typed query parameters; omitted members retain backend defaults.
1473
1201
  * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1474
1202
  * @returns The complete Axios response, including the typed service envelope, status, and headers.
1475
1203
  * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:report:read.
1476
1204
  */
1477
- reportClassroomsGet(options) {
1478
- return this.client.request({ ...options, method: "GET", url: `/api/v1/reports/classrooms` });
1205
+ reportCoursesGet(params, options) {
1206
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/reports/courses`, params });
1479
1207
  }
1480
1208
  /**
1481
1209
  * Performs the students operation for the report capability.
1482
1210
  * Calls `GET /api/v1/reports/students` through the shared IDP-aware Faiber client.
1211
+ * @param params Typed query parameters; omitted members retain backend defaults.
1483
1212
  * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1484
1213
  * @returns The complete Axios response, including the typed service envelope, status, and headers.
1485
1214
  * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:report:read.
1486
1215
  */
1487
- reportStudentsGet(options) {
1488
- return this.client.request({ ...options, method: "GET", url: `/api/v1/reports/students` });
1216
+ reportStudentsGet(params, options) {
1217
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/reports/students`, params });
1489
1218
  }
1490
1219
  /**
1491
1220
  * Performs the teachers operation for the report capability.
1492
1221
  * Calls `GET /api/v1/reports/teachers` through the shared IDP-aware Faiber client.
1222
+ * @param params Typed query parameters; omitted members retain backend defaults.
1493
1223
  * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1494
1224
  * @returns The complete Axios response, including the typed service envelope, status, and headers.
1495
1225
  * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:report:read.
1496
1226
  */
1497
- reportTeachersGet(options) {
1498
- return this.client.request({ ...options, method: "GET", url: `/api/v1/reports/teachers` });
1227
+ reportTeachersGet(params, options) {
1228
+ return this.client.request({ ...options, method: "GET", url: `/api/v1/reports/teachers`, params });
1499
1229
  }
1500
1230
  /**
1501
1231
  * Performs the check licence operation for the service capability.
@@ -1508,96 +1238,6 @@ export class LmsOperations extends ServiceApi {
1508
1238
  serviceCheckLicenceGet(params, options) {
1509
1239
  return this.client.request({ ...options, method: "GET", url: `/api/v1/service/licence/check`, params });
1510
1240
  }
1511
- /**
1512
- * Performs the index support interaction operation for the ops capability.
1513
- * Calls `GET /api/v1/support-interactions` through the shared IDP-aware Faiber client.
1514
- * @param params Typed query parameters; omitted members retain backend defaults.
1515
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1516
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
1517
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:read.
1518
- */
1519
- opsIndexSupportInteractionGet(params, options) {
1520
- return this.client.request({ ...options, method: "GET", url: `/api/v1/support-interactions`, params });
1521
- }
1522
- /**
1523
- * Performs the store support interaction operation for the ops capability.
1524
- * Calls `POST /api/v1/support-interactions` through the shared IDP-aware Faiber client.
1525
- * @param data Typed JSON request body.
1526
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1527
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
1528
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:create.
1529
- */
1530
- opsStoreSupportInteractionPost(data, options) {
1531
- return this.client.request({ ...options, method: "POST", url: `/api/v1/support-interactions`, data: data });
1532
- }
1533
- /**
1534
- * Performs the show support interaction operation for the ops capability.
1535
- * Calls `GET /api/v1/support-interactions/{id}` through the shared IDP-aware Faiber client.
1536
- * @param id Backend path identifier `id`.
1537
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1538
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
1539
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:read.
1540
- */
1541
- opsShowSupportInteractionGet(id, options) {
1542
- return this.client.request({ ...options, method: "GET", url: `/api/v1/support-interactions/${encodeURIComponent(id)}` });
1543
- }
1544
- /**
1545
- * Performs the update support interaction operation for the ops capability.
1546
- * Calls `PATCH /api/v1/support-interactions/{id}` through the shared IDP-aware Faiber client.
1547
- * @param id Backend path identifier `id`.
1548
- * @param data Typed JSON request body.
1549
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1550
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
1551
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:update.
1552
- */
1553
- opsUpdateSupportInteractionPatch(id, data, options) {
1554
- return this.client.request({ ...options, method: "PATCH", url: `/api/v1/support-interactions/${encodeURIComponent(id)}`, data: data });
1555
- }
1556
- /**
1557
- * Performs the index worktime operation for the ops capability.
1558
- * Calls `GET /api/v1/worktime` through the shared IDP-aware Faiber client.
1559
- * @param params Typed query parameters; omitted members retain backend defaults.
1560
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1561
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
1562
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:read.
1563
- */
1564
- opsIndexWorktimeGet(params, options) {
1565
- return this.client.request({ ...options, method: "GET", url: `/api/v1/worktime`, params });
1566
- }
1567
- /**
1568
- * Performs the store worktime operation for the ops capability.
1569
- * Calls `POST /api/v1/worktime` through the shared IDP-aware Faiber client.
1570
- * @param data Typed JSON request body.
1571
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1572
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
1573
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:create.
1574
- */
1575
- opsStoreWorktimePost(data, options) {
1576
- return this.client.request({ ...options, method: "POST", url: `/api/v1/worktime`, data: data });
1577
- }
1578
- /**
1579
- * Performs the show worktime operation for the ops capability.
1580
- * Calls `GET /api/v1/worktime/{id}` through the shared IDP-aware Faiber client.
1581
- * @param id Backend path identifier `id`.
1582
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1583
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
1584
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:read.
1585
- */
1586
- opsShowWorktimeGet(id, options) {
1587
- return this.client.request({ ...options, method: "GET", url: `/api/v1/worktime/${encodeURIComponent(id)}` });
1588
- }
1589
- /**
1590
- * Performs the update worktime operation for the ops capability.
1591
- * Calls `PATCH /api/v1/worktime/{id}` through the shared IDP-aware Faiber client.
1592
- * @param id Backend path identifier `id`.
1593
- * @param data Typed JSON request body.
1594
- * @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
1595
- * @returns The complete Axios response, including the typed service envelope, status, and headers.
1596
- * @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:update.
1597
- */
1598
- opsUpdateWorktimePatch(id, data, options) {
1599
- return this.client.request({ ...options, method: "PATCH", url: `/api/v1/worktime/${encodeURIComponent(id)}`, data: data });
1600
- }
1601
1241
  /**
1602
1242
  * Performs the status route operation for the router capability.
1603
1243
  * Calls `GET /health` through the shared IDP-aware Faiber client.