@faiber/faiber-lms 0.2.2 → 0.5.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 +11 -4
- package/dist/.tsbuildinfo +1 -1
- package/dist/index.d.ts +16 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +17 -1
- package/dist/index.js.map +1 -1
- package/dist/operations.d.ts +1186 -127
- package/dist/operations.d.ts.map +1 -1
- package/dist/operations.js +1216 -127
- package/dist/operations.js.map +1 -1
- package/dist/operations.types.d.ts +590 -503
- package/dist/operations.types.d.ts.map +1 -1
- package/dist/types.d.ts +91 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/operations.d.ts
CHANGED
|
@@ -1,259 +1,1318 @@
|
|
|
1
1
|
import { ServiceApi, type Identifier, type RequestOptions } from "@faiber/sdk-core";
|
|
2
2
|
import type * as T from "./operations.types.js";
|
|
3
3
|
export declare class LmsOperations extends ServiceApi {
|
|
4
|
-
/**
|
|
4
|
+
/**
|
|
5
|
+
* Performs the openapi json operation for the router capability.
|
|
6
|
+
* Calls `GET /api/openapi.json` through the shared IDP-aware Faiber client.
|
|
7
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
8
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
9
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
10
|
+
*/
|
|
5
11
|
routerOpenapiJsonGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterOpenapiJsonGetResponse, unknown, {}>>;
|
|
6
|
-
/**
|
|
12
|
+
/**
|
|
13
|
+
* Performs the submit exam operation for the academy capability.
|
|
14
|
+
* Calls `POST /api/v1/academy/attempts/{id}/submit` through the shared IDP-aware Faiber client.
|
|
15
|
+
* @param id Backend path identifier `id`.
|
|
16
|
+
* @param data Typed JSON request body.
|
|
17
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
18
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
19
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
20
|
+
*/
|
|
21
|
+
academySubmitExamPost(id: Identifier, data: T.AcademySubmitExamPostInput, options?: RequestOptions<T.AcademySubmitExamPostInput>): Promise<import("axios").AxiosResponse<import("./types.js").AcademyExamResultResponse, import("./types.js").AcademySubmitExamInput, {}>>;
|
|
22
|
+
/**
|
|
23
|
+
* Performs the categories operation for the academy capability.
|
|
24
|
+
* Calls `GET /api/v1/academy/categories` through the shared IDP-aware Faiber client.
|
|
25
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
26
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
27
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
28
|
+
*/
|
|
29
|
+
academyCategoriesGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").AcademyCategoriesResponse, unknown, {}>>;
|
|
30
|
+
/**
|
|
31
|
+
* Performs the courses operation for the academy capability.
|
|
32
|
+
* Calls `GET /api/v1/academy/courses` through the shared IDP-aware Faiber client.
|
|
33
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
34
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
35
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
36
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
37
|
+
*/
|
|
38
|
+
academyCoursesGet(params?: T.AcademyCoursesGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").AcademyCoursesResponse, unknown, {}>>;
|
|
39
|
+
/**
|
|
40
|
+
* Performs the course operation for the academy capability.
|
|
41
|
+
* Calls `GET /api/v1/academy/courses/{id}` through the shared IDP-aware Faiber client.
|
|
42
|
+
* @param id Backend path identifier `id`.
|
|
43
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
44
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
45
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
46
|
+
*/
|
|
47
|
+
academyCourseGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").AcademyCourseResponse, unknown, {}>>;
|
|
48
|
+
/**
|
|
49
|
+
* Performs the enroll operation for the academy capability.
|
|
50
|
+
* Calls `POST /api/v1/academy/courses/{id}/enroll` through the shared IDP-aware Faiber client.
|
|
51
|
+
* @param id Backend path identifier `id`.
|
|
52
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
53
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
54
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
55
|
+
*/
|
|
56
|
+
academyEnrollPost(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").AcademyEnrollmentStartResponse, unknown, {}>>;
|
|
57
|
+
/**
|
|
58
|
+
* Performs the my enrollments operation for the academy capability.
|
|
59
|
+
* Calls `GET /api/v1/academy/enrollments` through the shared IDP-aware Faiber client.
|
|
60
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
61
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
62
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
63
|
+
*/
|
|
64
|
+
academyMyEnrollmentsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").AcademyEnrollmentsResponse, unknown, {}>>;
|
|
65
|
+
/**
|
|
66
|
+
* Performs the start exam operation for the academy capability.
|
|
67
|
+
* Calls `POST /api/v1/academy/enrollments/{id}/exams/{exam_id}/attempts` through the shared IDP-aware Faiber client.
|
|
68
|
+
* @param id Backend path identifier `id`.
|
|
69
|
+
* @param examId Backend path identifier `exam_id`.
|
|
70
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
71
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
72
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
73
|
+
*/
|
|
74
|
+
academyStartExamPost(id: Identifier, examId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<import("./types.js").AcademyExamAttemptResponse, unknown, {}>>;
|
|
75
|
+
/**
|
|
76
|
+
* Performs the complete session operation for the academy capability.
|
|
77
|
+
* Calls `POST /api/v1/academy/enrollments/{id}/sessions/{session_id}/complete` through the shared IDP-aware Faiber client.
|
|
78
|
+
* @param id Backend path identifier `id`.
|
|
79
|
+
* @param sessionId Backend path identifier `session_id`.
|
|
80
|
+
* @param data Typed JSON request body.
|
|
81
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
82
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
83
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
84
|
+
*/
|
|
85
|
+
academyCompleteSessionPost(id: Identifier, sessionId: Identifier, data: T.AcademyCompleteSessionPostInput, options?: RequestOptions<T.AcademyCompleteSessionPostInput>): Promise<import("axios").AxiosResponse<import("./types.js").AcademySessionCompletionResponse, import("./types.js").AcademyCompleteSessionInput, {}>>;
|
|
86
|
+
/**
|
|
87
|
+
* Performs the get self operation for the session capability.
|
|
88
|
+
* Calls `GET /api/v1/auth/self` through the shared IDP-aware Faiber client.
|
|
89
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
90
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
91
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
92
|
+
*/
|
|
7
93
|
sessionGetSelfGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.SessionGetSelfGetResponse, unknown, {}>>;
|
|
8
|
-
/**
|
|
94
|
+
/**
|
|
95
|
+
* Performs the index certificate operation for the certificate capability.
|
|
96
|
+
* Calls `GET /api/v1/certificates` through the shared IDP-aware Faiber client.
|
|
97
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
98
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
99
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
100
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:certificate:read.
|
|
101
|
+
*/
|
|
9
102
|
certificateIndexCertificateGet(params?: T.CertificateIndexCertificateGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CertificateIndexCertificateGetResponse, unknown, {}>>;
|
|
10
|
-
/**
|
|
103
|
+
/**
|
|
104
|
+
* Performs the store certificate operation for the certificate capability.
|
|
105
|
+
* Calls `POST /api/v1/certificates` through the shared IDP-aware Faiber client.
|
|
106
|
+
* @param data Typed JSON request body.
|
|
107
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
108
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
109
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:certificate:create.
|
|
110
|
+
*/
|
|
11
111
|
certificateStoreCertificatePost(data: T.CertificateStoreCertificatePostInput, options?: RequestOptions<T.CertificateStoreCertificatePostInput>): Promise<import("axios").AxiosResponse<T.CertificateStoreCertificatePostResponse, T.CertificateStoreCertificatePostInput, {}>>;
|
|
12
|
-
/**
|
|
112
|
+
/**
|
|
113
|
+
* Performs the show certificate operation for the certificate capability.
|
|
114
|
+
* Calls `GET /api/v1/certificates/{id}` through the shared IDP-aware Faiber client.
|
|
115
|
+
* @param id Backend path identifier `id`.
|
|
116
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
117
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
118
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:certificate:read.
|
|
119
|
+
*/
|
|
13
120
|
certificateShowCertificateGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CertificateShowCertificateGetResponse, unknown, {}>>;
|
|
14
|
-
/**
|
|
121
|
+
/**
|
|
122
|
+
* Performs the update certificate operation for the certificate capability.
|
|
123
|
+
* Calls `PATCH /api/v1/certificates/{id}` through the shared IDP-aware Faiber client.
|
|
124
|
+
* @param id Backend path identifier `id`.
|
|
125
|
+
* @param data Typed JSON request body.
|
|
126
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
127
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
128
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:certificate:update.
|
|
129
|
+
*/
|
|
15
130
|
certificateUpdateCertificatePatch(id: Identifier, data: T.CertificateUpdateCertificatePatchInput, options?: RequestOptions<T.CertificateUpdateCertificatePatchInput>): Promise<import("axios").AxiosResponse<T.CertificateUpdateCertificatePatchResponse, T.CertificateUpdateCertificatePatchInput, {}>>;
|
|
16
|
-
/**
|
|
131
|
+
/**
|
|
132
|
+
* Performs the index classroom operation for the classroom capability.
|
|
133
|
+
* Calls `GET /api/v1/classrooms` through the shared IDP-aware Faiber client.
|
|
134
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
135
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
136
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
137
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:read.
|
|
138
|
+
*/
|
|
17
139
|
classroomIndexClassroomGet(params?: T.ClassroomIndexClassroomGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ClassroomIndexClassroomGetResponse, unknown, {}>>;
|
|
18
|
-
/**
|
|
140
|
+
/**
|
|
141
|
+
* Performs the store classroom operation for the classroom capability.
|
|
142
|
+
* Calls `POST /api/v1/classrooms` through the shared IDP-aware Faiber client.
|
|
143
|
+
* @param data Typed JSON request body.
|
|
144
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
145
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
146
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:create.
|
|
147
|
+
*/
|
|
19
148
|
classroomStoreClassroomPost(data: T.ClassroomStoreClassroomPostInput, options?: RequestOptions<T.ClassroomStoreClassroomPostInput>): Promise<import("axios").AxiosResponse<T.ClassroomStoreClassroomPostResponse, T.ClassroomStoreClassroomPostInput, {}>>;
|
|
20
|
-
/**
|
|
149
|
+
/**
|
|
150
|
+
* Performs the show classroom operation for the classroom capability.
|
|
151
|
+
* Calls `GET /api/v1/classrooms/{id}` through the shared IDP-aware Faiber client.
|
|
152
|
+
* @param id Backend path identifier `id`.
|
|
153
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
154
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
155
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:read.
|
|
156
|
+
*/
|
|
21
157
|
classroomShowClassroomGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ClassroomShowClassroomGetResponse, unknown, {}>>;
|
|
22
|
-
/**
|
|
158
|
+
/**
|
|
159
|
+
* Performs the update classroom operation for the classroom capability.
|
|
160
|
+
* Calls `PATCH /api/v1/classrooms/{id}` through the shared IDP-aware Faiber client.
|
|
161
|
+
* @param id Backend path identifier `id`.
|
|
162
|
+
* @param data Typed JSON request body.
|
|
163
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
164
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
165
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:update.
|
|
166
|
+
*/
|
|
23
167
|
classroomUpdateClassroomPatch(id: Identifier, data: T.ClassroomUpdateClassroomPatchInput, options?: RequestOptions<T.ClassroomUpdateClassroomPatchInput>): Promise<import("axios").AxiosResponse<T.ClassroomUpdateClassroomPatchResponse, T.ClassroomUpdateClassroomPatchInput, {}>>;
|
|
24
|
-
/**
|
|
168
|
+
/**
|
|
169
|
+
* Performs the index classroom users operation for the classroom capability.
|
|
170
|
+
* Calls `GET /api/v1/classrooms/{id}/users` through the shared IDP-aware Faiber client.
|
|
171
|
+
* @param id Backend path identifier `id`.
|
|
172
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
173
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
174
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
175
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:read.
|
|
176
|
+
*/
|
|
25
177
|
classroomIndexClassroomUsersGet(id: Identifier, params?: T.ClassroomIndexClassroomUsersGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ClassroomIndexClassroomUsersGetResponse, unknown, {}>>;
|
|
26
|
-
/**
|
|
178
|
+
/**
|
|
179
|
+
* Performs the enroll classroom user operation for the classroom capability.
|
|
180
|
+
* Calls `POST /api/v1/classrooms/{id}/users` through the shared IDP-aware Faiber client.
|
|
181
|
+
* @param id Backend path identifier `id`.
|
|
182
|
+
* @param data Typed JSON request body.
|
|
183
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
184
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
185
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:create.
|
|
186
|
+
*/
|
|
27
187
|
classroomEnrollClassroomUserPost(id: Identifier, data: T.ClassroomEnrollClassroomUserPostInput, options?: RequestOptions<T.ClassroomEnrollClassroomUserPostInput>): Promise<import("axios").AxiosResponse<T.ClassroomEnrollClassroomUserPostResponse, T.ClassroomEnrollClassroomUserPostInput, {}>>;
|
|
28
|
-
/**
|
|
188
|
+
/**
|
|
189
|
+
* Performs the remove classroom user operation for the classroom capability.
|
|
190
|
+
* Calls `DELETE /api/v1/classrooms/{id}/users/{user_id}` through the shared IDP-aware Faiber client.
|
|
191
|
+
* @param id Backend path identifier `id`.
|
|
192
|
+
* @param userId Backend path identifier `user_id`.
|
|
193
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
194
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
195
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:update.
|
|
196
|
+
*/
|
|
29
197
|
classroomRemoveClassroomUserDelete(id: Identifier, userId: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ClassroomRemoveClassroomUserDeleteResponse, unknown, {}>>;
|
|
30
|
-
/**
|
|
198
|
+
/**
|
|
199
|
+
* Performs the update classroom user operation for the classroom capability.
|
|
200
|
+
* Calls `PATCH /api/v1/classrooms/{id}/users/{user_id}` through the shared IDP-aware Faiber client.
|
|
201
|
+
* @param id Backend path identifier `id`.
|
|
202
|
+
* @param userId Backend path identifier `user_id`.
|
|
203
|
+
* @param data Typed JSON request body.
|
|
204
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
205
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
206
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:update.
|
|
207
|
+
*/
|
|
31
208
|
classroomUpdateClassroomUserPatch(id: Identifier, userId: Identifier, data: T.ClassroomUpdateClassroomUserPatchInput, options?: RequestOptions<T.ClassroomUpdateClassroomUserPatchInput>): Promise<import("axios").AxiosResponse<T.ClassroomUpdateClassroomUserPatchResponse, T.ClassroomUpdateClassroomUserPatchInput, {}>>;
|
|
32
|
-
/**
|
|
209
|
+
/**
|
|
210
|
+
* Performs the index session operation for the classroom capability.
|
|
211
|
+
* Calls `GET /api/v1/classrooms/sessions` through the shared IDP-aware Faiber client.
|
|
212
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
213
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
214
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
215
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:read.
|
|
216
|
+
*/
|
|
33
217
|
classroomIndexSessionGet(params?: T.ClassroomIndexSessionGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ClassroomIndexSessionGetResponse, unknown, {}>>;
|
|
34
|
-
/**
|
|
218
|
+
/**
|
|
219
|
+
* Performs the store session operation for the classroom capability.
|
|
220
|
+
* Calls `POST /api/v1/classrooms/sessions` through the shared IDP-aware Faiber client.
|
|
221
|
+
* @param data Typed JSON request body.
|
|
222
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
223
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
224
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:create.
|
|
225
|
+
*/
|
|
35
226
|
classroomStoreSessionPost(data: T.ClassroomStoreSessionPostInput, options?: RequestOptions<T.ClassroomStoreSessionPostInput>): Promise<import("axios").AxiosResponse<T.ClassroomStoreSessionPostResponse, T.ClassroomStoreSessionPostInput, {}>>;
|
|
36
|
-
/**
|
|
227
|
+
/**
|
|
228
|
+
* Performs the show session operation for the classroom capability.
|
|
229
|
+
* Calls `GET /api/v1/classrooms/sessions/{id}` through the shared IDP-aware Faiber client.
|
|
230
|
+
* @param id Backend path identifier `id`.
|
|
231
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
232
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
233
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:read.
|
|
234
|
+
*/
|
|
37
235
|
classroomShowSessionGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ClassroomShowSessionGetResponse, unknown, {}>>;
|
|
38
|
-
/**
|
|
236
|
+
/**
|
|
237
|
+
* Performs the update session operation for the classroom capability.
|
|
238
|
+
* Calls `PATCH /api/v1/classrooms/sessions/{id}` through the shared IDP-aware Faiber client.
|
|
239
|
+
* @param id Backend path identifier `id`.
|
|
240
|
+
* @param data Typed JSON request body.
|
|
241
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
242
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
243
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:update.
|
|
244
|
+
*/
|
|
39
245
|
classroomUpdateSessionPatch(id: Identifier, data: T.ClassroomUpdateSessionPatchInput, options?: RequestOptions<T.ClassroomUpdateSessionPatchInput>): Promise<import("axios").AxiosResponse<T.ClassroomUpdateSessionPatchResponse, T.ClassroomUpdateSessionPatchInput, {}>>;
|
|
40
|
-
/**
|
|
246
|
+
/**
|
|
247
|
+
* Performs the index absences operation for the classroom capability.
|
|
248
|
+
* Calls `GET /api/v1/classrooms/users/sessions/absences` through the shared IDP-aware Faiber client.
|
|
249
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
250
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
251
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
252
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:read.
|
|
253
|
+
*/
|
|
41
254
|
classroomIndexAbsencesGet(params?: T.ClassroomIndexAbsencesGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ClassroomIndexAbsencesGetResponse, unknown, {}>>;
|
|
42
|
-
/**
|
|
255
|
+
/**
|
|
256
|
+
* Performs the index club project operation for the ops capability.
|
|
257
|
+
* Calls `GET /api/v1/club/projects` through the shared IDP-aware Faiber client.
|
|
258
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
259
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
260
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
261
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:read.
|
|
262
|
+
*/
|
|
43
263
|
opsIndexClubProjectGet(params?: T.OpsIndexClubProjectGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OpsIndexClubProjectGetResponse, unknown, {}>>;
|
|
44
|
-
/**
|
|
264
|
+
/**
|
|
265
|
+
* Performs the store club project operation for the ops capability.
|
|
266
|
+
* Calls `POST /api/v1/club/projects` through the shared IDP-aware Faiber client.
|
|
267
|
+
* @param data Typed JSON request body.
|
|
268
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
269
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
270
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:create.
|
|
271
|
+
*/
|
|
45
272
|
opsStoreClubProjectPost(data: T.OpsStoreClubProjectPostInput, options?: RequestOptions<T.OpsStoreClubProjectPostInput>): Promise<import("axios").AxiosResponse<T.OpsStoreClubProjectPostResponse, T.OpsStoreClubProjectPostInput, {}>>;
|
|
46
|
-
/**
|
|
273
|
+
/**
|
|
274
|
+
* Performs the show club project operation for the ops capability.
|
|
275
|
+
* Calls `GET /api/v1/club/projects/{id}` through the shared IDP-aware Faiber client.
|
|
276
|
+
* @param id Backend path identifier `id`.
|
|
277
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
278
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
279
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:read.
|
|
280
|
+
*/
|
|
47
281
|
opsShowClubProjectGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OpsShowClubProjectGetResponse, unknown, {}>>;
|
|
48
|
-
/**
|
|
282
|
+
/**
|
|
283
|
+
* Performs the update club project operation for the ops capability.
|
|
284
|
+
* Calls `PATCH /api/v1/club/projects/{id}` through the shared IDP-aware Faiber client.
|
|
285
|
+
* @param id Backend path identifier `id`.
|
|
286
|
+
* @param data Typed JSON request body.
|
|
287
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
288
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
289
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:update.
|
|
290
|
+
*/
|
|
49
291
|
opsUpdateClubProjectPatch(id: Identifier, data: T.OpsUpdateClubProjectPatchInput, options?: RequestOptions<T.OpsUpdateClubProjectPatchInput>): Promise<import("axios").AxiosResponse<T.OpsUpdateClubProjectPatchResponse, T.OpsUpdateClubProjectPatchInput, {}>>;
|
|
50
|
-
/**
|
|
292
|
+
/**
|
|
293
|
+
* Performs the index classroom type operation for the config capability.
|
|
294
|
+
* Calls `GET /api/v1/config/classroom-types` through the shared IDP-aware Faiber client.
|
|
295
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
296
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
297
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
298
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:read.
|
|
299
|
+
*/
|
|
51
300
|
configIndexClassroomTypeGet(params?: T.ConfigIndexClassroomTypeGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ConfigIndexClassroomTypeGetResponse, unknown, {}>>;
|
|
52
|
-
/**
|
|
301
|
+
/**
|
|
302
|
+
* Performs the store classroom type operation for the config capability.
|
|
303
|
+
* Calls `POST /api/v1/config/classroom-types` through the shared IDP-aware Faiber client.
|
|
304
|
+
* @param data Typed JSON request body.
|
|
305
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
306
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
307
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:create.
|
|
308
|
+
*/
|
|
53
309
|
configStoreClassroomTypePost(data: T.ConfigStoreClassroomTypePostInput, options?: RequestOptions<T.ConfigStoreClassroomTypePostInput>): Promise<import("axios").AxiosResponse<T.ConfigStoreClassroomTypePostResponse, T.ConfigStoreClassroomTypePostInput, {}>>;
|
|
54
|
-
/**
|
|
310
|
+
/**
|
|
311
|
+
* Performs the show classroom type operation for the config capability.
|
|
312
|
+
* Calls `GET /api/v1/config/classroom-types/{id}` through the shared IDP-aware Faiber client.
|
|
313
|
+
* @param id Backend path identifier `id`.
|
|
314
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
315
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
316
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:read.
|
|
317
|
+
*/
|
|
55
318
|
configShowClassroomTypeGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ConfigShowClassroomTypeGetResponse, unknown, {}>>;
|
|
56
|
-
/**
|
|
319
|
+
/**
|
|
320
|
+
* Performs the update classroom type operation for the config capability.
|
|
321
|
+
* Calls `PATCH /api/v1/config/classroom-types/{id}` through the shared IDP-aware Faiber client.
|
|
322
|
+
* @param id Backend path identifier `id`.
|
|
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: lms:config:update.
|
|
327
|
+
*/
|
|
57
328
|
configUpdateClassroomTypePatch(id: Identifier, data: T.ConfigUpdateClassroomTypePatchInput, options?: RequestOptions<T.ConfigUpdateClassroomTypePatchInput>): Promise<import("axios").AxiosResponse<T.ConfigUpdateClassroomTypePatchResponse, T.ConfigUpdateClassroomTypePatchInput, {}>>;
|
|
58
|
-
/**
|
|
329
|
+
/**
|
|
330
|
+
* Performs the index education day operation for the config capability.
|
|
331
|
+
* Calls `GET /api/v1/config/education-days` through the shared IDP-aware Faiber client.
|
|
332
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
333
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
334
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
335
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:read.
|
|
336
|
+
*/
|
|
59
337
|
configIndexEducationDayGet(params?: T.ConfigIndexEducationDayGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ConfigIndexEducationDayGetResponse, unknown, {}>>;
|
|
60
|
-
/**
|
|
338
|
+
/**
|
|
339
|
+
* Performs the store education day operation for the config capability.
|
|
340
|
+
* Calls `POST /api/v1/config/education-days` through the shared IDP-aware Faiber client.
|
|
341
|
+
* @param data Typed JSON request body.
|
|
342
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
343
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
344
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:create.
|
|
345
|
+
*/
|
|
61
346
|
configStoreEducationDayPost(data: T.ConfigStoreEducationDayPostInput, options?: RequestOptions<T.ConfigStoreEducationDayPostInput>): Promise<import("axios").AxiosResponse<T.ConfigStoreEducationDayPostResponse, T.ConfigStoreEducationDayPostInput, {}>>;
|
|
62
|
-
/**
|
|
347
|
+
/**
|
|
348
|
+
* Performs the show education day operation for the config capability.
|
|
349
|
+
* Calls `GET /api/v1/config/education-days/{id}` through the shared IDP-aware Faiber client.
|
|
350
|
+
* @param id Backend path identifier `id`.
|
|
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: lms:config:read.
|
|
354
|
+
*/
|
|
63
355
|
configShowEducationDayGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ConfigShowEducationDayGetResponse, unknown, {}>>;
|
|
64
|
-
/**
|
|
356
|
+
/**
|
|
357
|
+
* Performs the update education day operation for the config capability.
|
|
358
|
+
* Calls `PATCH /api/v1/config/education-days/{id}` through the shared IDP-aware Faiber client.
|
|
359
|
+
* @param id Backend path identifier `id`.
|
|
360
|
+
* @param data Typed JSON request body.
|
|
361
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
362
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
363
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:update.
|
|
364
|
+
*/
|
|
65
365
|
configUpdateEducationDayPatch(id: Identifier, data: T.ConfigUpdateEducationDayPatchInput, options?: RequestOptions<T.ConfigUpdateEducationDayPatchInput>): Promise<import("axios").AxiosResponse<T.ConfigUpdateEducationDayPatchResponse, T.ConfigUpdateEducationDayPatchInput, {}>>;
|
|
66
|
-
/**
|
|
366
|
+
/**
|
|
367
|
+
* Performs the index grade operation for the config capability.
|
|
368
|
+
* Calls `GET /api/v1/config/grades` through the shared IDP-aware Faiber client.
|
|
369
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
370
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
371
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
372
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:read.
|
|
373
|
+
*/
|
|
67
374
|
configIndexGradeGet(params?: T.ConfigIndexGradeGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ConfigIndexGradeGetResponse, unknown, {}>>;
|
|
68
|
-
/**
|
|
375
|
+
/**
|
|
376
|
+
* Performs the store grade operation for the config capability.
|
|
377
|
+
* Calls `POST /api/v1/config/grades` through the shared IDP-aware Faiber client.
|
|
378
|
+
* @param data Typed JSON request body.
|
|
379
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
380
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
381
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:create.
|
|
382
|
+
*/
|
|
69
383
|
configStoreGradePost(data: T.ConfigStoreGradePostInput, options?: RequestOptions<T.ConfigStoreGradePostInput>): Promise<import("axios").AxiosResponse<T.ConfigStoreGradePostResponse, T.ConfigStoreGradePostInput, {}>>;
|
|
70
|
-
/**
|
|
384
|
+
/**
|
|
385
|
+
* Performs the show grade operation for the config capability.
|
|
386
|
+
* Calls `GET /api/v1/config/grades/{id}` through the shared IDP-aware Faiber client.
|
|
387
|
+
* @param id Backend path identifier `id`.
|
|
388
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
389
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
390
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:read.
|
|
391
|
+
*/
|
|
71
392
|
configShowGradeGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ConfigShowGradeGetResponse, unknown, {}>>;
|
|
72
|
-
/**
|
|
393
|
+
/**
|
|
394
|
+
* Performs the update grade operation for the config capability.
|
|
395
|
+
* Calls `PATCH /api/v1/config/grades/{id}` through the shared IDP-aware Faiber client.
|
|
396
|
+
* @param id Backend path identifier `id`.
|
|
397
|
+
* @param data Typed JSON request body.
|
|
398
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
399
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
400
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:update.
|
|
401
|
+
*/
|
|
73
402
|
configUpdateGradePatch(id: Identifier, data: T.ConfigUpdateGradePatchInput, options?: RequestOptions<T.ConfigUpdateGradePatchInput>): Promise<import("axios").AxiosResponse<T.ConfigUpdateGradePatchResponse, T.ConfigUpdateGradePatchInput, {}>>;
|
|
74
|
-
/**
|
|
403
|
+
/**
|
|
404
|
+
* Performs the index text template operation for the config capability.
|
|
405
|
+
* Calls `GET /api/v1/config/text-templates` through the shared IDP-aware Faiber client.
|
|
406
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
407
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
408
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
409
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:read.
|
|
410
|
+
*/
|
|
75
411
|
configIndexTextTemplateGet(params?: T.ConfigIndexTextTemplateGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ConfigIndexTextTemplateGetResponse, unknown, {}>>;
|
|
76
|
-
/**
|
|
412
|
+
/**
|
|
413
|
+
* Performs the store text template operation for the config capability.
|
|
414
|
+
* Calls `POST /api/v1/config/text-templates` through the shared IDP-aware Faiber client.
|
|
415
|
+
* @param data Typed JSON request body.
|
|
416
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
417
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
418
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:create.
|
|
419
|
+
*/
|
|
77
420
|
configStoreTextTemplatePost(data: T.ConfigStoreTextTemplatePostInput, options?: RequestOptions<T.ConfigStoreTextTemplatePostInput>): Promise<import("axios").AxiosResponse<T.ConfigStoreTextTemplatePostResponse, T.ConfigStoreTextTemplatePostInput, {}>>;
|
|
78
|
-
/**
|
|
421
|
+
/**
|
|
422
|
+
* Performs the show text template operation for the config capability.
|
|
423
|
+
* Calls `GET /api/v1/config/text-templates/{id}` through the shared IDP-aware Faiber client.
|
|
424
|
+
* @param id Backend path identifier `id`.
|
|
425
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
426
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
427
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:read.
|
|
428
|
+
*/
|
|
79
429
|
configShowTextTemplateGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ConfigShowTextTemplateGetResponse, unknown, {}>>;
|
|
80
|
-
/**
|
|
430
|
+
/**
|
|
431
|
+
* Performs the update text template operation for the config capability.
|
|
432
|
+
* Calls `PATCH /api/v1/config/text-templates/{id}` through the shared IDP-aware Faiber client.
|
|
433
|
+
* @param id Backend path identifier `id`.
|
|
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: lms:config:update.
|
|
438
|
+
*/
|
|
81
439
|
configUpdateTextTemplatePatch(id: Identifier, data: T.ConfigUpdateTextTemplatePatchInput, options?: RequestOptions<T.ConfigUpdateTextTemplatePatchInput>): Promise<import("axios").AxiosResponse<T.ConfigUpdateTextTemplatePatchResponse, T.ConfigUpdateTextTemplatePatchInput, {}>>;
|
|
82
|
-
/**
|
|
440
|
+
/**
|
|
441
|
+
* Performs the index weekend operation for the config capability.
|
|
442
|
+
* Calls `GET /api/v1/config/weekends` through the shared IDP-aware Faiber client.
|
|
443
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
444
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
445
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
446
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:read.
|
|
447
|
+
*/
|
|
83
448
|
configIndexWeekendGet(params?: T.ConfigIndexWeekendGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ConfigIndexWeekendGetResponse, unknown, {}>>;
|
|
84
|
-
/**
|
|
449
|
+
/**
|
|
450
|
+
* Performs the store weekend operation for the config capability.
|
|
451
|
+
* Calls `POST /api/v1/config/weekends` through the shared IDP-aware Faiber client.
|
|
452
|
+
* @param data Typed JSON request body.
|
|
453
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
454
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
455
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:create.
|
|
456
|
+
*/
|
|
85
457
|
configStoreWeekendPost(data: T.ConfigStoreWeekendPostInput, options?: RequestOptions<T.ConfigStoreWeekendPostInput>): Promise<import("axios").AxiosResponse<T.ConfigStoreWeekendPostResponse, T.ConfigStoreWeekendPostInput, {}>>;
|
|
86
|
-
/**
|
|
458
|
+
/**
|
|
459
|
+
* Performs the show weekend operation for the config capability.
|
|
460
|
+
* Calls `GET /api/v1/config/weekends/{id}` through the shared IDP-aware Faiber client.
|
|
461
|
+
* @param id Backend path identifier `id`.
|
|
462
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
463
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
464
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:read.
|
|
465
|
+
*/
|
|
87
466
|
configShowWeekendGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ConfigShowWeekendGetResponse, unknown, {}>>;
|
|
88
|
-
/**
|
|
467
|
+
/**
|
|
468
|
+
* Performs the update weekend operation for the config capability.
|
|
469
|
+
* Calls `PATCH /api/v1/config/weekends/{id}` through the shared IDP-aware Faiber client.
|
|
470
|
+
* @param id Backend path identifier `id`.
|
|
471
|
+
* @param data Typed JSON request body.
|
|
472
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
473
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
474
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:update.
|
|
475
|
+
*/
|
|
89
476
|
configUpdateWeekendPatch(id: Identifier, data: T.ConfigUpdateWeekendPatchInput, options?: RequestOptions<T.ConfigUpdateWeekendPatchInput>): Promise<import("axios").AxiosResponse<T.ConfigUpdateWeekendPatchResponse, T.ConfigUpdateWeekendPatchInput, {}>>;
|
|
90
|
-
/**
|
|
477
|
+
/**
|
|
478
|
+
* Performs the index course operation for the course capability.
|
|
479
|
+
* Calls `GET /api/v1/courses` through the shared IDP-aware Faiber client.
|
|
480
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
481
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
482
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
483
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:read.
|
|
484
|
+
*/
|
|
91
485
|
courseIndexCourseGet(params?: T.CourseIndexCourseGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CourseIndexCourseGetResponse, unknown, {}>>;
|
|
92
|
-
/**
|
|
486
|
+
/**
|
|
487
|
+
* Performs the store course operation for the course capability.
|
|
488
|
+
* Calls `POST /api/v1/courses` through the shared IDP-aware Faiber client.
|
|
489
|
+
* @param data Typed JSON request body.
|
|
490
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
491
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
492
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:create.
|
|
493
|
+
*/
|
|
93
494
|
courseStoreCoursePost(data: T.CourseStoreCoursePostInput, options?: RequestOptions<T.CourseStoreCoursePostInput>): Promise<import("axios").AxiosResponse<T.CourseStoreCoursePostResponse, T.CourseStoreCoursePostInput, {}>>;
|
|
94
|
-
/**
|
|
495
|
+
/**
|
|
496
|
+
* Performs the index session operation for the course capability.
|
|
497
|
+
* Calls `GET /api/v1/courses/{course_id}/sessions` through the shared IDP-aware Faiber client.
|
|
498
|
+
* @param courseId Backend path identifier `course_id`.
|
|
499
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
500
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
501
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
502
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:read.
|
|
503
|
+
*/
|
|
95
504
|
courseIndexSessionGet(courseId: Identifier, params?: T.CourseIndexSessionGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CourseIndexSessionGetResponse, unknown, {}>>;
|
|
96
|
-
/**
|
|
505
|
+
/**
|
|
506
|
+
* Performs the store session operation for the course capability.
|
|
507
|
+
* Calls `POST /api/v1/courses/{course_id}/sessions` through the shared IDP-aware Faiber client.
|
|
508
|
+
* @param courseId Backend path identifier `course_id`.
|
|
509
|
+
* @param data Typed JSON request body.
|
|
510
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
511
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
512
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:create.
|
|
513
|
+
*/
|
|
97
514
|
courseStoreSessionPost(courseId: Identifier, data: T.CourseStoreSessionPostInput, options?: RequestOptions<T.CourseStoreSessionPostInput>): Promise<import("axios").AxiosResponse<T.CourseStoreSessionPostResponse, T.CourseStoreSessionPostInput, {}>>;
|
|
98
|
-
/**
|
|
515
|
+
/**
|
|
516
|
+
* Performs the destroy session operation for the course capability.
|
|
517
|
+
* Calls `DELETE /api/v1/courses/{course_id}/sessions/{id}` through the shared IDP-aware Faiber client.
|
|
518
|
+
* @param courseId Backend path identifier `course_id`.
|
|
519
|
+
* @param id Backend path identifier `id`.
|
|
520
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
521
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
522
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:delete.
|
|
523
|
+
*/
|
|
524
|
+
courseDestroySessionDelete(courseId: Identifier, id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CourseDestroySessionDeleteResponse, unknown, {}>>;
|
|
525
|
+
/**
|
|
526
|
+
* Performs the show session operation for the course capability.
|
|
527
|
+
* Calls `GET /api/v1/courses/{course_id}/sessions/{id}` through the shared IDP-aware Faiber client.
|
|
528
|
+
* @param courseId Backend path identifier `course_id`.
|
|
529
|
+
* @param id Backend path identifier `id`.
|
|
530
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
531
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
532
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:read.
|
|
533
|
+
*/
|
|
99
534
|
courseShowSessionGet(courseId: Identifier, id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CourseShowSessionGetResponse, unknown, {}>>;
|
|
100
|
-
/**
|
|
535
|
+
/**
|
|
536
|
+
* Performs the update session operation for the course capability.
|
|
537
|
+
* Calls `PATCH /api/v1/courses/{course_id}/sessions/{id}` through the shared IDP-aware Faiber client.
|
|
538
|
+
* @param courseId Backend path identifier `course_id`.
|
|
539
|
+
* @param id Backend path identifier `id`.
|
|
540
|
+
* @param data Typed JSON request body.
|
|
541
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
542
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
543
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:update.
|
|
544
|
+
*/
|
|
101
545
|
courseUpdateSessionPatch(courseId: Identifier, id: Identifier, data: T.CourseUpdateSessionPatchInput, options?: RequestOptions<T.CourseUpdateSessionPatchInput>): Promise<import("axios").AxiosResponse<T.CourseUpdateSessionPatchResponse, T.CourseUpdateSessionPatchInput, {}>>;
|
|
102
|
-
/**
|
|
546
|
+
/**
|
|
547
|
+
* Performs the destroy course operation for the course capability.
|
|
548
|
+
* Calls `DELETE /api/v1/courses/{id}` through the shared IDP-aware Faiber client.
|
|
549
|
+
* @param id Backend path identifier `id`.
|
|
550
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
551
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
552
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:delete.
|
|
553
|
+
*/
|
|
554
|
+
courseDestroyCourseDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CourseDestroyCourseDeleteResponse, unknown, {}>>;
|
|
555
|
+
/**
|
|
556
|
+
* Performs the show course operation for the course capability.
|
|
557
|
+
* Calls `GET /api/v1/courses/{id}` through the shared IDP-aware Faiber client.
|
|
558
|
+
* @param id Backend path identifier `id`.
|
|
559
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
560
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
561
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:read.
|
|
562
|
+
*/
|
|
103
563
|
courseShowCourseGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CourseShowCourseGetResponse, unknown, {}>>;
|
|
104
|
-
/**
|
|
564
|
+
/**
|
|
565
|
+
* Performs the update course operation for the course capability.
|
|
566
|
+
* Calls `PATCH /api/v1/courses/{id}` through the shared IDP-aware Faiber client.
|
|
567
|
+
* @param id Backend path identifier `id`.
|
|
568
|
+
* @param data Typed JSON request body.
|
|
569
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
570
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
571
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:update.
|
|
572
|
+
*/
|
|
105
573
|
courseUpdateCoursePatch(id: Identifier, data: T.CourseUpdateCoursePatchInput, options?: RequestOptions<T.CourseUpdateCoursePatchInput>): Promise<import("axios").AxiosResponse<T.CourseUpdateCoursePatchResponse, T.CourseUpdateCoursePatchInput, {}>>;
|
|
106
|
-
/**
|
|
574
|
+
/**
|
|
575
|
+
* Performs the index category operation for the course capability.
|
|
576
|
+
* Calls `GET /api/v1/courses/categories` through the shared IDP-aware Faiber client.
|
|
577
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
578
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
579
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
580
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:read.
|
|
581
|
+
*/
|
|
107
582
|
courseIndexCategoryGet(params?: T.CourseIndexCategoryGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CourseIndexCategoryGetResponse, unknown, {}>>;
|
|
108
|
-
/**
|
|
583
|
+
/**
|
|
584
|
+
* Performs the store category operation for the course capability.
|
|
585
|
+
* Calls `POST /api/v1/courses/categories` through the shared IDP-aware Faiber client.
|
|
586
|
+
* @param data Typed JSON request body.
|
|
587
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
588
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
589
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:create.
|
|
590
|
+
*/
|
|
109
591
|
courseStoreCategoryPost(data: T.CourseStoreCategoryPostInput, options?: RequestOptions<T.CourseStoreCategoryPostInput>): Promise<import("axios").AxiosResponse<T.CourseStoreCategoryPostResponse, T.CourseStoreCategoryPostInput, {}>>;
|
|
110
|
-
/**
|
|
592
|
+
/**
|
|
593
|
+
* Performs the destroy category operation for the course capability.
|
|
594
|
+
* Calls `DELETE /api/v1/courses/categories/{id}` through the shared IDP-aware Faiber client.
|
|
595
|
+
* @param id Backend path identifier `id`.
|
|
596
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
597
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
598
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:delete.
|
|
599
|
+
*/
|
|
600
|
+
courseDestroyCategoryDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CourseDestroyCategoryDeleteResponse, unknown, {}>>;
|
|
601
|
+
/**
|
|
602
|
+
* Performs the show category operation for the course capability.
|
|
603
|
+
* Calls `GET /api/v1/courses/categories/{id}` through the shared IDP-aware Faiber client.
|
|
604
|
+
* @param id Backend path identifier `id`.
|
|
605
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
606
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
607
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:read.
|
|
608
|
+
*/
|
|
111
609
|
courseShowCategoryGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CourseShowCategoryGetResponse, unknown, {}>>;
|
|
112
|
-
/**
|
|
610
|
+
/**
|
|
611
|
+
* Performs the update category operation for the course capability.
|
|
612
|
+
* Calls `PATCH /api/v1/courses/categories/{id}` through the shared IDP-aware Faiber client.
|
|
613
|
+
* @param id Backend path identifier `id`.
|
|
614
|
+
* @param data Typed JSON request body.
|
|
615
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
616
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
617
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:update.
|
|
618
|
+
*/
|
|
113
619
|
courseUpdateCategoryPatch(id: Identifier, data: T.CourseUpdateCategoryPatchInput, options?: RequestOptions<T.CourseUpdateCategoryPatchInput>): Promise<import("axios").AxiosResponse<T.CourseUpdateCategoryPatchResponse, T.CourseUpdateCategoryPatchInput, {}>>;
|
|
114
|
-
/**
|
|
620
|
+
/**
|
|
621
|
+
* Performs the index video section operation for the course capability.
|
|
622
|
+
* Calls `GET /api/v1/courses/video-sections` through the shared IDP-aware Faiber client.
|
|
623
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
624
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
625
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
626
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:read.
|
|
627
|
+
*/
|
|
115
628
|
courseIndexVideoSectionGet(params?: T.CourseIndexVideoSectionGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CourseIndexVideoSectionGetResponse, unknown, {}>>;
|
|
116
|
-
/**
|
|
629
|
+
/**
|
|
630
|
+
* Performs the store video section operation for the course capability.
|
|
631
|
+
* Calls `POST /api/v1/courses/video-sections` through the shared IDP-aware Faiber client.
|
|
632
|
+
* @param data Typed JSON request body.
|
|
633
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
634
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
635
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:create.
|
|
636
|
+
*/
|
|
117
637
|
courseStoreVideoSectionPost(data: T.CourseStoreVideoSectionPostInput, options?: RequestOptions<T.CourseStoreVideoSectionPostInput>): Promise<import("axios").AxiosResponse<T.CourseStoreVideoSectionPostResponse, T.CourseStoreVideoSectionPostInput, {}>>;
|
|
118
|
-
/**
|
|
638
|
+
/**
|
|
639
|
+
* Performs the destroy video section operation for the course capability.
|
|
640
|
+
* Calls `DELETE /api/v1/courses/video-sections/{id}` through the shared IDP-aware Faiber client.
|
|
641
|
+
* @param id Backend path identifier `id`.
|
|
642
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
643
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
644
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:delete.
|
|
645
|
+
*/
|
|
646
|
+
courseDestroyVideoSectionDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CourseDestroyVideoSectionDeleteResponse, unknown, {}>>;
|
|
647
|
+
/**
|
|
648
|
+
* Performs the show video section operation for the course capability.
|
|
649
|
+
* Calls `GET /api/v1/courses/video-sections/{id}` through the shared IDP-aware Faiber client.
|
|
650
|
+
* @param id Backend path identifier `id`.
|
|
651
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
652
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
653
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:read.
|
|
654
|
+
*/
|
|
119
655
|
courseShowVideoSectionGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.CourseShowVideoSectionGetResponse, unknown, {}>>;
|
|
120
|
-
/**
|
|
656
|
+
/**
|
|
657
|
+
* Performs the update video section operation for the course capability.
|
|
658
|
+
* Calls `PATCH /api/v1/courses/video-sections/{id}` through the shared IDP-aware Faiber client.
|
|
659
|
+
* @param id Backend path identifier `id`.
|
|
660
|
+
* @param data Typed JSON request body.
|
|
661
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
662
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
663
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:update.
|
|
664
|
+
*/
|
|
121
665
|
courseUpdateVideoSectionPatch(id: Identifier, data: T.CourseUpdateVideoSectionPatchInput, options?: RequestOptions<T.CourseUpdateVideoSectionPatchInput>): Promise<import("axios").AxiosResponse<T.CourseUpdateVideoSectionPatchResponse, T.CourseUpdateVideoSectionPatchInput, {}>>;
|
|
122
|
-
/**
|
|
666
|
+
/**
|
|
667
|
+
* Performs the index operation for the dashboard capability.
|
|
668
|
+
* Calls `GET /api/v1/dashboard` through the shared IDP-aware Faiber client.
|
|
669
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
670
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
671
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:dashboard:read.
|
|
672
|
+
*/
|
|
123
673
|
dashboardIndexGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.DashboardIndexGetResponse, unknown, {}>>;
|
|
124
|
-
/**
|
|
674
|
+
/**
|
|
675
|
+
* Performs the integration operation for the docs capability.
|
|
676
|
+
* Calls `GET /api/v1/docs/integration` through the shared IDP-aware Faiber client.
|
|
677
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
678
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
679
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:docs:read.
|
|
680
|
+
*/
|
|
125
681
|
docsIntegrationGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.DocsIntegrationGetResponse, unknown, {}>>;
|
|
126
|
-
/**
|
|
682
|
+
/**
|
|
683
|
+
* Performs the index event operation for the event capability.
|
|
684
|
+
* Calls `GET /api/v1/events` through the shared IDP-aware Faiber client.
|
|
685
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
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: lms:event:read.
|
|
689
|
+
*/
|
|
127
690
|
eventIndexEventGet(params?: T.EventIndexEventGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.EventIndexEventGetResponse, unknown, {}>>;
|
|
128
|
-
/**
|
|
691
|
+
/**
|
|
692
|
+
* Performs the store event operation for the event capability.
|
|
693
|
+
* Calls `POST /api/v1/events` through the shared IDP-aware Faiber client.
|
|
694
|
+
* @param data Typed JSON request body.
|
|
695
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
696
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
697
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:create.
|
|
698
|
+
*/
|
|
129
699
|
eventStoreEventPost(data: T.EventStoreEventPostInput, options?: RequestOptions<T.EventStoreEventPostInput>): Promise<import("axios").AxiosResponse<T.EventStoreEventPostResponse, T.EventStoreEventPostInput, {}>>;
|
|
130
|
-
/**
|
|
700
|
+
/**
|
|
701
|
+
* Performs the index user operation for the event capability.
|
|
702
|
+
* Calls `GET /api/v1/events/{event_id}/users` through the shared IDP-aware Faiber client.
|
|
703
|
+
* @param eventId Backend path identifier `event_id`.
|
|
704
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
705
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
706
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
707
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:read.
|
|
708
|
+
*/
|
|
131
709
|
eventIndexUserGet(eventId: Identifier, params?: T.EventIndexUserGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.EventIndexUserGetResponse, unknown, {}>>;
|
|
132
|
-
/**
|
|
710
|
+
/**
|
|
711
|
+
* Performs the store user operation for the event capability.
|
|
712
|
+
* Calls `POST /api/v1/events/{event_id}/users` through the shared IDP-aware Faiber client.
|
|
713
|
+
* @param eventId Backend path identifier `event_id`.
|
|
714
|
+
* @param data Typed JSON request body.
|
|
715
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
716
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
717
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:create.
|
|
718
|
+
*/
|
|
133
719
|
eventStoreUserPost(eventId: Identifier, data: T.EventStoreUserPostInput, options?: RequestOptions<T.EventStoreUserPostInput>): Promise<import("axios").AxiosResponse<T.EventStoreUserPostResponse, T.EventStoreUserPostInput, {}>>;
|
|
134
|
-
/**
|
|
720
|
+
/**
|
|
721
|
+
* Performs the show user operation for the event capability.
|
|
722
|
+
* Calls `GET /api/v1/events/{event_id}/users/{id}` through the shared IDP-aware Faiber client.
|
|
723
|
+
* @param eventId Backend path identifier `event_id`.
|
|
724
|
+
* @param id Backend path identifier `id`.
|
|
725
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
726
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
727
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:read.
|
|
728
|
+
*/
|
|
135
729
|
eventShowUserGet(eventId: Identifier, id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.EventShowUserGetResponse, unknown, {}>>;
|
|
136
|
-
/**
|
|
730
|
+
/**
|
|
731
|
+
* Performs the update user operation for the event capability.
|
|
732
|
+
* Calls `PATCH /api/v1/events/{event_id}/users/{id}` through the shared IDP-aware Faiber client.
|
|
733
|
+
* @param eventId Backend path identifier `event_id`.
|
|
734
|
+
* @param id Backend path identifier `id`.
|
|
735
|
+
* @param data Typed JSON request body.
|
|
736
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
737
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
738
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:update.
|
|
739
|
+
*/
|
|
137
740
|
eventUpdateUserPatch(eventId: Identifier, id: Identifier, data: T.EventUpdateUserPatchInput, options?: RequestOptions<T.EventUpdateUserPatchInput>): Promise<import("axios").AxiosResponse<T.EventUpdateUserPatchResponse, T.EventUpdateUserPatchInput, {}>>;
|
|
138
|
-
/**
|
|
741
|
+
/**
|
|
742
|
+
* Performs the show event operation for the event capability.
|
|
743
|
+
* Calls `GET /api/v1/events/{id}` through the shared IDP-aware Faiber client.
|
|
744
|
+
* @param id Backend path identifier `id`.
|
|
745
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
746
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
747
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:read.
|
|
748
|
+
*/
|
|
139
749
|
eventShowEventGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.EventShowEventGetResponse, unknown, {}>>;
|
|
140
|
-
/**
|
|
750
|
+
/**
|
|
751
|
+
* Performs the update event operation for the event capability.
|
|
752
|
+
* Calls `PATCH /api/v1/events/{id}` through the shared IDP-aware Faiber client.
|
|
753
|
+
* @param id Backend path identifier `id`.
|
|
754
|
+
* @param data Typed JSON request body.
|
|
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:event:update.
|
|
758
|
+
*/
|
|
141
759
|
eventUpdateEventPatch(id: Identifier, data: T.EventUpdateEventPatchInput, options?: RequestOptions<T.EventUpdateEventPatchInput>): Promise<import("axios").AxiosResponse<T.EventUpdateEventPatchResponse, T.EventUpdateEventPatchInput, {}>>;
|
|
142
|
-
/**
|
|
760
|
+
/**
|
|
761
|
+
* Performs the index session operation for the event capability.
|
|
762
|
+
* Calls `GET /api/v1/events/sessions` through the shared IDP-aware Faiber client.
|
|
763
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
764
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
765
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
766
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:read.
|
|
767
|
+
*/
|
|
143
768
|
eventIndexSessionGet(params?: T.EventIndexSessionGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.EventIndexSessionGetResponse, unknown, {}>>;
|
|
144
|
-
/**
|
|
769
|
+
/**
|
|
770
|
+
* Performs the store session operation for the event capability.
|
|
771
|
+
* Calls `POST /api/v1/events/sessions` through the shared IDP-aware Faiber client.
|
|
772
|
+
* @param data Typed JSON request body.
|
|
773
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
774
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
775
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:create.
|
|
776
|
+
*/
|
|
145
777
|
eventStoreSessionPost(data: T.EventStoreSessionPostInput, options?: RequestOptions<T.EventStoreSessionPostInput>): Promise<import("axios").AxiosResponse<T.EventStoreSessionPostResponse, T.EventStoreSessionPostInput, {}>>;
|
|
146
|
-
/**
|
|
778
|
+
/**
|
|
779
|
+
* Performs the show session operation for the event capability.
|
|
780
|
+
* Calls `GET /api/v1/events/sessions/{id}` through the shared IDP-aware Faiber client.
|
|
781
|
+
* @param id Backend path identifier `id`.
|
|
782
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
783
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
784
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:read.
|
|
785
|
+
*/
|
|
147
786
|
eventShowSessionGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.EventShowSessionGetResponse, unknown, {}>>;
|
|
148
|
-
/**
|
|
787
|
+
/**
|
|
788
|
+
* Performs the update session operation for the event capability.
|
|
789
|
+
* Calls `PATCH /api/v1/events/sessions/{id}` through the shared IDP-aware Faiber client.
|
|
790
|
+
* @param id Backend path identifier `id`.
|
|
791
|
+
* @param data Typed JSON request body.
|
|
792
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
793
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
794
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:update.
|
|
795
|
+
*/
|
|
149
796
|
eventUpdateSessionPatch(id: Identifier, data: T.EventUpdateSessionPatchInput, options?: RequestOptions<T.EventUpdateSessionPatchInput>): Promise<import("axios").AxiosResponse<T.EventUpdateSessionPatchResponse, T.EventUpdateSessionPatchInput, {}>>;
|
|
150
|
-
/**
|
|
797
|
+
/**
|
|
798
|
+
* Performs the index exam operation for the exam capability.
|
|
799
|
+
* Calls `GET /api/v1/exams` through the shared IDP-aware Faiber client.
|
|
800
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
801
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
802
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
803
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:read.
|
|
804
|
+
*/
|
|
151
805
|
examIndexExamGet(params?: T.ExamIndexExamGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ExamIndexExamGetResponse, unknown, {}>>;
|
|
152
|
-
/**
|
|
806
|
+
/**
|
|
807
|
+
* Performs the store exam operation for the exam capability.
|
|
808
|
+
* Calls `POST /api/v1/exams` through the shared IDP-aware Faiber client.
|
|
809
|
+
* @param data Typed JSON request body.
|
|
810
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
811
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
812
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:create.
|
|
813
|
+
*/
|
|
153
814
|
examStoreExamPost(data: T.ExamStoreExamPostInput, options?: RequestOptions<T.ExamStoreExamPostInput>): Promise<import("axios").AxiosResponse<T.ExamStoreExamPostResponse, T.ExamStoreExamPostInput, {}>>;
|
|
154
|
-
/**
|
|
815
|
+
/**
|
|
816
|
+
* Performs the destroy exam operation for the exam capability.
|
|
817
|
+
* Calls `DELETE /api/v1/exams/{id}` through the shared IDP-aware Faiber client.
|
|
818
|
+
* @param id Backend path identifier `id`.
|
|
819
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
820
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
821
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:delete.
|
|
822
|
+
*/
|
|
823
|
+
examDestroyExamDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ExamDestroyExamDeleteResponse, unknown, {}>>;
|
|
824
|
+
/**
|
|
825
|
+
* Performs the show exam operation for the exam capability.
|
|
826
|
+
* Calls `GET /api/v1/exams/{id}` through the shared IDP-aware Faiber client.
|
|
827
|
+
* @param id Backend path identifier `id`.
|
|
828
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
829
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
830
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:read.
|
|
831
|
+
*/
|
|
155
832
|
examShowExamGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ExamShowExamGetResponse, unknown, {}>>;
|
|
156
|
-
/**
|
|
833
|
+
/**
|
|
834
|
+
* Performs the update exam operation for the exam capability.
|
|
835
|
+
* Calls `PATCH /api/v1/exams/{id}` through the shared IDP-aware Faiber client.
|
|
836
|
+
* @param id Backend path identifier `id`.
|
|
837
|
+
* @param data Typed JSON request body.
|
|
838
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
839
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
840
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:update.
|
|
841
|
+
*/
|
|
157
842
|
examUpdateExamPatch(id: Identifier, data: T.ExamUpdateExamPatchInput, options?: RequestOptions<T.ExamUpdateExamPatchInput>): Promise<import("axios").AxiosResponse<T.ExamUpdateExamPatchResponse, T.ExamUpdateExamPatchInput, {}>>;
|
|
158
|
-
/**
|
|
843
|
+
/**
|
|
844
|
+
* Performs the index question operation for the exam capability.
|
|
845
|
+
* Calls `GET /api/v1/exams/questions` through the shared IDP-aware Faiber client.
|
|
846
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
847
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
848
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
849
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:read.
|
|
850
|
+
*/
|
|
159
851
|
examIndexQuestionGet(params?: T.ExamIndexQuestionGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ExamIndexQuestionGetResponse, unknown, {}>>;
|
|
160
|
-
/**
|
|
852
|
+
/**
|
|
853
|
+
* Performs the store question operation for the exam capability.
|
|
854
|
+
* Calls `POST /api/v1/exams/questions` through the shared IDP-aware Faiber client.
|
|
855
|
+
* @param data Typed JSON request body.
|
|
856
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
857
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
858
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:create.
|
|
859
|
+
*/
|
|
161
860
|
examStoreQuestionPost(data: T.ExamStoreQuestionPostInput, options?: RequestOptions<T.ExamStoreQuestionPostInput>): Promise<import("axios").AxiosResponse<T.ExamStoreQuestionPostResponse, T.ExamStoreQuestionPostInput, {}>>;
|
|
162
|
-
/**
|
|
861
|
+
/**
|
|
862
|
+
* Performs the destroy question operation for the exam capability.
|
|
863
|
+
* Calls `DELETE /api/v1/exams/questions/{id}` through the shared IDP-aware Faiber client.
|
|
864
|
+
* @param id Backend path identifier `id`.
|
|
865
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
866
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
867
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:delete.
|
|
868
|
+
*/
|
|
869
|
+
examDestroyQuestionDelete(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ExamDestroyQuestionDeleteResponse, unknown, {}>>;
|
|
870
|
+
/**
|
|
871
|
+
* Performs the show question operation for the exam capability.
|
|
872
|
+
* Calls `GET /api/v1/exams/questions/{id}` through the shared IDP-aware Faiber client.
|
|
873
|
+
* @param id Backend path identifier `id`.
|
|
874
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
875
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
876
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:read.
|
|
877
|
+
*/
|
|
163
878
|
examShowQuestionGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ExamShowQuestionGetResponse, unknown, {}>>;
|
|
164
|
-
/**
|
|
879
|
+
/**
|
|
880
|
+
* Performs the update question operation for the exam capability.
|
|
881
|
+
* Calls `PATCH /api/v1/exams/questions/{id}` through the shared IDP-aware Faiber client.
|
|
882
|
+
* @param id Backend path identifier `id`.
|
|
883
|
+
* @param data Typed JSON request body.
|
|
884
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
885
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
886
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:update.
|
|
887
|
+
*/
|
|
165
888
|
examUpdateQuestionPatch(id: Identifier, data: T.ExamUpdateQuestionPatchInput, options?: RequestOptions<T.ExamUpdateQuestionPatchInput>): Promise<import("axios").AxiosResponse<T.ExamUpdateQuestionPatchResponse, T.ExamUpdateQuestionPatchInput, {}>>;
|
|
166
|
-
/**
|
|
889
|
+
/**
|
|
890
|
+
* Performs the index session operation for the exam capability.
|
|
891
|
+
* Calls `GET /api/v1/exams/sessions` through the shared IDP-aware Faiber client.
|
|
892
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
893
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
894
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
895
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:read.
|
|
896
|
+
*/
|
|
167
897
|
examIndexSessionGet(params?: T.ExamIndexSessionGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ExamIndexSessionGetResponse, unknown, {}>>;
|
|
168
|
-
/**
|
|
898
|
+
/**
|
|
899
|
+
* Performs the store session operation for the exam capability.
|
|
900
|
+
* Calls `POST /api/v1/exams/sessions` through the shared IDP-aware Faiber client.
|
|
901
|
+
* @param data Typed JSON request body.
|
|
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:exam:create.
|
|
905
|
+
*/
|
|
169
906
|
examStoreSessionPost(data: T.ExamStoreSessionPostInput, options?: RequestOptions<T.ExamStoreSessionPostInput>): Promise<import("axios").AxiosResponse<T.ExamStoreSessionPostResponse, T.ExamStoreSessionPostInput, {}>>;
|
|
170
|
-
/**
|
|
907
|
+
/**
|
|
908
|
+
* Performs the show session operation for the exam capability.
|
|
909
|
+
* Calls `GET /api/v1/exams/sessions/{id}` through the shared IDP-aware Faiber client.
|
|
910
|
+
* @param id Backend path identifier `id`.
|
|
911
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
912
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
913
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:read.
|
|
914
|
+
*/
|
|
171
915
|
examShowSessionGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ExamShowSessionGetResponse, unknown, {}>>;
|
|
172
|
-
/**
|
|
916
|
+
/**
|
|
917
|
+
* Performs the update session operation for the exam capability.
|
|
918
|
+
* Calls `PATCH /api/v1/exams/sessions/{id}` through the shared IDP-aware Faiber client.
|
|
919
|
+
* @param id Backend path identifier `id`.
|
|
920
|
+
* @param data Typed JSON request body.
|
|
921
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
922
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
923
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:update.
|
|
924
|
+
*/
|
|
173
925
|
examUpdateSessionPatch(id: Identifier, data: T.ExamUpdateSessionPatchInput, options?: RequestOptions<T.ExamUpdateSessionPatchInput>): Promise<import("axios").AxiosResponse<T.ExamUpdateSessionPatchResponse, T.ExamUpdateSessionPatchInput, {}>>;
|
|
174
|
-
/**
|
|
926
|
+
/**
|
|
927
|
+
* Performs the index homework operation for the homework capability.
|
|
928
|
+
* Calls `GET /api/v1/homeworks` through the shared IDP-aware Faiber client.
|
|
929
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
930
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
931
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
932
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:homework:read.
|
|
933
|
+
*/
|
|
175
934
|
homeworkIndexHomeworkGet(params?: T.HomeworkIndexHomeworkGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.HomeworkIndexHomeworkGetResponse, unknown, {}>>;
|
|
176
|
-
/**
|
|
935
|
+
/**
|
|
936
|
+
* Performs the store homework operation for the homework capability.
|
|
937
|
+
* Calls `POST /api/v1/homeworks` through the shared IDP-aware Faiber client.
|
|
938
|
+
* @param data Typed JSON request body.
|
|
939
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
940
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
941
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:homework:create.
|
|
942
|
+
*/
|
|
177
943
|
homeworkStoreHomeworkPost(data: T.HomeworkStoreHomeworkPostInput, options?: RequestOptions<T.HomeworkStoreHomeworkPostInput>): Promise<import("axios").AxiosResponse<T.HomeworkStoreHomeworkPostResponse, T.HomeworkStoreHomeworkPostInput, {}>>;
|
|
178
|
-
/**
|
|
944
|
+
/**
|
|
945
|
+
* Performs the show homework operation for the homework capability.
|
|
946
|
+
* Calls `GET /api/v1/homeworks/{id}` through the shared IDP-aware Faiber client.
|
|
947
|
+
* @param id Backend path identifier `id`.
|
|
948
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
949
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
950
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:homework:read.
|
|
951
|
+
*/
|
|
179
952
|
homeworkShowHomeworkGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.HomeworkShowHomeworkGetResponse, unknown, {}>>;
|
|
180
|
-
/**
|
|
953
|
+
/**
|
|
954
|
+
* Performs the update homework operation for the homework capability.
|
|
955
|
+
* Calls `PATCH /api/v1/homeworks/{id}` through the shared IDP-aware Faiber client.
|
|
956
|
+
* @param id Backend path identifier `id`.
|
|
957
|
+
* @param data Typed JSON request body.
|
|
958
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
959
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
960
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:homework:update.
|
|
961
|
+
*/
|
|
181
962
|
homeworkUpdateHomeworkPatch(id: Identifier, data: T.HomeworkUpdateHomeworkPatchInput, options?: RequestOptions<T.HomeworkUpdateHomeworkPatchInput>): Promise<import("axios").AxiosResponse<T.HomeworkUpdateHomeworkPatchResponse, T.HomeworkUpdateHomeworkPatchInput, {}>>;
|
|
182
|
-
/**
|
|
963
|
+
/**
|
|
964
|
+
* Performs the index assignment operation for the homework capability.
|
|
965
|
+
* Calls `GET /api/v1/homeworks/assignments` through the shared IDP-aware Faiber client.
|
|
966
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
967
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
968
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
969
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:homework:read.
|
|
970
|
+
*/
|
|
183
971
|
homeworkIndexAssignmentGet(params?: T.HomeworkIndexAssignmentGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.HomeworkIndexAssignmentGetResponse, unknown, {}>>;
|
|
184
|
-
/**
|
|
972
|
+
/**
|
|
973
|
+
* Performs the store assignment operation for the homework capability.
|
|
974
|
+
* Calls `POST /api/v1/homeworks/assignments` through the shared IDP-aware Faiber client.
|
|
975
|
+
* @param data Typed JSON request body.
|
|
976
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
977
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
978
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:homework:create.
|
|
979
|
+
*/
|
|
185
980
|
homeworkStoreAssignmentPost(data: T.HomeworkStoreAssignmentPostInput, options?: RequestOptions<T.HomeworkStoreAssignmentPostInput>): Promise<import("axios").AxiosResponse<T.HomeworkStoreAssignmentPostResponse, T.HomeworkStoreAssignmentPostInput, {}>>;
|
|
186
|
-
/**
|
|
981
|
+
/**
|
|
982
|
+
* Performs the show assignment operation for the homework capability.
|
|
983
|
+
* Calls `GET /api/v1/homeworks/assignments/{id}` through the shared IDP-aware Faiber client.
|
|
984
|
+
* @param id Backend path identifier `id`.
|
|
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:homework:read.
|
|
988
|
+
*/
|
|
187
989
|
homeworkShowAssignmentGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.HomeworkShowAssignmentGetResponse, unknown, {}>>;
|
|
188
|
-
/**
|
|
990
|
+
/**
|
|
991
|
+
* Performs the update assignment operation for the homework capability.
|
|
992
|
+
* Calls `PATCH /api/v1/homeworks/assignments/{id}` through the shared IDP-aware Faiber client.
|
|
993
|
+
* @param id Backend path identifier `id`.
|
|
994
|
+
* @param data Typed JSON request body.
|
|
995
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
996
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
997
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:homework:update.
|
|
998
|
+
*/
|
|
189
999
|
homeworkUpdateAssignmentPatch(id: Identifier, data: T.HomeworkUpdateAssignmentPatchInput, options?: RequestOptions<T.HomeworkUpdateAssignmentPatchInput>): Promise<import("axios").AxiosResponse<T.HomeworkUpdateAssignmentPatchResponse, T.HomeworkUpdateAssignmentPatchInput, {}>>;
|
|
190
|
-
/**
|
|
1000
|
+
/**
|
|
1001
|
+
* Performs the index question operation for the homework capability.
|
|
1002
|
+
* Calls `GET /api/v1/homeworks/questions` through the shared IDP-aware Faiber client.
|
|
1003
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1004
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1005
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1006
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:homework:read.
|
|
1007
|
+
*/
|
|
191
1008
|
homeworkIndexQuestionGet(params?: T.HomeworkIndexQuestionGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.HomeworkIndexQuestionGetResponse, unknown, {}>>;
|
|
192
|
-
/**
|
|
1009
|
+
/**
|
|
1010
|
+
* Performs the store question operation for the homework capability.
|
|
1011
|
+
* Calls `POST /api/v1/homeworks/questions` through the shared IDP-aware Faiber client.
|
|
1012
|
+
* @param data Typed JSON request body.
|
|
1013
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1014
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1015
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:homework:create.
|
|
1016
|
+
*/
|
|
193
1017
|
homeworkStoreQuestionPost(data: T.HomeworkStoreQuestionPostInput, options?: RequestOptions<T.HomeworkStoreQuestionPostInput>): Promise<import("axios").AxiosResponse<T.HomeworkStoreQuestionPostResponse, T.HomeworkStoreQuestionPostInput, {}>>;
|
|
194
|
-
/**
|
|
1018
|
+
/**
|
|
1019
|
+
* Performs the show question operation for the homework capability.
|
|
1020
|
+
* Calls `GET /api/v1/homeworks/questions/{id}` through the shared IDP-aware Faiber client.
|
|
1021
|
+
* @param id Backend path identifier `id`.
|
|
1022
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1023
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1024
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:homework:read.
|
|
1025
|
+
*/
|
|
195
1026
|
homeworkShowQuestionGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.HomeworkShowQuestionGetResponse, unknown, {}>>;
|
|
196
|
-
/**
|
|
1027
|
+
/**
|
|
1028
|
+
* Performs the update question operation for the homework capability.
|
|
1029
|
+
* Calls `PATCH /api/v1/homeworks/questions/{id}` through the shared IDP-aware Faiber client.
|
|
1030
|
+
* @param id Backend path identifier `id`.
|
|
1031
|
+
* @param data Typed JSON request body.
|
|
1032
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1033
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1034
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:homework:update.
|
|
1035
|
+
*/
|
|
197
1036
|
homeworkUpdateQuestionPatch(id: Identifier, data: T.HomeworkUpdateQuestionPatchInput, options?: RequestOptions<T.HomeworkUpdateQuestionPatchInput>): Promise<import("axios").AxiosResponse<T.HomeworkUpdateQuestionPatchResponse, T.HomeworkUpdateQuestionPatchInput, {}>>;
|
|
198
|
-
/**
|
|
1037
|
+
/**
|
|
1038
|
+
* Performs the flow integration show operation for the integration capability.
|
|
1039
|
+
* Calls `GET /api/v1/integration/flow` through the shared IDP-aware Faiber client.
|
|
1040
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1041
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1042
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1043
|
+
*/
|
|
199
1044
|
integrationFlowIntegrationShowGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.IntegrationFlowIntegrationShowGetResponse, unknown, {}>>;
|
|
200
|
-
/**
|
|
1045
|
+
/**
|
|
1046
|
+
* Performs the index category operation for the interactive capability.
|
|
1047
|
+
* Calls `GET /api/v1/interactive/categories` through the shared IDP-aware Faiber client.
|
|
1048
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1049
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1050
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1051
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:read.
|
|
1052
|
+
*/
|
|
201
1053
|
interactiveIndexCategoryGet(params?: T.InteractiveIndexCategoryGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InteractiveIndexCategoryGetResponse, unknown, {}>>;
|
|
202
|
-
/**
|
|
1054
|
+
/**
|
|
1055
|
+
* Performs the store category operation for the interactive capability.
|
|
1056
|
+
* Calls `POST /api/v1/interactive/categories` through the shared IDP-aware Faiber client.
|
|
1057
|
+
* @param data Typed JSON request body.
|
|
1058
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1059
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1060
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:create.
|
|
1061
|
+
*/
|
|
203
1062
|
interactiveStoreCategoryPost(data: T.InteractiveStoreCategoryPostInput, options?: RequestOptions<T.InteractiveStoreCategoryPostInput>): Promise<import("axios").AxiosResponse<T.InteractiveStoreCategoryPostResponse, T.InteractiveStoreCategoryPostInput, {}>>;
|
|
204
|
-
/**
|
|
1063
|
+
/**
|
|
1064
|
+
* Performs the show category operation for the interactive capability.
|
|
1065
|
+
* Calls `GET /api/v1/interactive/categories/{id}` through the shared IDP-aware Faiber client.
|
|
1066
|
+
* @param id Backend path identifier `id`.
|
|
1067
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1068
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1069
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:read.
|
|
1070
|
+
*/
|
|
205
1071
|
interactiveShowCategoryGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InteractiveShowCategoryGetResponse, unknown, {}>>;
|
|
206
|
-
/**
|
|
1072
|
+
/**
|
|
1073
|
+
* Performs the update category operation for the interactive capability.
|
|
1074
|
+
* Calls `PATCH /api/v1/interactive/categories/{id}` through the shared IDP-aware Faiber client.
|
|
1075
|
+
* @param id Backend path identifier `id`.
|
|
1076
|
+
* @param data Typed JSON request body.
|
|
1077
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1078
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1079
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:update.
|
|
1080
|
+
*/
|
|
207
1081
|
interactiveUpdateCategoryPatch(id: Identifier, data: T.InteractiveUpdateCategoryPatchInput, options?: RequestOptions<T.InteractiveUpdateCategoryPatchInput>): Promise<import("axios").AxiosResponse<T.InteractiveUpdateCategoryPatchResponse, T.InteractiveUpdateCategoryPatchInput, {}>>;
|
|
208
|
-
/**
|
|
1082
|
+
/**
|
|
1083
|
+
* Performs the index classroom session operation for the interactive capability.
|
|
1084
|
+
* Calls `GET /api/v1/interactive/classroom-sessions` through the shared IDP-aware Faiber client.
|
|
1085
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1086
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1087
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1088
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:read.
|
|
1089
|
+
*/
|
|
209
1090
|
interactiveIndexClassroomSessionGet(params?: T.InteractiveIndexClassroomSessionGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InteractiveIndexClassroomSessionGetResponse, unknown, {}>>;
|
|
210
|
-
/**
|
|
1091
|
+
/**
|
|
1092
|
+
* Performs the store classroom session operation for the interactive capability.
|
|
1093
|
+
* Calls `POST /api/v1/interactive/classroom-sessions` through the shared IDP-aware Faiber client.
|
|
1094
|
+
* @param data Typed JSON request body.
|
|
1095
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1096
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1097
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:create.
|
|
1098
|
+
*/
|
|
211
1099
|
interactiveStoreClassroomSessionPost(data: T.InteractiveStoreClassroomSessionPostInput, options?: RequestOptions<T.InteractiveStoreClassroomSessionPostInput>): Promise<import("axios").AxiosResponse<T.InteractiveStoreClassroomSessionPostResponse, T.InteractiveStoreClassroomSessionPostInput, {}>>;
|
|
212
|
-
/**
|
|
1100
|
+
/**
|
|
1101
|
+
* Performs the show classroom session operation for the interactive capability.
|
|
1102
|
+
* Calls `GET /api/v1/interactive/classroom-sessions/{id}` through the shared IDP-aware Faiber client.
|
|
1103
|
+
* @param id Backend path identifier `id`.
|
|
1104
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1105
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1106
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:read.
|
|
1107
|
+
*/
|
|
213
1108
|
interactiveShowClassroomSessionGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InteractiveShowClassroomSessionGetResponse, unknown, {}>>;
|
|
214
|
-
/**
|
|
1109
|
+
/**
|
|
1110
|
+
* Performs the update classroom session operation for the interactive capability.
|
|
1111
|
+
* Calls `PATCH /api/v1/interactive/classroom-sessions/{id}` through the shared IDP-aware Faiber client.
|
|
1112
|
+
* @param id Backend path identifier `id`.
|
|
1113
|
+
* @param data Typed JSON request body.
|
|
1114
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1115
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1116
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:update.
|
|
1117
|
+
*/
|
|
215
1118
|
interactiveUpdateClassroomSessionPatch(id: Identifier, data: T.InteractiveUpdateClassroomSessionPatchInput, options?: RequestOptions<T.InteractiveUpdateClassroomSessionPatchInput>): Promise<import("axios").AxiosResponse<T.InteractiveUpdateClassroomSessionPatchResponse, T.InteractiveUpdateClassroomSessionPatchInput, {}>>;
|
|
216
|
-
/**
|
|
1119
|
+
/**
|
|
1120
|
+
* Performs the index content operation for the interactive capability.
|
|
1121
|
+
* Calls `GET /api/v1/interactive/content` through the shared IDP-aware Faiber client.
|
|
1122
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1123
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1124
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1125
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:read.
|
|
1126
|
+
*/
|
|
217
1127
|
interactiveIndexContentGet(params?: T.InteractiveIndexContentGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InteractiveIndexContentGetResponse, unknown, {}>>;
|
|
218
|
-
/**
|
|
1128
|
+
/**
|
|
1129
|
+
* Performs the store content operation for the interactive capability.
|
|
1130
|
+
* Calls `POST /api/v1/interactive/content` through the shared IDP-aware Faiber client.
|
|
1131
|
+
* @param data Typed JSON request body.
|
|
1132
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1133
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1134
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:create.
|
|
1135
|
+
*/
|
|
219
1136
|
interactiveStoreContentPost(data: T.InteractiveStoreContentPostInput, options?: RequestOptions<T.InteractiveStoreContentPostInput>): Promise<import("axios").AxiosResponse<T.InteractiveStoreContentPostResponse, T.InteractiveStoreContentPostInput, {}>>;
|
|
220
|
-
/**
|
|
1137
|
+
/**
|
|
1138
|
+
* Performs the show content operation for the interactive capability.
|
|
1139
|
+
* Calls `GET /api/v1/interactive/content/{id}` through the shared IDP-aware Faiber client.
|
|
1140
|
+
* @param id Backend path identifier `id`.
|
|
1141
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1142
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1143
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:read.
|
|
1144
|
+
*/
|
|
221
1145
|
interactiveShowContentGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.InteractiveShowContentGetResponse, unknown, {}>>;
|
|
222
|
-
/**
|
|
1146
|
+
/**
|
|
1147
|
+
* Performs the update content operation for the interactive capability.
|
|
1148
|
+
* Calls `PATCH /api/v1/interactive/content/{id}` through the shared IDP-aware Faiber client.
|
|
1149
|
+
* @param id Backend path identifier `id`.
|
|
1150
|
+
* @param data Typed JSON request body.
|
|
1151
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1152
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1153
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:update.
|
|
1154
|
+
*/
|
|
223
1155
|
interactiveUpdateContentPatch(id: Identifier, data: T.InteractiveUpdateContentPatchInput, options?: RequestOptions<T.InteractiveUpdateContentPatchInput>): Promise<import("axios").AxiosResponse<T.InteractiveUpdateContentPatchResponse, T.InteractiveUpdateContentPatchInput, {}>>;
|
|
224
|
-
/**
|
|
1156
|
+
/**
|
|
1157
|
+
* Performs the index invitation operation for the ops capability.
|
|
1158
|
+
* Calls `GET /api/v1/invitations` through the shared IDP-aware Faiber client.
|
|
1159
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1160
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1161
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1162
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:read.
|
|
1163
|
+
*/
|
|
225
1164
|
opsIndexInvitationGet(params?: T.OpsIndexInvitationGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OpsIndexInvitationGetResponse, unknown, {}>>;
|
|
226
|
-
/**
|
|
1165
|
+
/**
|
|
1166
|
+
* Performs the store invitation operation for the ops capability.
|
|
1167
|
+
* Calls `POST /api/v1/invitations` through the shared IDP-aware Faiber client.
|
|
1168
|
+
* @param data Typed JSON request body.
|
|
1169
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1170
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1171
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:create.
|
|
1172
|
+
*/
|
|
227
1173
|
opsStoreInvitationPost(data: T.OpsStoreInvitationPostInput, options?: RequestOptions<T.OpsStoreInvitationPostInput>): Promise<import("axios").AxiosResponse<T.OpsStoreInvitationPostResponse, T.OpsStoreInvitationPostInput, {}>>;
|
|
228
|
-
/**
|
|
1174
|
+
/**
|
|
1175
|
+
* Performs the show invitation operation for the ops capability.
|
|
1176
|
+
* Calls `GET /api/v1/invitations/{id}` through the shared IDP-aware Faiber client.
|
|
1177
|
+
* @param id Backend path identifier `id`.
|
|
1178
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1179
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1180
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:read.
|
|
1181
|
+
*/
|
|
229
1182
|
opsShowInvitationGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OpsShowInvitationGetResponse, unknown, {}>>;
|
|
230
|
-
/**
|
|
1183
|
+
/**
|
|
1184
|
+
* Performs the update invitation operation for the ops capability.
|
|
1185
|
+
* Calls `PATCH /api/v1/invitations/{id}` through the shared IDP-aware Faiber client.
|
|
1186
|
+
* @param id Backend path identifier `id`.
|
|
1187
|
+
* @param data Typed JSON request body.
|
|
1188
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1189
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1190
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:update.
|
|
1191
|
+
*/
|
|
231
1192
|
opsUpdateInvitationPatch(id: Identifier, data: T.OpsUpdateInvitationPatchInput, options?: RequestOptions<T.OpsUpdateInvitationPatchInput>): Promise<import("axios").AxiosResponse<T.OpsUpdateInvitationPatchResponse, T.OpsUpdateInvitationPatchInput, {}>>;
|
|
232
|
-
/**
|
|
1193
|
+
/**
|
|
1194
|
+
* Performs the upload image operation for the media capability.
|
|
1195
|
+
* Calls `POST /api/v1/media/images` through the shared IDP-aware Faiber client.
|
|
1196
|
+
* @param data Typed multipart form.
|
|
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: lms:course:update.
|
|
1200
|
+
*/
|
|
1201
|
+
mediaUploadImagePost(data: T.MediaUploadImagePostInput, options?: RequestOptions<T.MediaUploadImagePostInput>): Promise<import("axios").AxiosResponse<T.MediaUploadImagePostResponse, FormData, {}>>;
|
|
1202
|
+
/**
|
|
1203
|
+
* Performs the classrooms operation for the report capability.
|
|
1204
|
+
* Calls `GET /api/v1/reports/classrooms` through the shared IDP-aware Faiber client.
|
|
1205
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1206
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1207
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:report:read.
|
|
1208
|
+
*/
|
|
233
1209
|
reportClassroomsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ReportClassroomsGetResponse, unknown, {}>>;
|
|
234
|
-
/**
|
|
1210
|
+
/**
|
|
1211
|
+
* Performs the students operation for the report capability.
|
|
1212
|
+
* Calls `GET /api/v1/reports/students` through the shared IDP-aware Faiber client.
|
|
1213
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1214
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1215
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:report:read.
|
|
1216
|
+
*/
|
|
235
1217
|
reportStudentsGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ReportStudentsGetResponse, unknown, {}>>;
|
|
236
|
-
/**
|
|
1218
|
+
/**
|
|
1219
|
+
* Performs the teachers operation for the report capability.
|
|
1220
|
+
* Calls `GET /api/v1/reports/teachers` through the shared IDP-aware Faiber client.
|
|
1221
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1222
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1223
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:report:read.
|
|
1224
|
+
*/
|
|
237
1225
|
reportTeachersGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ReportTeachersGetResponse, unknown, {}>>;
|
|
238
|
-
/**
|
|
1226
|
+
/**
|
|
1227
|
+
* Performs the check licence operation for the service capability.
|
|
1228
|
+
* Calls `GET /api/v1/service/licence/check` through the shared IDP-aware Faiber client.
|
|
1229
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1230
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1231
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1232
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1233
|
+
*/
|
|
239
1234
|
serviceCheckLicenceGet(params?: T.ServiceCheckLicenceGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.ServiceCheckLicenceGetResponse, unknown, {}>>;
|
|
240
|
-
/**
|
|
1235
|
+
/**
|
|
1236
|
+
* Performs the index support interaction operation for the ops capability.
|
|
1237
|
+
* Calls `GET /api/v1/support-interactions` through the shared IDP-aware Faiber client.
|
|
1238
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1239
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1240
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1241
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:read.
|
|
1242
|
+
*/
|
|
241
1243
|
opsIndexSupportInteractionGet(params?: T.OpsIndexSupportInteractionGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OpsIndexSupportInteractionGetResponse, unknown, {}>>;
|
|
242
|
-
/**
|
|
1244
|
+
/**
|
|
1245
|
+
* Performs the store support interaction operation for the ops capability.
|
|
1246
|
+
* Calls `POST /api/v1/support-interactions` through the shared IDP-aware Faiber client.
|
|
1247
|
+
* @param data Typed JSON request body.
|
|
1248
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1249
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1250
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:create.
|
|
1251
|
+
*/
|
|
243
1252
|
opsStoreSupportInteractionPost(data: T.OpsStoreSupportInteractionPostInput, options?: RequestOptions<T.OpsStoreSupportInteractionPostInput>): Promise<import("axios").AxiosResponse<T.OpsStoreSupportInteractionPostResponse, T.OpsStoreSupportInteractionPostInput, {}>>;
|
|
244
|
-
/**
|
|
1253
|
+
/**
|
|
1254
|
+
* Performs the show support interaction operation for the ops capability.
|
|
1255
|
+
* Calls `GET /api/v1/support-interactions/{id}` through the shared IDP-aware Faiber client.
|
|
1256
|
+
* @param id Backend path identifier `id`.
|
|
1257
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1258
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1259
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:read.
|
|
1260
|
+
*/
|
|
245
1261
|
opsShowSupportInteractionGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OpsShowSupportInteractionGetResponse, unknown, {}>>;
|
|
246
|
-
/**
|
|
1262
|
+
/**
|
|
1263
|
+
* Performs the update support interaction operation for the ops capability.
|
|
1264
|
+
* Calls `PATCH /api/v1/support-interactions/{id}` through the shared IDP-aware Faiber client.
|
|
1265
|
+
* @param id Backend path identifier `id`.
|
|
1266
|
+
* @param data Typed JSON request body.
|
|
1267
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1268
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1269
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:update.
|
|
1270
|
+
*/
|
|
247
1271
|
opsUpdateSupportInteractionPatch(id: Identifier, data: T.OpsUpdateSupportInteractionPatchInput, options?: RequestOptions<T.OpsUpdateSupportInteractionPatchInput>): Promise<import("axios").AxiosResponse<T.OpsUpdateSupportInteractionPatchResponse, T.OpsUpdateSupportInteractionPatchInput, {}>>;
|
|
248
|
-
/**
|
|
1272
|
+
/**
|
|
1273
|
+
* Performs the index worktime operation for the ops capability.
|
|
1274
|
+
* Calls `GET /api/v1/worktime` through the shared IDP-aware Faiber client.
|
|
1275
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1276
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1277
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1278
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:read.
|
|
1279
|
+
*/
|
|
249
1280
|
opsIndexWorktimeGet(params?: T.OpsIndexWorktimeGetQuery, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OpsIndexWorktimeGetResponse, unknown, {}>>;
|
|
250
|
-
/**
|
|
1281
|
+
/**
|
|
1282
|
+
* Performs the store worktime operation for the ops capability.
|
|
1283
|
+
* Calls `POST /api/v1/worktime` through the shared IDP-aware Faiber client.
|
|
1284
|
+
* @param data Typed JSON request body.
|
|
1285
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1286
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1287
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:create.
|
|
1288
|
+
*/
|
|
251
1289
|
opsStoreWorktimePost(data: T.OpsStoreWorktimePostInput, options?: RequestOptions<T.OpsStoreWorktimePostInput>): Promise<import("axios").AxiosResponse<T.OpsStoreWorktimePostResponse, T.OpsStoreWorktimePostInput, {}>>;
|
|
252
|
-
/**
|
|
1290
|
+
/**
|
|
1291
|
+
* Performs the show worktime operation for the ops capability.
|
|
1292
|
+
* Calls `GET /api/v1/worktime/{id}` through the shared IDP-aware Faiber client.
|
|
1293
|
+
* @param id Backend path identifier `id`.
|
|
1294
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1295
|
+
* @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:ops:read.
|
|
1297
|
+
*/
|
|
253
1298
|
opsShowWorktimeGet(id: Identifier, options?: RequestOptions): Promise<import("axios").AxiosResponse<T.OpsShowWorktimeGetResponse, unknown, {}>>;
|
|
254
|
-
/**
|
|
1299
|
+
/**
|
|
1300
|
+
* Performs the update worktime operation for the ops capability.
|
|
1301
|
+
* Calls `PATCH /api/v1/worktime/{id}` through the shared IDP-aware Faiber client.
|
|
1302
|
+
* @param id Backend path identifier `id`.
|
|
1303
|
+
* @param data Typed JSON request body.
|
|
1304
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1305
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1306
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:update.
|
|
1307
|
+
*/
|
|
255
1308
|
opsUpdateWorktimePatch(id: Identifier, data: T.OpsUpdateWorktimePatchInput, options?: RequestOptions<T.OpsUpdateWorktimePatchInput>): Promise<import("axios").AxiosResponse<T.OpsUpdateWorktimePatchResponse, T.OpsUpdateWorktimePatchInput, {}>>;
|
|
256
|
-
/**
|
|
1309
|
+
/**
|
|
1310
|
+
* Performs the status route operation for the router capability.
|
|
1311
|
+
* Calls `GET /health` through the shared IDP-aware Faiber client.
|
|
1312
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1313
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1314
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1315
|
+
*/
|
|
257
1316
|
routerStatusRouteGet(options?: RequestOptions): Promise<import("axios").AxiosResponse<T.RouterStatusRouteGetResponse, unknown, {}>>;
|
|
258
1317
|
}
|
|
259
1318
|
//# sourceMappingURL=operations.d.ts.map
|