@faiber/faiber-lms 0.10.1 → 0.11.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 +47 -4
- package/dist/.tsbuildinfo +1 -1
- package/dist/index.d.ts +15 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +23 -1
- package/dist/index.js.map +1 -1
- package/dist/operations.d.ts +151 -10
- package/dist/operations.d.ts.map +1 -1
- package/dist/operations.js +173 -0
- package/dist/operations.js.map +1 -1
- package/dist/operations.types.d.ts +420 -464
- package/dist/operations.types.d.ts.map +1 -1
- package/dist/types.d.ts +162 -6
- package/dist/types.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/operations.d.ts
CHANGED
|
@@ -99,7 +99,7 @@ export declare class LmsOperations extends ServiceApi {
|
|
|
99
99
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
100
100
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:certificate:read.
|
|
101
101
|
*/
|
|
102
|
-
certificateIndexCertificateGet(params?: T.CertificateIndexCertificateGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<
|
|
102
|
+
certificateIndexCertificateGet(params?: T.CertificateIndexCertificateGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CertificateListResponse, unknown, {}>>;
|
|
103
103
|
/**
|
|
104
104
|
* Performs the store certificate operation for the certificate capability.
|
|
105
105
|
* Calls `POST /api/v1/certificates` through the shared IDP-aware Faiber client.
|
|
@@ -108,7 +108,7 @@ export declare class LmsOperations extends ServiceApi {
|
|
|
108
108
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
109
109
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:certificate:create.
|
|
110
110
|
*/
|
|
111
|
-
certificateStoreCertificatePost(data: T.CertificateStoreCertificatePostInput, options?: RequestOptions<T.CertificateStoreCertificatePostInput>): Promise<import("axios").AxiosResponse<
|
|
111
|
+
certificateStoreCertificatePost(data: T.CertificateStoreCertificatePostInput, options?: RequestOptions<T.CertificateStoreCertificatePostInput>): Promise<import("axios").AxiosResponse<import("./types.js").CertificateResponse, import("./types.js").CreateCertificateInput, {}>>;
|
|
112
112
|
/**
|
|
113
113
|
* Performs the show certificate operation for the certificate capability.
|
|
114
114
|
* Calls `GET /api/v1/certificates/{id}` through the shared IDP-aware Faiber client.
|
|
@@ -117,7 +117,7 @@ export declare class LmsOperations extends ServiceApi {
|
|
|
117
117
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
118
118
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:certificate:read.
|
|
119
119
|
*/
|
|
120
|
-
certificateShowCertificateGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<
|
|
120
|
+
certificateShowCertificateGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CertificateResponse, unknown, {}>>;
|
|
121
121
|
/**
|
|
122
122
|
* Performs the update certificate operation for the certificate capability.
|
|
123
123
|
* Calls `PATCH /api/v1/certificates/{id}` through the shared IDP-aware Faiber client.
|
|
@@ -127,7 +127,7 @@ export declare class LmsOperations extends ServiceApi {
|
|
|
127
127
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
128
128
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:certificate:update.
|
|
129
129
|
*/
|
|
130
|
-
certificateUpdateCertificatePatch(id: Identifier, data: T.CertificateUpdateCertificatePatchInput, options?: RequestOptions<T.CertificateUpdateCertificatePatchInput>): Promise<import("axios").AxiosResponse<
|
|
130
|
+
certificateUpdateCertificatePatch(id: Identifier, data: T.CertificateUpdateCertificatePatchInput, options?: RequestOptions<T.CertificateUpdateCertificatePatchInput>): Promise<import("axios").AxiosResponse<import("./types.js").CertificateResponse, import("./types.js").UpdateCertificateInput, {}>>;
|
|
131
131
|
/**
|
|
132
132
|
* Performs the index template operation for the certificate capability.
|
|
133
133
|
* Calls `GET /api/v1/certificates/templates` through the shared IDP-aware Faiber client.
|
|
@@ -136,7 +136,7 @@ export declare class LmsOperations extends ServiceApi {
|
|
|
136
136
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
137
137
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:certificate:read.
|
|
138
138
|
*/
|
|
139
|
-
certificateIndexTemplateGet(params?: T.CertificateIndexTemplateGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<
|
|
139
|
+
certificateIndexTemplateGet(params?: T.CertificateIndexTemplateGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CertificateTemplateListResponse, unknown, {}>>;
|
|
140
140
|
/**
|
|
141
141
|
* Performs the store template operation for the certificate capability.
|
|
142
142
|
* Calls `POST /api/v1/certificates/templates` through the shared IDP-aware Faiber client.
|
|
@@ -145,7 +145,7 @@ export declare class LmsOperations extends ServiceApi {
|
|
|
145
145
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
146
146
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:certificate:create.
|
|
147
147
|
*/
|
|
148
|
-
certificateStoreTemplatePost(data: T.CertificateStoreTemplatePostInput, options?: RequestOptions<T.CertificateStoreTemplatePostInput>): Promise<import("axios").AxiosResponse<
|
|
148
|
+
certificateStoreTemplatePost(data: T.CertificateStoreTemplatePostInput, options?: RequestOptions<T.CertificateStoreTemplatePostInput>): Promise<import("axios").AxiosResponse<import("./types.js").CertificateTemplateResponse, import("./types.js").CreateCertificateTemplateInput, {}>>;
|
|
149
149
|
/**
|
|
150
150
|
* Performs the show template operation for the certificate capability.
|
|
151
151
|
* Calls `GET /api/v1/certificates/templates/{id}` through the shared IDP-aware Faiber client.
|
|
@@ -154,7 +154,7 @@ export declare class LmsOperations extends ServiceApi {
|
|
|
154
154
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
155
155
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:certificate:read.
|
|
156
156
|
*/
|
|
157
|
-
certificateShowTemplateGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<
|
|
157
|
+
certificateShowTemplateGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").CertificateTemplateResponse, unknown, {}>>;
|
|
158
158
|
/**
|
|
159
159
|
* Performs the update template operation for the certificate capability.
|
|
160
160
|
* Calls `PATCH /api/v1/certificates/templates/{id}` through the shared IDP-aware Faiber client.
|
|
@@ -164,7 +164,7 @@ export declare class LmsOperations extends ServiceApi {
|
|
|
164
164
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
165
165
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:certificate:update.
|
|
166
166
|
*/
|
|
167
|
-
certificateUpdateTemplatePatch(id: Identifier, data: T.CertificateUpdateTemplatePatchInput, options?: RequestOptions<T.CertificateUpdateTemplatePatchInput>): Promise<import("axios").AxiosResponse<
|
|
167
|
+
certificateUpdateTemplatePatch(id: Identifier, data: T.CertificateUpdateTemplatePatchInput, options?: RequestOptions<T.CertificateUpdateTemplatePatchInput>): Promise<import("axios").AxiosResponse<import("./types.js").CertificateTemplateResponse, import("./types.js").UpdateCertificateTemplateInput, {}>>;
|
|
168
168
|
/**
|
|
169
169
|
* Performs the index classroom operation for the classroom capability.
|
|
170
170
|
* Calls `GET /api/v1/classrooms` through the shared IDP-aware Faiber client.
|
|
@@ -262,6 +262,15 @@ export declare class LmsOperations extends ServiceApi {
|
|
|
262
262
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:update.
|
|
263
263
|
*/
|
|
264
264
|
classroomUpdateClassroomUserPatch(id: Identifier, userId: Identifier, data: T.ClassroomUpdateClassroomUserPatchInput, options?: RequestOptions<T.ClassroomUpdateClassroomUserPatchInput>): Promise<import("axios").AxiosResponse<T.ClassroomUpdateClassroomUserPatchResponse, T.ClassroomUpdateClassroomUserPatchInput, {}>>;
|
|
265
|
+
/**
|
|
266
|
+
* Performs the batch classrooms operation for the integration capability.
|
|
267
|
+
* Calls `POST /api/v1/classrooms/batch` through the shared IDP-aware Faiber client.
|
|
268
|
+
* @param data Typed JSON request body.
|
|
269
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
270
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
271
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
272
|
+
*/
|
|
273
|
+
integrationBatchClassroomsPost(data: T.IntegrationBatchClassroomsPostInput, options?: RequestOptions<T.IntegrationBatchClassroomsPostInput>): Promise<import("axios").AxiosResponse<T.IntegrationBatchClassroomsPostResponse, T.IntegrationBatchClassroomsPostInput, {}>>;
|
|
265
274
|
/**
|
|
266
275
|
* Performs the index session types operation for the classroom capability.
|
|
267
276
|
* Calls `GET /api/v1/classrooms/session-types` through the shared IDP-aware Faiber client.
|
|
@@ -336,6 +345,23 @@ export declare class LmsOperations extends ServiceApi {
|
|
|
336
345
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:read.
|
|
337
346
|
*/
|
|
338
347
|
classroomIndexTodaySessionsGet(params?: T.ClassroomIndexTodaySessionsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ClassroomIndexTodaySessionsGetResponse, unknown, {}>>;
|
|
348
|
+
/**
|
|
349
|
+
* Performs the current classroom users operation for the integration capability.
|
|
350
|
+
* Calls `GET /api/v1/classrooms/users/current` through the shared IDP-aware Faiber client.
|
|
351
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
352
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
353
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
354
|
+
*/
|
|
355
|
+
integrationCurrentClassroomUsersGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.IntegrationCurrentClassroomUsersGetResponse, unknown, {}>>;
|
|
356
|
+
/**
|
|
357
|
+
* Performs the dropout eligibility operation for the integration capability.
|
|
358
|
+
* Calls `POST /api/v1/classrooms/users/dropout-eligibility` through the shared IDP-aware Faiber client.
|
|
359
|
+
* @param data Typed JSON request body.
|
|
360
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
361
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
362
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
363
|
+
*/
|
|
364
|
+
integrationDropoutEligibilityPost(data: T.IntegrationDropoutEligibilityPostInput, options?: RequestOptions<T.IntegrationDropoutEligibilityPostInput>): Promise<import("axios").AxiosResponse<T.IntegrationDropoutEligibilityPostResponse, T.IntegrationDropoutEligibilityPostInput, {}>>;
|
|
339
365
|
/**
|
|
340
366
|
* Performs the index absences operation for the classroom capability.
|
|
341
367
|
* Calls `GET /api/v1/classrooms/users/sessions/absences` through the shared IDP-aware Faiber client.
|
|
@@ -345,6 +371,32 @@ export declare class LmsOperations extends ServiceApi {
|
|
|
345
371
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:read.
|
|
346
372
|
*/
|
|
347
373
|
classroomIndexAbsencesGet(params?: T.ClassroomIndexAbsencesGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ClassroomIndexAbsencesGetResponse, unknown, {}>>;
|
|
374
|
+
/**
|
|
375
|
+
* Performs the show operation for the branding capability.
|
|
376
|
+
* Calls `GET /api/v1/config/branding` through the shared IDP-aware Faiber client.
|
|
377
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
378
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
379
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:read.
|
|
380
|
+
*/
|
|
381
|
+
brandingShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.BrandingShowGetResponse, unknown, {}>>;
|
|
382
|
+
/**
|
|
383
|
+
* Performs the update operation for the branding capability.
|
|
384
|
+
* Calls `PUT /api/v1/config/branding` through the shared IDP-aware Faiber client.
|
|
385
|
+
* @param data Typed JSON request body.
|
|
386
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
387
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
388
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:update.
|
|
389
|
+
*/
|
|
390
|
+
brandingUpdatePut(data: T.BrandingUpdatePutInput, options?: RequestOptions<T.BrandingUpdatePutInput>): Promise<import("axios").AxiosResponse<T.BrandingUpdatePutResponse, T.BrandingUpdatePutInput, {}>>;
|
|
391
|
+
/**
|
|
392
|
+
* Performs the upload operation for the branding capability.
|
|
393
|
+
* Calls `POST /api/v1/config/branding/assets` through the shared IDP-aware Faiber client.
|
|
394
|
+
* @param data Typed multipart form.
|
|
395
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
396
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
397
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:update.
|
|
398
|
+
*/
|
|
399
|
+
brandingUploadPost(data: T.BrandingUploadPostInput, options?: RequestOptions<T.BrandingUploadPostInput>): Promise<import("axios").AxiosResponse<T.BrandingUploadPostResponse, FormData, {}>>;
|
|
348
400
|
/**
|
|
349
401
|
* Performs the index classroom type operation for the config capability.
|
|
350
402
|
* Calls `GET /api/v1/config/classroom-types` through the shared IDP-aware Faiber client.
|
|
@@ -627,6 +679,15 @@ export declare class LmsOperations extends ServiceApi {
|
|
|
627
679
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:update.
|
|
628
680
|
*/
|
|
629
681
|
courseUpdateCoursePatch(id: Identifier, data: T.CourseUpdateCoursePatchInput, options?: RequestOptions<T.CourseUpdateCoursePatchInput>): Promise<import("axios").AxiosResponse<T.CourseUpdateCoursePatchResponse, T.CourseUpdateCoursePatchInput, {}>>;
|
|
682
|
+
/**
|
|
683
|
+
* Performs the batch courses operation for the integration capability.
|
|
684
|
+
* Calls `POST /api/v1/courses/batch` through the shared IDP-aware Faiber client.
|
|
685
|
+
* @param data Typed JSON request body.
|
|
686
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
687
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
688
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
689
|
+
*/
|
|
690
|
+
integrationBatchCoursesPost(data: T.IntegrationBatchCoursesPostInput, options?: RequestOptions<T.IntegrationBatchCoursesPostInput>): Promise<import("axios").AxiosResponse<T.IntegrationBatchCoursesPostResponse, T.IntegrationBatchCoursesPostInput, {}>>;
|
|
630
691
|
/**
|
|
631
692
|
* Performs the index category operation for the course capability.
|
|
632
693
|
* Calls `GET /api/v1/courses/categories` through the shared IDP-aware Faiber client.
|
|
@@ -691,6 +752,15 @@ export declare class LmsOperations extends ServiceApi {
|
|
|
691
752
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:update.
|
|
692
753
|
*/
|
|
693
754
|
courseReorderCoursesPatch(data: T.CourseReorderCoursesPatchInput, options?: RequestOptions<T.CourseReorderCoursesPatchInput>): Promise<import("axios").AxiosResponse<T.CourseReorderCoursesPatchResponse, T.CourseReorderCoursesPatchInput, {}>>;
|
|
755
|
+
/**
|
|
756
|
+
* Performs the batch course successors operation for the integration capability.
|
|
757
|
+
* Calls `POST /api/v1/courses/successors/batch` through the shared IDP-aware Faiber client.
|
|
758
|
+
* @param data Typed JSON request body.
|
|
759
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
760
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
761
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
762
|
+
*/
|
|
763
|
+
integrationBatchCourseSuccessorsPost(data: T.IntegrationBatchCourseSuccessorsPostInput, options?: RequestOptions<T.IntegrationBatchCourseSuccessorsPostInput>): Promise<import("axios").AxiosResponse<T.IntegrationBatchCourseSuccessorsPostResponse, T.IntegrationBatchCourseSuccessorsPostInput, {}>>;
|
|
694
764
|
/**
|
|
695
765
|
* Performs the index operation for the dashboard capability.
|
|
696
766
|
* Calls `GET /api/v1/dashboard` through the shared IDP-aware Faiber client.
|
|
@@ -717,6 +787,42 @@ export declare class LmsOperations extends ServiceApi {
|
|
|
717
787
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:update, lms:course:create.
|
|
718
788
|
*/
|
|
719
789
|
drmRoutesIndexCompositionsGet(params?: T.DrmRoutesIndexCompositionsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.DrmRoutesIndexCompositionsGetResponse, unknown, {}>>;
|
|
790
|
+
/**
|
|
791
|
+
* Performs the get context operation for the evaluation capability.
|
|
792
|
+
* Calls `GET /api/v1/evaluations/sessions/{id}` through the shared IDP-aware Faiber client.
|
|
793
|
+
* @param id Backend path identifier `id`.
|
|
794
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
795
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
796
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
797
|
+
*/
|
|
798
|
+
evaluationGetContextGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.EvaluationGetContextGetResponse, unknown, {}>>;
|
|
799
|
+
/**
|
|
800
|
+
* Performs the submit operation for the evaluation capability.
|
|
801
|
+
* Calls `POST /api/v1/evaluations/sessions/{id}` through the shared IDP-aware Faiber client.
|
|
802
|
+
* @param id Backend path identifier `id`.
|
|
803
|
+
* @param data Typed JSON request body.
|
|
804
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
805
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
806
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
807
|
+
*/
|
|
808
|
+
evaluationSubmitPost(id: Identifier, data: T.EvaluationSubmitPostInput, options?: RequestOptions<T.EvaluationSubmitPostInput>): Promise<import("axios").AxiosResponse<T.EvaluationSubmitPostResponse, T.EvaluationSubmitPostInput, {}>>;
|
|
809
|
+
/**
|
|
810
|
+
* Performs the get settings operation for the evaluation capability.
|
|
811
|
+
* Calls `GET /api/v1/evaluations/settings` through the shared IDP-aware Faiber client.
|
|
812
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
813
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
814
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:read.
|
|
815
|
+
*/
|
|
816
|
+
evaluationGetSettingsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.EvaluationGetSettingsGetResponse, unknown, {}>>;
|
|
817
|
+
/**
|
|
818
|
+
* Performs the update settings operation for the evaluation capability.
|
|
819
|
+
* Calls `PUT /api/v1/evaluations/settings` through the shared IDP-aware Faiber client.
|
|
820
|
+
* @param data Typed JSON request body.
|
|
821
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
822
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
823
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:update.
|
|
824
|
+
*/
|
|
825
|
+
evaluationUpdateSettingsPut(data: T.EvaluationUpdateSettingsPutInput, options?: RequestOptions<T.EvaluationUpdateSettingsPutInput>): Promise<import("axios").AxiosResponse<T.EvaluationUpdateSettingsPutResponse, T.EvaluationUpdateSettingsPutInput, {}>>;
|
|
720
826
|
/**
|
|
721
827
|
* Performs the index exam operation for the exam capability.
|
|
722
828
|
* Calls `GET /api/v1/exams` through the shared IDP-aware Faiber client.
|
|
@@ -1040,6 +1146,15 @@ export declare class LmsOperations extends ServiceApi {
|
|
|
1040
1146
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1041
1147
|
*/
|
|
1042
1148
|
integrationFlowIntegrationShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.IntegrationFlowIntegrationShowGetResponse, unknown, {}>>;
|
|
1149
|
+
/**
|
|
1150
|
+
* Performs the resolve legacy ids operation for the integration capability.
|
|
1151
|
+
* Calls `POST /api/v1/integration/legacy-ids/resolve` through the shared IDP-aware Faiber client.
|
|
1152
|
+
* @param data Typed JSON request body.
|
|
1153
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1154
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1155
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1156
|
+
*/
|
|
1157
|
+
integrationResolveLegacyIdsPost(data: T.IntegrationResolveLegacyIdsPostInput, options?: RequestOptions<T.IntegrationResolveLegacyIdsPostInput>): Promise<import("axios").AxiosResponse<T.IntegrationResolveLegacyIdsPostResponse, T.IntegrationResolveLegacyIdsPostInput, {}>>;
|
|
1043
1158
|
/**
|
|
1044
1159
|
* Performs the upload image operation for the media capability.
|
|
1045
1160
|
* Calls `POST /api/v1/media/images` through the shared IDP-aware Faiber client.
|
|
@@ -1076,6 +1191,23 @@ export declare class LmsOperations extends ServiceApi {
|
|
|
1076
1191
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:read.
|
|
1077
1192
|
*/
|
|
1078
1193
|
profileRoutesShowGet(userId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ProfileRoutesShowGetResponse, unknown, {}>>;
|
|
1194
|
+
/**
|
|
1195
|
+
* Performs the public show operation for the branding capability.
|
|
1196
|
+
* Calls `GET /api/v1/public/branding` through the shared IDP-aware Faiber client.
|
|
1197
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1198
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1199
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1200
|
+
*/
|
|
1201
|
+
brandingPublicShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.BrandingPublicShowGetResponse, unknown, {}>>;
|
|
1202
|
+
/**
|
|
1203
|
+
* Performs the asset operation for the branding capability.
|
|
1204
|
+
* Calls `GET /api/v1/public/branding/assets/{key}` through the shared IDP-aware Faiber client.
|
|
1205
|
+
* @param key Backend path identifier `key`.
|
|
1206
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1207
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1208
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1209
|
+
*/
|
|
1210
|
+
brandingAssetGet(key: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.BrandingAssetGetResponse, unknown, {}>>;
|
|
1079
1211
|
/**
|
|
1080
1212
|
* Performs the verify certificate operation for the certificate capability.
|
|
1081
1213
|
* Calls `GET /api/v1/public/certificates/{code}` through the shared IDP-aware Faiber client.
|
|
@@ -1084,7 +1216,7 @@ export declare class LmsOperations extends ServiceApi {
|
|
|
1084
1216
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1085
1217
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:certificate:verify.
|
|
1086
1218
|
*/
|
|
1087
|
-
certificateVerifyCertificateGet(code: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<
|
|
1219
|
+
certificateVerifyCertificateGet(code: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").PublicCertificateResponse, unknown, {}>>;
|
|
1088
1220
|
/**
|
|
1089
1221
|
* Performs the render certificate image operation for the certificate capability.
|
|
1090
1222
|
* Calls `GET /api/v1/public/certificates/{code}/image.svg` through the shared IDP-aware Faiber client.
|
|
@@ -1093,7 +1225,16 @@ export declare class LmsOperations extends ServiceApi {
|
|
|
1093
1225
|
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1094
1226
|
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:certificate:verify.
|
|
1095
1227
|
*/
|
|
1096
|
-
certificateRenderCertificateImageGet(code: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<
|
|
1228
|
+
certificateRenderCertificateImageGet(code: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<string, unknown, {}>>;
|
|
1229
|
+
/**
|
|
1230
|
+
* Performs the assigned students operation for the report capability.
|
|
1231
|
+
* Calls `GET /api/v1/reports/assigned-students` through the shared IDP-aware Faiber client.
|
|
1232
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1233
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1234
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1235
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:report:read_own.
|
|
1236
|
+
*/
|
|
1237
|
+
reportAssignedStudentsGet(params?: T.ReportAssignedStudentsGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ReportAssignedStudentsGetResponse, unknown, {}>>;
|
|
1097
1238
|
/**
|
|
1098
1239
|
* Performs the classrooms operation for the report capability.
|
|
1099
1240
|
* Calls `GET /api/v1/reports/classrooms` through the shared IDP-aware Faiber client.
|
package/dist/operations.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../src/operations.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../src/operations.ts"],"names":[],"mappings":"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"}
|
package/dist/operations.js
CHANGED
|
@@ -317,6 +317,17 @@ export class LmsOperations extends ServiceApi {
|
|
|
317
317
|
classroomUpdateClassroomUserPatch(id, userId, data, options) {
|
|
318
318
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/classrooms/${encodeURIComponent(id)}/users/${encodeURIComponent(userId)}`, data: data });
|
|
319
319
|
}
|
|
320
|
+
/**
|
|
321
|
+
* Performs the batch classrooms operation for the integration capability.
|
|
322
|
+
* Calls `POST /api/v1/classrooms/batch` through the shared IDP-aware Faiber client.
|
|
323
|
+
* @param data Typed JSON request body.
|
|
324
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
325
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
326
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
327
|
+
*/
|
|
328
|
+
integrationBatchClassroomsPost(data, options) {
|
|
329
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/classrooms/batch`, data: data });
|
|
330
|
+
}
|
|
320
331
|
/**
|
|
321
332
|
* Performs the index session types operation for the classroom capability.
|
|
322
333
|
* Calls `GET /api/v1/classrooms/session-types` through the shared IDP-aware Faiber client.
|
|
@@ -407,6 +418,27 @@ export class LmsOperations extends ServiceApi {
|
|
|
407
418
|
classroomIndexTodaySessionsGet(params, options) {
|
|
408
419
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/classrooms/sessions/today`, params });
|
|
409
420
|
}
|
|
421
|
+
/**
|
|
422
|
+
* Performs the current classroom users operation for the integration capability.
|
|
423
|
+
* Calls `GET /api/v1/classrooms/users/current` through the shared IDP-aware Faiber client.
|
|
424
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
425
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
426
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
427
|
+
*/
|
|
428
|
+
integrationCurrentClassroomUsersGet(options) {
|
|
429
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/classrooms/users/current` });
|
|
430
|
+
}
|
|
431
|
+
/**
|
|
432
|
+
* Performs the dropout eligibility operation for the integration capability.
|
|
433
|
+
* Calls `POST /api/v1/classrooms/users/dropout-eligibility` through the shared IDP-aware Faiber client.
|
|
434
|
+
* @param data Typed JSON request body.
|
|
435
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
436
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
437
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
438
|
+
*/
|
|
439
|
+
integrationDropoutEligibilityPost(data, options) {
|
|
440
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/classrooms/users/dropout-eligibility`, data: data });
|
|
441
|
+
}
|
|
410
442
|
/**
|
|
411
443
|
* Performs the index absences operation for the classroom capability.
|
|
412
444
|
* Calls `GET /api/v1/classrooms/users/sessions/absences` through the shared IDP-aware Faiber client.
|
|
@@ -418,6 +450,38 @@ export class LmsOperations extends ServiceApi {
|
|
|
418
450
|
classroomIndexAbsencesGet(params, options) {
|
|
419
451
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/classrooms/users/sessions/absences`, params });
|
|
420
452
|
}
|
|
453
|
+
/**
|
|
454
|
+
* Performs the show operation for the branding capability.
|
|
455
|
+
* Calls `GET /api/v1/config/branding` through the shared IDP-aware Faiber client.
|
|
456
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
457
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
458
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:read.
|
|
459
|
+
*/
|
|
460
|
+
brandingShowGet(options) {
|
|
461
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/config/branding` });
|
|
462
|
+
}
|
|
463
|
+
/**
|
|
464
|
+
* Performs the update operation for the branding capability.
|
|
465
|
+
* Calls `PUT /api/v1/config/branding` through the shared IDP-aware Faiber client.
|
|
466
|
+
* @param data Typed JSON request body.
|
|
467
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
468
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
469
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:update.
|
|
470
|
+
*/
|
|
471
|
+
brandingUpdatePut(data, options) {
|
|
472
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/config/branding`, data: data });
|
|
473
|
+
}
|
|
474
|
+
/**
|
|
475
|
+
* Performs the upload operation for the branding capability.
|
|
476
|
+
* Calls `POST /api/v1/config/branding/assets` through the shared IDP-aware Faiber client.
|
|
477
|
+
* @param data Typed multipart form.
|
|
478
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
479
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
480
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:update.
|
|
481
|
+
*/
|
|
482
|
+
brandingUploadPost(data, options) {
|
|
483
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/config/branding/assets`, data: data });
|
|
484
|
+
}
|
|
421
485
|
/**
|
|
422
486
|
* Performs the index classroom type operation for the config capability.
|
|
423
487
|
* Calls `GET /api/v1/config/classroom-types` through the shared IDP-aware Faiber client.
|
|
@@ -760,6 +824,17 @@ export class LmsOperations extends ServiceApi {
|
|
|
760
824
|
courseUpdateCoursePatch(id, data, options) {
|
|
761
825
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/courses/${encodeURIComponent(id)}`, data: data });
|
|
762
826
|
}
|
|
827
|
+
/**
|
|
828
|
+
* Performs the batch courses operation for the integration capability.
|
|
829
|
+
* Calls `POST /api/v1/courses/batch` through the shared IDP-aware Faiber client.
|
|
830
|
+
* @param data Typed JSON request body.
|
|
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: session-derived or public bootstrap route.
|
|
834
|
+
*/
|
|
835
|
+
integrationBatchCoursesPost(data, options) {
|
|
836
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/courses/batch`, data: data });
|
|
837
|
+
}
|
|
763
838
|
/**
|
|
764
839
|
* Performs the index category operation for the course capability.
|
|
765
840
|
* Calls `GET /api/v1/courses/categories` through the shared IDP-aware Faiber client.
|
|
@@ -838,6 +913,17 @@ export class LmsOperations extends ServiceApi {
|
|
|
838
913
|
courseReorderCoursesPatch(data, options) {
|
|
839
914
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/courses/reorder`, data: data });
|
|
840
915
|
}
|
|
916
|
+
/**
|
|
917
|
+
* Performs the batch course successors operation for the integration capability.
|
|
918
|
+
* Calls `POST /api/v1/courses/successors/batch` through the shared IDP-aware Faiber client.
|
|
919
|
+
* @param data Typed JSON request body.
|
|
920
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
921
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
922
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
923
|
+
*/
|
|
924
|
+
integrationBatchCourseSuccessorsPost(data, options) {
|
|
925
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/courses/successors/batch`, data: data });
|
|
926
|
+
}
|
|
841
927
|
/**
|
|
842
928
|
* Performs the index operation for the dashboard capability.
|
|
843
929
|
* Calls `GET /api/v1/dashboard` through the shared IDP-aware Faiber client.
|
|
@@ -870,6 +956,50 @@ export class LmsOperations extends ServiceApi {
|
|
|
870
956
|
drmRoutesIndexCompositionsGet(params, options) {
|
|
871
957
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/drm/compositions`, params });
|
|
872
958
|
}
|
|
959
|
+
/**
|
|
960
|
+
* Performs the get context operation for the evaluation capability.
|
|
961
|
+
* Calls `GET /api/v1/evaluations/sessions/{id}` through the shared IDP-aware Faiber client.
|
|
962
|
+
* @param id Backend path identifier `id`.
|
|
963
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
964
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
965
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
966
|
+
*/
|
|
967
|
+
evaluationGetContextGet(id, options) {
|
|
968
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/evaluations/sessions/${encodeURIComponent(id)}` });
|
|
969
|
+
}
|
|
970
|
+
/**
|
|
971
|
+
* Performs the submit operation for the evaluation capability.
|
|
972
|
+
* Calls `POST /api/v1/evaluations/sessions/{id}` through the shared IDP-aware Faiber client.
|
|
973
|
+
* @param id Backend path identifier `id`.
|
|
974
|
+
* @param data Typed JSON request body.
|
|
975
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
976
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
977
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
978
|
+
*/
|
|
979
|
+
evaluationSubmitPost(id, data, options) {
|
|
980
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/evaluations/sessions/${encodeURIComponent(id)}`, data: data });
|
|
981
|
+
}
|
|
982
|
+
/**
|
|
983
|
+
* Performs the get settings operation for the evaluation capability.
|
|
984
|
+
* Calls `GET /api/v1/evaluations/settings` through the shared IDP-aware Faiber client.
|
|
985
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
986
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
987
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:read.
|
|
988
|
+
*/
|
|
989
|
+
evaluationGetSettingsGet(options) {
|
|
990
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/evaluations/settings` });
|
|
991
|
+
}
|
|
992
|
+
/**
|
|
993
|
+
* Performs the update settings operation for the evaluation capability.
|
|
994
|
+
* Calls `PUT /api/v1/evaluations/settings` through the shared IDP-aware Faiber client.
|
|
995
|
+
* @param data Typed JSON request body.
|
|
996
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
997
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
998
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:update.
|
|
999
|
+
*/
|
|
1000
|
+
evaluationUpdateSettingsPut(data, options) {
|
|
1001
|
+
return this.client.request({ ...options, method: "PUT", url: `/api/v1/evaluations/settings`, data: data });
|
|
1002
|
+
}
|
|
873
1003
|
/**
|
|
874
1004
|
* Performs the index exam operation for the exam capability.
|
|
875
1005
|
* Calls `GET /api/v1/exams` through the shared IDP-aware Faiber client.
|
|
@@ -1263,6 +1393,17 @@ export class LmsOperations extends ServiceApi {
|
|
|
1263
1393
|
integrationFlowIntegrationShowGet(options) {
|
|
1264
1394
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/integration/flow` });
|
|
1265
1395
|
}
|
|
1396
|
+
/**
|
|
1397
|
+
* Performs the resolve legacy ids operation for the integration capability.
|
|
1398
|
+
* Calls `POST /api/v1/integration/legacy-ids/resolve` through the shared IDP-aware Faiber client.
|
|
1399
|
+
* @param data Typed JSON request body.
|
|
1400
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1401
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1402
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1403
|
+
*/
|
|
1404
|
+
integrationResolveLegacyIdsPost(data, options) {
|
|
1405
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/integration/legacy-ids/resolve`, data: data });
|
|
1406
|
+
}
|
|
1266
1407
|
/**
|
|
1267
1408
|
* Performs the upload image operation for the media capability.
|
|
1268
1409
|
* Calls `POST /api/v1/media/images` through the shared IDP-aware Faiber client.
|
|
@@ -1307,6 +1448,27 @@ export class LmsOperations extends ServiceApi {
|
|
|
1307
1448
|
profileRoutesShowGet(userId, options) {
|
|
1308
1449
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/profiles/${encodeURIComponent(userId)}` });
|
|
1309
1450
|
}
|
|
1451
|
+
/**
|
|
1452
|
+
* Performs the public show operation for the branding capability.
|
|
1453
|
+
* Calls `GET /api/v1/public/branding` through the shared IDP-aware Faiber client.
|
|
1454
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1455
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1456
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1457
|
+
*/
|
|
1458
|
+
brandingPublicShowGet(options) {
|
|
1459
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/public/branding` });
|
|
1460
|
+
}
|
|
1461
|
+
/**
|
|
1462
|
+
* Performs the asset operation for the branding capability.
|
|
1463
|
+
* Calls `GET /api/v1/public/branding/assets/{key}` through the shared IDP-aware Faiber client.
|
|
1464
|
+
* @param key Backend path identifier `key`.
|
|
1465
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1466
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1467
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1468
|
+
*/
|
|
1469
|
+
brandingAssetGet(key, options) {
|
|
1470
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/public/branding/assets/${encodeURIComponent(key)}` });
|
|
1471
|
+
}
|
|
1310
1472
|
/**
|
|
1311
1473
|
* Performs the verify certificate operation for the certificate capability.
|
|
1312
1474
|
* Calls `GET /api/v1/public/certificates/{code}` through the shared IDP-aware Faiber client.
|
|
@@ -1329,6 +1491,17 @@ export class LmsOperations extends ServiceApi {
|
|
|
1329
1491
|
certificateRenderCertificateImageGet(code, options) {
|
|
1330
1492
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/public/certificates/${encodeURIComponent(code)}/image.svg` });
|
|
1331
1493
|
}
|
|
1494
|
+
/**
|
|
1495
|
+
* Performs the assigned students operation for the report capability.
|
|
1496
|
+
* Calls `GET /api/v1/reports/assigned-students` through the shared IDP-aware Faiber client.
|
|
1497
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1498
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1499
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1500
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:report:read_own.
|
|
1501
|
+
*/
|
|
1502
|
+
reportAssignedStudentsGet(params, options) {
|
|
1503
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/reports/assigned-students`, params });
|
|
1504
|
+
}
|
|
1332
1505
|
/**
|
|
1333
1506
|
* Performs the classrooms operation for the report capability.
|
|
1334
1507
|
* Calls `GET /api/v1/reports/classrooms` through the shared IDP-aware Faiber client.
|