@faiber/faiber-lms 0.3.0 → 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 +10 -3
- 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 +1182 -131
- package/dist/operations.d.ts.map +1 -1
- package/dist/operations.js +1204 -131
- package/dist/operations.js.map +1 -1
- package/dist/operations.types.d.ts +574 -523
- 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.js
CHANGED
|
@@ -1,526 +1,1599 @@
|
|
|
1
1
|
import { ServiceApi, urlEncoded } from "@faiber/sdk-core";
|
|
2
2
|
export class LmsOperations extends ServiceApi {
|
|
3
|
-
/**
|
|
3
|
+
/**
|
|
4
|
+
* Performs the openapi json operation for the router capability.
|
|
5
|
+
* Calls `GET /api/openapi.json` through the shared IDP-aware Faiber client.
|
|
6
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
7
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
8
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
9
|
+
*/
|
|
4
10
|
routerOpenapiJsonGet(options) {
|
|
5
11
|
return this.client.request({ ...options, method: "GET", url: `/api/openapi.json` });
|
|
6
12
|
}
|
|
7
|
-
/**
|
|
13
|
+
/**
|
|
14
|
+
* Performs the submit exam operation for the academy capability.
|
|
15
|
+
* Calls `POST /api/v1/academy/attempts/{id}/submit` through the shared IDP-aware Faiber client.
|
|
16
|
+
* @param id Backend path identifier `id`.
|
|
17
|
+
* @param data Typed JSON request body.
|
|
18
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
19
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
20
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
21
|
+
*/
|
|
22
|
+
academySubmitExamPost(id, data, options) {
|
|
23
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/academy/attempts/${encodeURIComponent(id)}/submit`, data: data });
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Performs the categories operation for the academy capability.
|
|
27
|
+
* Calls `GET /api/v1/academy/categories` through the shared IDP-aware Faiber client.
|
|
28
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
29
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
30
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
31
|
+
*/
|
|
32
|
+
academyCategoriesGet(options) {
|
|
33
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/academy/categories` });
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Performs the courses operation for the academy capability.
|
|
37
|
+
* Calls `GET /api/v1/academy/courses` through the shared IDP-aware Faiber client.
|
|
38
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
39
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
40
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
41
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
42
|
+
*/
|
|
43
|
+
academyCoursesGet(params, options) {
|
|
44
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/academy/courses`, params });
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Performs the course operation for the academy capability.
|
|
48
|
+
* Calls `GET /api/v1/academy/courses/{id}` through the shared IDP-aware Faiber client.
|
|
49
|
+
* @param id Backend path identifier `id`.
|
|
50
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
51
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
52
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
53
|
+
*/
|
|
54
|
+
academyCourseGet(id, options) {
|
|
55
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/academy/courses/${encodeURIComponent(id)}` });
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* Performs the enroll operation for the academy capability.
|
|
59
|
+
* Calls `POST /api/v1/academy/courses/{id}/enroll` through the shared IDP-aware Faiber client.
|
|
60
|
+
* @param id Backend path identifier `id`.
|
|
61
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
62
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
63
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
64
|
+
*/
|
|
65
|
+
academyEnrollPost(id, options) {
|
|
66
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/academy/courses/${encodeURIComponent(id)}/enroll` });
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* Performs the my enrollments operation for the academy capability.
|
|
70
|
+
* Calls `GET /api/v1/academy/enrollments` through the shared IDP-aware Faiber client.
|
|
71
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
72
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
73
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
74
|
+
*/
|
|
75
|
+
academyMyEnrollmentsGet(options) {
|
|
76
|
+
return this.client.request({ ...options, method: "GET", url: `/api/v1/academy/enrollments` });
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* Performs the start exam operation for the academy capability.
|
|
80
|
+
* Calls `POST /api/v1/academy/enrollments/{id}/exams/{exam_id}/attempts` through the shared IDP-aware Faiber client.
|
|
81
|
+
* @param id Backend path identifier `id`.
|
|
82
|
+
* @param examId Backend path identifier `exam_id`.
|
|
83
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
84
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
85
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
86
|
+
*/
|
|
87
|
+
academyStartExamPost(id, examId, options) {
|
|
88
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/academy/enrollments/${encodeURIComponent(id)}/exams/${encodeURIComponent(examId)}/attempts` });
|
|
89
|
+
}
|
|
90
|
+
/**
|
|
91
|
+
* Performs the complete session operation for the academy capability.
|
|
92
|
+
* Calls `POST /api/v1/academy/enrollments/{id}/sessions/{session_id}/complete` through the shared IDP-aware Faiber client.
|
|
93
|
+
* @param id Backend path identifier `id`.
|
|
94
|
+
* @param sessionId Backend path identifier `session_id`.
|
|
95
|
+
* @param data Typed JSON request body.
|
|
96
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
97
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
98
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
99
|
+
*/
|
|
100
|
+
academyCompleteSessionPost(id, sessionId, data, options) {
|
|
101
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/academy/enrollments/${encodeURIComponent(id)}/sessions/${encodeURIComponent(sessionId)}/complete`, data: data });
|
|
102
|
+
}
|
|
103
|
+
/**
|
|
104
|
+
* Performs the get self operation for the session capability.
|
|
105
|
+
* Calls `GET /api/v1/auth/self` through the shared IDP-aware Faiber client.
|
|
106
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
107
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
108
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
109
|
+
*/
|
|
8
110
|
sessionGetSelfGet(options) {
|
|
9
111
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/auth/self` });
|
|
10
112
|
}
|
|
11
|
-
/**
|
|
113
|
+
/**
|
|
114
|
+
* Performs the index certificate operation for the certificate capability.
|
|
115
|
+
* Calls `GET /api/v1/certificates` through the shared IDP-aware Faiber client.
|
|
116
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
117
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
118
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
119
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:certificate:read.
|
|
120
|
+
*/
|
|
12
121
|
certificateIndexCertificateGet(params, options) {
|
|
13
122
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/certificates`, params });
|
|
14
123
|
}
|
|
15
|
-
/**
|
|
124
|
+
/**
|
|
125
|
+
* Performs the store certificate operation for the certificate capability.
|
|
126
|
+
* Calls `POST /api/v1/certificates` through the shared IDP-aware Faiber client.
|
|
127
|
+
* @param data Typed JSON request body.
|
|
128
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
129
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
130
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:certificate:create.
|
|
131
|
+
*/
|
|
16
132
|
certificateStoreCertificatePost(data, options) {
|
|
17
133
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/certificates`, data: data });
|
|
18
134
|
}
|
|
19
|
-
/**
|
|
135
|
+
/**
|
|
136
|
+
* Performs the show certificate operation for the certificate capability.
|
|
137
|
+
* Calls `GET /api/v1/certificates/{id}` through the shared IDP-aware Faiber client.
|
|
138
|
+
* @param id Backend path identifier `id`.
|
|
139
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
140
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
141
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:certificate:read.
|
|
142
|
+
*/
|
|
20
143
|
certificateShowCertificateGet(id, options) {
|
|
21
144
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/certificates/${encodeURIComponent(id)}` });
|
|
22
145
|
}
|
|
23
|
-
/**
|
|
146
|
+
/**
|
|
147
|
+
* Performs the update certificate operation for the certificate capability.
|
|
148
|
+
* Calls `PATCH /api/v1/certificates/{id}` through the shared IDP-aware Faiber client.
|
|
149
|
+
* @param id Backend path identifier `id`.
|
|
150
|
+
* @param data Typed JSON request body.
|
|
151
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
152
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
153
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:certificate:update.
|
|
154
|
+
*/
|
|
24
155
|
certificateUpdateCertificatePatch(id, data, options) {
|
|
25
156
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/certificates/${encodeURIComponent(id)}`, data: data });
|
|
26
157
|
}
|
|
27
|
-
/**
|
|
158
|
+
/**
|
|
159
|
+
* Performs the index classroom operation for the classroom capability.
|
|
160
|
+
* Calls `GET /api/v1/classrooms` through the shared IDP-aware Faiber client.
|
|
161
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
162
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
163
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
164
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:read.
|
|
165
|
+
*/
|
|
28
166
|
classroomIndexClassroomGet(params, options) {
|
|
29
167
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/classrooms`, params });
|
|
30
168
|
}
|
|
31
|
-
/**
|
|
169
|
+
/**
|
|
170
|
+
* Performs the store classroom operation for the classroom capability.
|
|
171
|
+
* Calls `POST /api/v1/classrooms` through the shared IDP-aware Faiber client.
|
|
172
|
+
* @param data Typed JSON request body.
|
|
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:create.
|
|
176
|
+
*/
|
|
32
177
|
classroomStoreClassroomPost(data, options) {
|
|
33
178
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/classrooms`, data: data });
|
|
34
179
|
}
|
|
35
|
-
/**
|
|
180
|
+
/**
|
|
181
|
+
* Performs the show classroom operation for the classroom capability.
|
|
182
|
+
* Calls `GET /api/v1/classrooms/{id}` through the shared IDP-aware Faiber client.
|
|
183
|
+
* @param id Backend path identifier `id`.
|
|
184
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
185
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
186
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:read.
|
|
187
|
+
*/
|
|
36
188
|
classroomShowClassroomGet(id, options) {
|
|
37
189
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/classrooms/${encodeURIComponent(id)}` });
|
|
38
190
|
}
|
|
39
|
-
/**
|
|
191
|
+
/**
|
|
192
|
+
* Performs the update classroom operation for the classroom capability.
|
|
193
|
+
* Calls `PATCH /api/v1/classrooms/{id}` through the shared IDP-aware Faiber client.
|
|
194
|
+
* @param id Backend path identifier `id`.
|
|
195
|
+
* @param data Typed JSON request body.
|
|
196
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
197
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
198
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:update.
|
|
199
|
+
*/
|
|
40
200
|
classroomUpdateClassroomPatch(id, data, options) {
|
|
41
201
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/classrooms/${encodeURIComponent(id)}`, data: data });
|
|
42
202
|
}
|
|
43
|
-
/**
|
|
203
|
+
/**
|
|
204
|
+
* Performs the index classroom users operation for the classroom capability.
|
|
205
|
+
* Calls `GET /api/v1/classrooms/{id}/users` through the shared IDP-aware Faiber client.
|
|
206
|
+
* @param id Backend path identifier `id`.
|
|
207
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
208
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
209
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
210
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:read.
|
|
211
|
+
*/
|
|
44
212
|
classroomIndexClassroomUsersGet(id, params, options) {
|
|
45
213
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/classrooms/${encodeURIComponent(id)}/users`, params });
|
|
46
214
|
}
|
|
47
|
-
/**
|
|
215
|
+
/**
|
|
216
|
+
* Performs the enroll classroom user operation for the classroom capability.
|
|
217
|
+
* Calls `POST /api/v1/classrooms/{id}/users` through the shared IDP-aware Faiber client.
|
|
218
|
+
* @param id Backend path identifier `id`.
|
|
219
|
+
* @param data Typed JSON request body.
|
|
220
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
221
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
222
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:create.
|
|
223
|
+
*/
|
|
48
224
|
classroomEnrollClassroomUserPost(id, data, options) {
|
|
49
225
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/classrooms/${encodeURIComponent(id)}/users`, data: data });
|
|
50
226
|
}
|
|
51
|
-
/**
|
|
227
|
+
/**
|
|
228
|
+
* Performs the remove classroom user operation for the classroom capability.
|
|
229
|
+
* Calls `DELETE /api/v1/classrooms/{id}/users/{user_id}` through the shared IDP-aware Faiber client.
|
|
230
|
+
* @param id Backend path identifier `id`.
|
|
231
|
+
* @param userId Backend path identifier `user_id`.
|
|
232
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
233
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
234
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:update.
|
|
235
|
+
*/
|
|
52
236
|
classroomRemoveClassroomUserDelete(id, userId, options) {
|
|
53
237
|
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/classrooms/${encodeURIComponent(id)}/users/${encodeURIComponent(userId)}` });
|
|
54
238
|
}
|
|
55
|
-
/**
|
|
239
|
+
/**
|
|
240
|
+
* Performs the update classroom user operation for the classroom capability.
|
|
241
|
+
* Calls `PATCH /api/v1/classrooms/{id}/users/{user_id}` through the shared IDP-aware Faiber client.
|
|
242
|
+
* @param id Backend path identifier `id`.
|
|
243
|
+
* @param userId Backend path identifier `user_id`.
|
|
244
|
+
* @param data Typed JSON request body.
|
|
245
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
246
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
247
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:update.
|
|
248
|
+
*/
|
|
56
249
|
classroomUpdateClassroomUserPatch(id, userId, data, options) {
|
|
57
250
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/classrooms/${encodeURIComponent(id)}/users/${encodeURIComponent(userId)}`, data: data });
|
|
58
251
|
}
|
|
59
|
-
/**
|
|
252
|
+
/**
|
|
253
|
+
* Performs the index session operation for the classroom capability.
|
|
254
|
+
* Calls `GET /api/v1/classrooms/sessions` through the shared IDP-aware Faiber client.
|
|
255
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
256
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
257
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
258
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:read.
|
|
259
|
+
*/
|
|
60
260
|
classroomIndexSessionGet(params, options) {
|
|
61
261
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/classrooms/sessions`, params });
|
|
62
262
|
}
|
|
63
|
-
/**
|
|
263
|
+
/**
|
|
264
|
+
* Performs the store session operation for the classroom capability.
|
|
265
|
+
* Calls `POST /api/v1/classrooms/sessions` through the shared IDP-aware Faiber client.
|
|
266
|
+
* @param data Typed JSON request body.
|
|
267
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
268
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
269
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:create.
|
|
270
|
+
*/
|
|
64
271
|
classroomStoreSessionPost(data, options) {
|
|
65
272
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/classrooms/sessions`, data: data });
|
|
66
273
|
}
|
|
67
|
-
/**
|
|
274
|
+
/**
|
|
275
|
+
* Performs the show session operation for the classroom capability.
|
|
276
|
+
* Calls `GET /api/v1/classrooms/sessions/{id}` through the shared IDP-aware Faiber client.
|
|
277
|
+
* @param id Backend path identifier `id`.
|
|
278
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
279
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
280
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:read.
|
|
281
|
+
*/
|
|
68
282
|
classroomShowSessionGet(id, options) {
|
|
69
283
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/classrooms/sessions/${encodeURIComponent(id)}` });
|
|
70
284
|
}
|
|
71
|
-
/**
|
|
285
|
+
/**
|
|
286
|
+
* Performs the update session operation for the classroom capability.
|
|
287
|
+
* Calls `PATCH /api/v1/classrooms/sessions/{id}` through the shared IDP-aware Faiber client.
|
|
288
|
+
* @param id Backend path identifier `id`.
|
|
289
|
+
* @param data Typed JSON request body.
|
|
290
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
291
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
292
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:update.
|
|
293
|
+
*/
|
|
72
294
|
classroomUpdateSessionPatch(id, data, options) {
|
|
73
295
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/classrooms/sessions/${encodeURIComponent(id)}`, data: data });
|
|
74
296
|
}
|
|
75
|
-
/**
|
|
297
|
+
/**
|
|
298
|
+
* Performs the index absences operation for the classroom capability.
|
|
299
|
+
* Calls `GET /api/v1/classrooms/users/sessions/absences` through the shared IDP-aware Faiber client.
|
|
300
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
301
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
302
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
303
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:classroom:read.
|
|
304
|
+
*/
|
|
76
305
|
classroomIndexAbsencesGet(params, options) {
|
|
77
306
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/classrooms/users/sessions/absences`, params });
|
|
78
307
|
}
|
|
79
|
-
/**
|
|
308
|
+
/**
|
|
309
|
+
* Performs the index club project operation for the ops capability.
|
|
310
|
+
* Calls `GET /api/v1/club/projects` through the shared IDP-aware Faiber client.
|
|
311
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
312
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
313
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
314
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:read.
|
|
315
|
+
*/
|
|
80
316
|
opsIndexClubProjectGet(params, options) {
|
|
81
317
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/club/projects`, params });
|
|
82
318
|
}
|
|
83
|
-
/**
|
|
319
|
+
/**
|
|
320
|
+
* Performs the store club project operation for the ops capability.
|
|
321
|
+
* Calls `POST /api/v1/club/projects` through the shared IDP-aware Faiber client.
|
|
322
|
+
* @param data Typed JSON request body.
|
|
323
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
324
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
325
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:create.
|
|
326
|
+
*/
|
|
84
327
|
opsStoreClubProjectPost(data, options) {
|
|
85
328
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/club/projects`, data: data });
|
|
86
329
|
}
|
|
87
|
-
/**
|
|
330
|
+
/**
|
|
331
|
+
* Performs the show club project operation for the ops capability.
|
|
332
|
+
* Calls `GET /api/v1/club/projects/{id}` through the shared IDP-aware Faiber client.
|
|
333
|
+
* @param id Backend path identifier `id`.
|
|
334
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
335
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
336
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:read.
|
|
337
|
+
*/
|
|
88
338
|
opsShowClubProjectGet(id, options) {
|
|
89
339
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/club/projects/${encodeURIComponent(id)}` });
|
|
90
340
|
}
|
|
91
|
-
/**
|
|
341
|
+
/**
|
|
342
|
+
* Performs the update club project operation for the ops capability.
|
|
343
|
+
* Calls `PATCH /api/v1/club/projects/{id}` through the shared IDP-aware Faiber client.
|
|
344
|
+
* @param id Backend path identifier `id`.
|
|
345
|
+
* @param data Typed JSON request body.
|
|
346
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
347
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
348
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:update.
|
|
349
|
+
*/
|
|
92
350
|
opsUpdateClubProjectPatch(id, data, options) {
|
|
93
351
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/club/projects/${encodeURIComponent(id)}`, data: data });
|
|
94
352
|
}
|
|
95
|
-
/**
|
|
353
|
+
/**
|
|
354
|
+
* Performs the index classroom type operation for the config capability.
|
|
355
|
+
* Calls `GET /api/v1/config/classroom-types` through the shared IDP-aware Faiber client.
|
|
356
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
357
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
358
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
359
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:read.
|
|
360
|
+
*/
|
|
96
361
|
configIndexClassroomTypeGet(params, options) {
|
|
97
362
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/config/classroom-types`, params });
|
|
98
363
|
}
|
|
99
|
-
/**
|
|
364
|
+
/**
|
|
365
|
+
* Performs the store classroom type operation for the config capability.
|
|
366
|
+
* Calls `POST /api/v1/config/classroom-types` through the shared IDP-aware Faiber client.
|
|
367
|
+
* @param data Typed JSON request body.
|
|
368
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
369
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
370
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:create.
|
|
371
|
+
*/
|
|
100
372
|
configStoreClassroomTypePost(data, options) {
|
|
101
373
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/config/classroom-types`, data: data });
|
|
102
374
|
}
|
|
103
|
-
/**
|
|
375
|
+
/**
|
|
376
|
+
* Performs the show classroom type operation for the config capability.
|
|
377
|
+
* Calls `GET /api/v1/config/classroom-types/{id}` through the shared IDP-aware Faiber client.
|
|
378
|
+
* @param id Backend path identifier `id`.
|
|
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:read.
|
|
382
|
+
*/
|
|
104
383
|
configShowClassroomTypeGet(id, options) {
|
|
105
384
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/config/classroom-types/${encodeURIComponent(id)}` });
|
|
106
385
|
}
|
|
107
|
-
/**
|
|
386
|
+
/**
|
|
387
|
+
* Performs the update classroom type operation for the config capability.
|
|
388
|
+
* Calls `PATCH /api/v1/config/classroom-types/{id}` through the shared IDP-aware Faiber client.
|
|
389
|
+
* @param id Backend path identifier `id`.
|
|
390
|
+
* @param data Typed JSON request body.
|
|
391
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
392
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
393
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:update.
|
|
394
|
+
*/
|
|
108
395
|
configUpdateClassroomTypePatch(id, data, options) {
|
|
109
396
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/config/classroom-types/${encodeURIComponent(id)}`, data: data });
|
|
110
397
|
}
|
|
111
|
-
/**
|
|
398
|
+
/**
|
|
399
|
+
* Performs the index education day operation for the config capability.
|
|
400
|
+
* Calls `GET /api/v1/config/education-days` through the shared IDP-aware Faiber client.
|
|
401
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
402
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
403
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
404
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:read.
|
|
405
|
+
*/
|
|
112
406
|
configIndexEducationDayGet(params, options) {
|
|
113
407
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/config/education-days`, params });
|
|
114
408
|
}
|
|
115
|
-
/**
|
|
409
|
+
/**
|
|
410
|
+
* Performs the store education day operation for the config capability.
|
|
411
|
+
* Calls `POST /api/v1/config/education-days` through the shared IDP-aware Faiber client.
|
|
412
|
+
* @param data Typed JSON request body.
|
|
413
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
414
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
415
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:create.
|
|
416
|
+
*/
|
|
116
417
|
configStoreEducationDayPost(data, options) {
|
|
117
418
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/config/education-days`, data: data });
|
|
118
419
|
}
|
|
119
|
-
/**
|
|
420
|
+
/**
|
|
421
|
+
* Performs the show education day operation for the config capability.
|
|
422
|
+
* Calls `GET /api/v1/config/education-days/{id}` through the shared IDP-aware Faiber client.
|
|
423
|
+
* @param id Backend path identifier `id`.
|
|
424
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
425
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
426
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:read.
|
|
427
|
+
*/
|
|
120
428
|
configShowEducationDayGet(id, options) {
|
|
121
429
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/config/education-days/${encodeURIComponent(id)}` });
|
|
122
430
|
}
|
|
123
|
-
/**
|
|
431
|
+
/**
|
|
432
|
+
* Performs the update education day operation for the config capability.
|
|
433
|
+
* Calls `PATCH /api/v1/config/education-days/{id}` through the shared IDP-aware Faiber client.
|
|
434
|
+
* @param id Backend path identifier `id`.
|
|
435
|
+
* @param data Typed JSON request body.
|
|
436
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
437
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
438
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:update.
|
|
439
|
+
*/
|
|
124
440
|
configUpdateEducationDayPatch(id, data, options) {
|
|
125
441
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/config/education-days/${encodeURIComponent(id)}`, data: data });
|
|
126
442
|
}
|
|
127
|
-
/**
|
|
443
|
+
/**
|
|
444
|
+
* Performs the index grade operation for the config capability.
|
|
445
|
+
* Calls `GET /api/v1/config/grades` through the shared IDP-aware Faiber client.
|
|
446
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
447
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
448
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
449
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:read.
|
|
450
|
+
*/
|
|
128
451
|
configIndexGradeGet(params, options) {
|
|
129
452
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/config/grades`, params });
|
|
130
453
|
}
|
|
131
|
-
/**
|
|
454
|
+
/**
|
|
455
|
+
* Performs the store grade operation for the config capability.
|
|
456
|
+
* Calls `POST /api/v1/config/grades` through the shared IDP-aware Faiber client.
|
|
457
|
+
* @param data Typed JSON request body.
|
|
458
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
459
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
460
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:create.
|
|
461
|
+
*/
|
|
132
462
|
configStoreGradePost(data, options) {
|
|
133
463
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/config/grades`, data: data });
|
|
134
464
|
}
|
|
135
|
-
/**
|
|
465
|
+
/**
|
|
466
|
+
* Performs the show grade operation for the config capability.
|
|
467
|
+
* Calls `GET /api/v1/config/grades/{id}` through the shared IDP-aware Faiber client.
|
|
468
|
+
* @param id Backend path identifier `id`.
|
|
469
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
470
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
471
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:read.
|
|
472
|
+
*/
|
|
136
473
|
configShowGradeGet(id, options) {
|
|
137
474
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/config/grades/${encodeURIComponent(id)}` });
|
|
138
475
|
}
|
|
139
|
-
/**
|
|
476
|
+
/**
|
|
477
|
+
* Performs the update grade operation for the config capability.
|
|
478
|
+
* Calls `PATCH /api/v1/config/grades/{id}` through the shared IDP-aware Faiber client.
|
|
479
|
+
* @param id Backend path identifier `id`.
|
|
480
|
+
* @param data Typed JSON request body.
|
|
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:config:update.
|
|
484
|
+
*/
|
|
140
485
|
configUpdateGradePatch(id, data, options) {
|
|
141
486
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/config/grades/${encodeURIComponent(id)}`, data: data });
|
|
142
487
|
}
|
|
143
|
-
/**
|
|
488
|
+
/**
|
|
489
|
+
* Performs the index text template operation for the config capability.
|
|
490
|
+
* Calls `GET /api/v1/config/text-templates` through the shared IDP-aware Faiber client.
|
|
491
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
492
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
493
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
494
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:read.
|
|
495
|
+
*/
|
|
144
496
|
configIndexTextTemplateGet(params, options) {
|
|
145
497
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/config/text-templates`, params });
|
|
146
498
|
}
|
|
147
|
-
/**
|
|
499
|
+
/**
|
|
500
|
+
* Performs the store text template operation for the config capability.
|
|
501
|
+
* Calls `POST /api/v1/config/text-templates` through the shared IDP-aware Faiber client.
|
|
502
|
+
* @param data Typed JSON request body.
|
|
503
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
504
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
505
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:create.
|
|
506
|
+
*/
|
|
148
507
|
configStoreTextTemplatePost(data, options) {
|
|
149
508
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/config/text-templates`, data: data });
|
|
150
509
|
}
|
|
151
|
-
/**
|
|
510
|
+
/**
|
|
511
|
+
* Performs the show text template operation for the config capability.
|
|
512
|
+
* Calls `GET /api/v1/config/text-templates/{id}` through the shared IDP-aware Faiber client.
|
|
513
|
+
* @param id Backend path identifier `id`.
|
|
514
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
515
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
516
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:read.
|
|
517
|
+
*/
|
|
152
518
|
configShowTextTemplateGet(id, options) {
|
|
153
519
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/config/text-templates/${encodeURIComponent(id)}` });
|
|
154
520
|
}
|
|
155
|
-
/**
|
|
521
|
+
/**
|
|
522
|
+
* Performs the update text template operation for the config capability.
|
|
523
|
+
* Calls `PATCH /api/v1/config/text-templates/{id}` through the shared IDP-aware Faiber client.
|
|
524
|
+
* @param id Backend path identifier `id`.
|
|
525
|
+
* @param data Typed JSON request body.
|
|
526
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
527
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
528
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:update.
|
|
529
|
+
*/
|
|
156
530
|
configUpdateTextTemplatePatch(id, data, options) {
|
|
157
531
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/config/text-templates/${encodeURIComponent(id)}`, data: data });
|
|
158
532
|
}
|
|
159
|
-
/**
|
|
533
|
+
/**
|
|
534
|
+
* Performs the index weekend operation for the config capability.
|
|
535
|
+
* Calls `GET /api/v1/config/weekends` through the shared IDP-aware Faiber client.
|
|
536
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
537
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
538
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
539
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:read.
|
|
540
|
+
*/
|
|
160
541
|
configIndexWeekendGet(params, options) {
|
|
161
542
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/config/weekends`, params });
|
|
162
543
|
}
|
|
163
|
-
/**
|
|
544
|
+
/**
|
|
545
|
+
* Performs the store weekend operation for the config capability.
|
|
546
|
+
* Calls `POST /api/v1/config/weekends` through the shared IDP-aware Faiber client.
|
|
547
|
+
* @param data Typed JSON request body.
|
|
548
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
549
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
550
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:create.
|
|
551
|
+
*/
|
|
164
552
|
configStoreWeekendPost(data, options) {
|
|
165
553
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/config/weekends`, data: data });
|
|
166
554
|
}
|
|
167
|
-
/**
|
|
555
|
+
/**
|
|
556
|
+
* Performs the show weekend operation for the config capability.
|
|
557
|
+
* Calls `GET /api/v1/config/weekends/{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:config:read.
|
|
562
|
+
*/
|
|
168
563
|
configShowWeekendGet(id, options) {
|
|
169
564
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/config/weekends/${encodeURIComponent(id)}` });
|
|
170
565
|
}
|
|
171
|
-
/**
|
|
566
|
+
/**
|
|
567
|
+
* Performs the update weekend operation for the config capability.
|
|
568
|
+
* Calls `PATCH /api/v1/config/weekends/{id}` through the shared IDP-aware Faiber client.
|
|
569
|
+
* @param id Backend path identifier `id`.
|
|
570
|
+
* @param data Typed JSON request body.
|
|
571
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
572
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
573
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:config:update.
|
|
574
|
+
*/
|
|
172
575
|
configUpdateWeekendPatch(id, data, options) {
|
|
173
576
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/config/weekends/${encodeURIComponent(id)}`, data: data });
|
|
174
577
|
}
|
|
175
|
-
/**
|
|
578
|
+
/**
|
|
579
|
+
* Performs the index course operation for the course capability.
|
|
580
|
+
* Calls `GET /api/v1/courses` through the shared IDP-aware Faiber client.
|
|
581
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
582
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
583
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
584
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:read.
|
|
585
|
+
*/
|
|
176
586
|
courseIndexCourseGet(params, options) {
|
|
177
587
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/courses`, params });
|
|
178
588
|
}
|
|
179
|
-
/**
|
|
589
|
+
/**
|
|
590
|
+
* Performs the store course operation for the course capability.
|
|
591
|
+
* Calls `POST /api/v1/courses` through the shared IDP-aware Faiber client.
|
|
592
|
+
* @param data Typed JSON request body.
|
|
593
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
594
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
595
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:create.
|
|
596
|
+
*/
|
|
180
597
|
courseStoreCoursePost(data, options) {
|
|
181
598
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/courses`, data: data });
|
|
182
599
|
}
|
|
183
|
-
/**
|
|
600
|
+
/**
|
|
601
|
+
* Performs the index session operation for the course capability.
|
|
602
|
+
* Calls `GET /api/v1/courses/{course_id}/sessions` through the shared IDP-aware Faiber client.
|
|
603
|
+
* @param courseId Backend path identifier `course_id`.
|
|
604
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
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
|
+
*/
|
|
184
609
|
courseIndexSessionGet(courseId, params, options) {
|
|
185
610
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/courses/${encodeURIComponent(courseId)}/sessions`, params });
|
|
186
611
|
}
|
|
187
|
-
/**
|
|
612
|
+
/**
|
|
613
|
+
* Performs the store session operation for the course capability.
|
|
614
|
+
* Calls `POST /api/v1/courses/{course_id}/sessions` through the shared IDP-aware Faiber client.
|
|
615
|
+
* @param courseId Backend path identifier `course_id`.
|
|
616
|
+
* @param data Typed JSON request body.
|
|
617
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
618
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
619
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:create.
|
|
620
|
+
*/
|
|
188
621
|
courseStoreSessionPost(courseId, data, options) {
|
|
189
622
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/courses/${encodeURIComponent(courseId)}/sessions`, data: data });
|
|
190
623
|
}
|
|
191
|
-
/**
|
|
624
|
+
/**
|
|
625
|
+
* Performs the destroy session operation for the course capability.
|
|
626
|
+
* Calls `DELETE /api/v1/courses/{course_id}/sessions/{id}` through the shared IDP-aware Faiber client.
|
|
627
|
+
* @param courseId Backend path identifier `course_id`.
|
|
628
|
+
* @param id Backend path identifier `id`.
|
|
629
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
630
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
631
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:delete.
|
|
632
|
+
*/
|
|
192
633
|
courseDestroySessionDelete(courseId, id, options) {
|
|
193
634
|
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/courses/${encodeURIComponent(courseId)}/sessions/${encodeURIComponent(id)}` });
|
|
194
635
|
}
|
|
195
|
-
/**
|
|
636
|
+
/**
|
|
637
|
+
* Performs the show session operation for the course capability.
|
|
638
|
+
* Calls `GET /api/v1/courses/{course_id}/sessions/{id}` through the shared IDP-aware Faiber client.
|
|
639
|
+
* @param courseId Backend path identifier `course_id`.
|
|
640
|
+
* @param id Backend path identifier `id`.
|
|
641
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
642
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
643
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:read.
|
|
644
|
+
*/
|
|
196
645
|
courseShowSessionGet(courseId, id, options) {
|
|
197
646
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/courses/${encodeURIComponent(courseId)}/sessions/${encodeURIComponent(id)}` });
|
|
198
647
|
}
|
|
199
|
-
/**
|
|
648
|
+
/**
|
|
649
|
+
* Performs the update session operation for the course capability.
|
|
650
|
+
* Calls `PATCH /api/v1/courses/{course_id}/sessions/{id}` through the shared IDP-aware Faiber client.
|
|
651
|
+
* @param courseId Backend path identifier `course_id`.
|
|
652
|
+
* @param id Backend path identifier `id`.
|
|
653
|
+
* @param data Typed JSON request body.
|
|
654
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
655
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
656
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:update.
|
|
657
|
+
*/
|
|
200
658
|
courseUpdateSessionPatch(courseId, id, data, options) {
|
|
201
659
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/courses/${encodeURIComponent(courseId)}/sessions/${encodeURIComponent(id)}`, data: data });
|
|
202
660
|
}
|
|
203
|
-
/**
|
|
661
|
+
/**
|
|
662
|
+
* Performs the destroy course operation for the course capability.
|
|
663
|
+
* Calls `DELETE /api/v1/courses/{id}` through the shared IDP-aware Faiber client.
|
|
664
|
+
* @param id Backend path identifier `id`.
|
|
665
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
666
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
667
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:delete.
|
|
668
|
+
*/
|
|
204
669
|
courseDestroyCourseDelete(id, options) {
|
|
205
670
|
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/courses/${encodeURIComponent(id)}` });
|
|
206
671
|
}
|
|
207
|
-
/**
|
|
672
|
+
/**
|
|
673
|
+
* Performs the show course operation for the course capability.
|
|
674
|
+
* Calls `GET /api/v1/courses/{id}` through the shared IDP-aware Faiber client.
|
|
675
|
+
* @param id Backend path identifier `id`.
|
|
676
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
677
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
678
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:read.
|
|
679
|
+
*/
|
|
208
680
|
courseShowCourseGet(id, options) {
|
|
209
681
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/courses/${encodeURIComponent(id)}` });
|
|
210
682
|
}
|
|
211
|
-
/**
|
|
683
|
+
/**
|
|
684
|
+
* Performs the update course operation for the course capability.
|
|
685
|
+
* Calls `PATCH /api/v1/courses/{id}` through the shared IDP-aware Faiber client.
|
|
686
|
+
* @param id Backend path identifier `id`.
|
|
687
|
+
* @param data Typed JSON request body.
|
|
688
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
689
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
690
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:update.
|
|
691
|
+
*/
|
|
212
692
|
courseUpdateCoursePatch(id, data, options) {
|
|
213
693
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/courses/${encodeURIComponent(id)}`, data: data });
|
|
214
694
|
}
|
|
215
|
-
/**
|
|
695
|
+
/**
|
|
696
|
+
* Performs the index category operation for the course capability.
|
|
697
|
+
* Calls `GET /api/v1/courses/categories` through the shared IDP-aware Faiber client.
|
|
698
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
699
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
700
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
701
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:read.
|
|
702
|
+
*/
|
|
216
703
|
courseIndexCategoryGet(params, options) {
|
|
217
704
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/courses/categories`, params });
|
|
218
705
|
}
|
|
219
|
-
/**
|
|
706
|
+
/**
|
|
707
|
+
* Performs the store category operation for the course capability.
|
|
708
|
+
* Calls `POST /api/v1/courses/categories` through the shared IDP-aware Faiber client.
|
|
709
|
+
* @param data Typed JSON request body.
|
|
710
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
711
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
712
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:create.
|
|
713
|
+
*/
|
|
220
714
|
courseStoreCategoryPost(data, options) {
|
|
221
715
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/courses/categories`, data: data });
|
|
222
716
|
}
|
|
223
|
-
/**
|
|
717
|
+
/**
|
|
718
|
+
* Performs the destroy category operation for the course capability.
|
|
719
|
+
* Calls `DELETE /api/v1/courses/categories/{id}` through the shared IDP-aware Faiber client.
|
|
720
|
+
* @param id Backend path identifier `id`.
|
|
721
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
722
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
723
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:delete.
|
|
724
|
+
*/
|
|
224
725
|
courseDestroyCategoryDelete(id, options) {
|
|
225
726
|
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/courses/categories/${encodeURIComponent(id)}` });
|
|
226
727
|
}
|
|
227
|
-
/**
|
|
728
|
+
/**
|
|
729
|
+
* Performs the show category operation for the course capability.
|
|
730
|
+
* Calls `GET /api/v1/courses/categories/{id}` through the shared IDP-aware Faiber client.
|
|
731
|
+
* @param id Backend path identifier `id`.
|
|
732
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
733
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
734
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:read.
|
|
735
|
+
*/
|
|
228
736
|
courseShowCategoryGet(id, options) {
|
|
229
737
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/courses/categories/${encodeURIComponent(id)}` });
|
|
230
738
|
}
|
|
231
|
-
/**
|
|
739
|
+
/**
|
|
740
|
+
* Performs the update category operation for the course capability.
|
|
741
|
+
* Calls `PATCH /api/v1/courses/categories/{id}` through the shared IDP-aware Faiber client.
|
|
742
|
+
* @param id Backend path identifier `id`.
|
|
743
|
+
* @param data Typed JSON request body.
|
|
744
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
745
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
746
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:update.
|
|
747
|
+
*/
|
|
232
748
|
courseUpdateCategoryPatch(id, data, options) {
|
|
233
749
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/courses/categories/${encodeURIComponent(id)}`, data: data });
|
|
234
750
|
}
|
|
235
|
-
/**
|
|
751
|
+
/**
|
|
752
|
+
* Performs the index video section operation for the course capability.
|
|
753
|
+
* Calls `GET /api/v1/courses/video-sections` through the shared IDP-aware Faiber client.
|
|
754
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
755
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
756
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
757
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:read.
|
|
758
|
+
*/
|
|
236
759
|
courseIndexVideoSectionGet(params, options) {
|
|
237
760
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/courses/video-sections`, params });
|
|
238
761
|
}
|
|
239
|
-
/**
|
|
762
|
+
/**
|
|
763
|
+
* Performs the store video section operation for the course capability.
|
|
764
|
+
* Calls `POST /api/v1/courses/video-sections` through the shared IDP-aware Faiber client.
|
|
765
|
+
* @param data Typed JSON request body.
|
|
766
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
767
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
768
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:create.
|
|
769
|
+
*/
|
|
240
770
|
courseStoreVideoSectionPost(data, options) {
|
|
241
771
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/courses/video-sections`, data: data });
|
|
242
772
|
}
|
|
243
|
-
/**
|
|
773
|
+
/**
|
|
774
|
+
* Performs the destroy video section operation for the course capability.
|
|
775
|
+
* Calls `DELETE /api/v1/courses/video-sections/{id}` through the shared IDP-aware Faiber client.
|
|
776
|
+
* @param id Backend path identifier `id`.
|
|
777
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
778
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
779
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:delete.
|
|
780
|
+
*/
|
|
244
781
|
courseDestroyVideoSectionDelete(id, options) {
|
|
245
782
|
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/courses/video-sections/${encodeURIComponent(id)}` });
|
|
246
783
|
}
|
|
247
|
-
/**
|
|
784
|
+
/**
|
|
785
|
+
* Performs the show video section operation for the course capability.
|
|
786
|
+
* Calls `GET /api/v1/courses/video-sections/{id}` through the shared IDP-aware Faiber client.
|
|
787
|
+
* @param id Backend path identifier `id`.
|
|
788
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
789
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
790
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:read.
|
|
791
|
+
*/
|
|
248
792
|
courseShowVideoSectionGet(id, options) {
|
|
249
793
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/courses/video-sections/${encodeURIComponent(id)}` });
|
|
250
794
|
}
|
|
251
|
-
/**
|
|
795
|
+
/**
|
|
796
|
+
* Performs the update video section operation for the course capability.
|
|
797
|
+
* Calls `PATCH /api/v1/courses/video-sections/{id}` through the shared IDP-aware Faiber client.
|
|
798
|
+
* @param id Backend path identifier `id`.
|
|
799
|
+
* @param data Typed JSON request body.
|
|
800
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
801
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
802
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:update.
|
|
803
|
+
*/
|
|
252
804
|
courseUpdateVideoSectionPatch(id, data, options) {
|
|
253
805
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/courses/video-sections/${encodeURIComponent(id)}`, data: data });
|
|
254
806
|
}
|
|
255
|
-
/**
|
|
807
|
+
/**
|
|
808
|
+
* Performs the index operation for the dashboard capability.
|
|
809
|
+
* Calls `GET /api/v1/dashboard` through the shared IDP-aware Faiber client.
|
|
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:dashboard:read.
|
|
813
|
+
*/
|
|
256
814
|
dashboardIndexGet(options) {
|
|
257
815
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/dashboard` });
|
|
258
816
|
}
|
|
259
|
-
/**
|
|
817
|
+
/**
|
|
818
|
+
* Performs the integration operation for the docs capability.
|
|
819
|
+
* Calls `GET /api/v1/docs/integration` through the shared IDP-aware Faiber client.
|
|
820
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
821
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
822
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:docs:read.
|
|
823
|
+
*/
|
|
260
824
|
docsIntegrationGet(options) {
|
|
261
825
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/docs/integration` });
|
|
262
826
|
}
|
|
263
|
-
/**
|
|
827
|
+
/**
|
|
828
|
+
* Performs the index event operation for the event capability.
|
|
829
|
+
* Calls `GET /api/v1/events` through the shared IDP-aware Faiber client.
|
|
830
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
831
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
832
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
833
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:read.
|
|
834
|
+
*/
|
|
264
835
|
eventIndexEventGet(params, options) {
|
|
265
836
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/events`, params });
|
|
266
837
|
}
|
|
267
|
-
/**
|
|
838
|
+
/**
|
|
839
|
+
* Performs the store event operation for the event capability.
|
|
840
|
+
* Calls `POST /api/v1/events` through the shared IDP-aware Faiber client.
|
|
841
|
+
* @param data Typed JSON request body.
|
|
842
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
843
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
844
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:create.
|
|
845
|
+
*/
|
|
268
846
|
eventStoreEventPost(data, options) {
|
|
269
847
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/events`, data: data });
|
|
270
848
|
}
|
|
271
|
-
/**
|
|
849
|
+
/**
|
|
850
|
+
* Performs the index user operation for the event capability.
|
|
851
|
+
* Calls `GET /api/v1/events/{event_id}/users` through the shared IDP-aware Faiber client.
|
|
852
|
+
* @param eventId Backend path identifier `event_id`.
|
|
853
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
854
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
855
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
856
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:read.
|
|
857
|
+
*/
|
|
272
858
|
eventIndexUserGet(eventId, params, options) {
|
|
273
859
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/events/${encodeURIComponent(eventId)}/users`, params });
|
|
274
860
|
}
|
|
275
|
-
/**
|
|
861
|
+
/**
|
|
862
|
+
* Performs the store user operation for the event capability.
|
|
863
|
+
* Calls `POST /api/v1/events/{event_id}/users` through the shared IDP-aware Faiber client.
|
|
864
|
+
* @param eventId Backend path identifier `event_id`.
|
|
865
|
+
* @param data Typed JSON request body.
|
|
866
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
867
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
868
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:create.
|
|
869
|
+
*/
|
|
276
870
|
eventStoreUserPost(eventId, data, options) {
|
|
277
871
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/events/${encodeURIComponent(eventId)}/users`, data: data });
|
|
278
872
|
}
|
|
279
|
-
/**
|
|
873
|
+
/**
|
|
874
|
+
* Performs the show user operation for the event capability.
|
|
875
|
+
* Calls `GET /api/v1/events/{event_id}/users/{id}` through the shared IDP-aware Faiber client.
|
|
876
|
+
* @param eventId Backend path identifier `event_id`.
|
|
877
|
+
* @param id Backend path identifier `id`.
|
|
878
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
879
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
880
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:read.
|
|
881
|
+
*/
|
|
280
882
|
eventShowUserGet(eventId, id, options) {
|
|
281
883
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/events/${encodeURIComponent(eventId)}/users/${encodeURIComponent(id)}` });
|
|
282
884
|
}
|
|
283
|
-
/**
|
|
885
|
+
/**
|
|
886
|
+
* Performs the update user operation for the event capability.
|
|
887
|
+
* Calls `PATCH /api/v1/events/{event_id}/users/{id}` through the shared IDP-aware Faiber client.
|
|
888
|
+
* @param eventId Backend path identifier `event_id`.
|
|
889
|
+
* @param id Backend path identifier `id`.
|
|
890
|
+
* @param data Typed JSON request body.
|
|
891
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
892
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
893
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:update.
|
|
894
|
+
*/
|
|
284
895
|
eventUpdateUserPatch(eventId, id, data, options) {
|
|
285
896
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/events/${encodeURIComponent(eventId)}/users/${encodeURIComponent(id)}`, data: data });
|
|
286
897
|
}
|
|
287
|
-
/**
|
|
898
|
+
/**
|
|
899
|
+
* Performs the show event operation for the event capability.
|
|
900
|
+
* Calls `GET /api/v1/events/{id}` through the shared IDP-aware Faiber client.
|
|
901
|
+
* @param id Backend path identifier `id`.
|
|
902
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
903
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
904
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:read.
|
|
905
|
+
*/
|
|
288
906
|
eventShowEventGet(id, options) {
|
|
289
907
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/events/${encodeURIComponent(id)}` });
|
|
290
908
|
}
|
|
291
|
-
/**
|
|
909
|
+
/**
|
|
910
|
+
* Performs the update event operation for the event capability.
|
|
911
|
+
* Calls `PATCH /api/v1/events/{id}` through the shared IDP-aware Faiber client.
|
|
912
|
+
* @param id Backend path identifier `id`.
|
|
913
|
+
* @param data Typed JSON request body.
|
|
914
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
915
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
916
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:update.
|
|
917
|
+
*/
|
|
292
918
|
eventUpdateEventPatch(id, data, options) {
|
|
293
919
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/events/${encodeURIComponent(id)}`, data: data });
|
|
294
920
|
}
|
|
295
|
-
/**
|
|
921
|
+
/**
|
|
922
|
+
* Performs the index session operation for the event capability.
|
|
923
|
+
* Calls `GET /api/v1/events/sessions` through the shared IDP-aware Faiber client.
|
|
924
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
925
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
926
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
927
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:read.
|
|
928
|
+
*/
|
|
296
929
|
eventIndexSessionGet(params, options) {
|
|
297
930
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/events/sessions`, params });
|
|
298
931
|
}
|
|
299
|
-
/**
|
|
932
|
+
/**
|
|
933
|
+
* Performs the store session operation for the event capability.
|
|
934
|
+
* Calls `POST /api/v1/events/sessions` through the shared IDP-aware Faiber client.
|
|
935
|
+
* @param data Typed JSON request body.
|
|
936
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
937
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
938
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:create.
|
|
939
|
+
*/
|
|
300
940
|
eventStoreSessionPost(data, options) {
|
|
301
941
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/events/sessions`, data: data });
|
|
302
942
|
}
|
|
303
|
-
/**
|
|
943
|
+
/**
|
|
944
|
+
* Performs the show session operation for the event capability.
|
|
945
|
+
* Calls `GET /api/v1/events/sessions/{id}` through the shared IDP-aware Faiber client.
|
|
946
|
+
* @param id Backend path identifier `id`.
|
|
947
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
948
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
949
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:read.
|
|
950
|
+
*/
|
|
304
951
|
eventShowSessionGet(id, options) {
|
|
305
952
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/events/sessions/${encodeURIComponent(id)}` });
|
|
306
953
|
}
|
|
307
|
-
/**
|
|
954
|
+
/**
|
|
955
|
+
* Performs the update session operation for the event capability.
|
|
956
|
+
* Calls `PATCH /api/v1/events/sessions/{id}` through the shared IDP-aware Faiber client.
|
|
957
|
+
* @param id Backend path identifier `id`.
|
|
958
|
+
* @param data Typed JSON request body.
|
|
959
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
960
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
961
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:event:update.
|
|
962
|
+
*/
|
|
308
963
|
eventUpdateSessionPatch(id, data, options) {
|
|
309
964
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/events/sessions/${encodeURIComponent(id)}`, data: data });
|
|
310
965
|
}
|
|
311
|
-
/**
|
|
966
|
+
/**
|
|
967
|
+
* Performs the index exam operation for the exam capability.
|
|
968
|
+
* Calls `GET /api/v1/exams` through the shared IDP-aware Faiber client.
|
|
969
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
970
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
971
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
972
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:read.
|
|
973
|
+
*/
|
|
312
974
|
examIndexExamGet(params, options) {
|
|
313
975
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/exams`, params });
|
|
314
976
|
}
|
|
315
|
-
/**
|
|
977
|
+
/**
|
|
978
|
+
* Performs the store exam operation for the exam capability.
|
|
979
|
+
* Calls `POST /api/v1/exams` through the shared IDP-aware Faiber client.
|
|
980
|
+
* @param data Typed JSON request body.
|
|
981
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
982
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
983
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:create.
|
|
984
|
+
*/
|
|
316
985
|
examStoreExamPost(data, options) {
|
|
317
986
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/exams`, data: data });
|
|
318
987
|
}
|
|
319
|
-
/**
|
|
988
|
+
/**
|
|
989
|
+
* Performs the destroy exam operation for the exam capability.
|
|
990
|
+
* Calls `DELETE /api/v1/exams/{id}` through the shared IDP-aware Faiber client.
|
|
991
|
+
* @param id Backend path identifier `id`.
|
|
992
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
993
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
994
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:delete.
|
|
995
|
+
*/
|
|
996
|
+
examDestroyExamDelete(id, options) {
|
|
997
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/exams/${encodeURIComponent(id)}` });
|
|
998
|
+
}
|
|
999
|
+
/**
|
|
1000
|
+
* Performs the show exam operation for the exam capability.
|
|
1001
|
+
* Calls `GET /api/v1/exams/{id}` through the shared IDP-aware Faiber client.
|
|
1002
|
+
* @param id Backend path identifier `id`.
|
|
1003
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1004
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1005
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:read.
|
|
1006
|
+
*/
|
|
320
1007
|
examShowExamGet(id, options) {
|
|
321
1008
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/exams/${encodeURIComponent(id)}` });
|
|
322
1009
|
}
|
|
323
|
-
/**
|
|
1010
|
+
/**
|
|
1011
|
+
* Performs the update exam operation for the exam capability.
|
|
1012
|
+
* Calls `PATCH /api/v1/exams/{id}` through the shared IDP-aware Faiber client.
|
|
1013
|
+
* @param id Backend path identifier `id`.
|
|
1014
|
+
* @param data Typed JSON request body.
|
|
1015
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1016
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1017
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:update.
|
|
1018
|
+
*/
|
|
324
1019
|
examUpdateExamPatch(id, data, options) {
|
|
325
1020
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/exams/${encodeURIComponent(id)}`, data: data });
|
|
326
1021
|
}
|
|
327
|
-
/**
|
|
1022
|
+
/**
|
|
1023
|
+
* Performs the index question operation for the exam capability.
|
|
1024
|
+
* Calls `GET /api/v1/exams/questions` through the shared IDP-aware Faiber client.
|
|
1025
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1026
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1027
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1028
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:read.
|
|
1029
|
+
*/
|
|
328
1030
|
examIndexQuestionGet(params, options) {
|
|
329
1031
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/exams/questions`, params });
|
|
330
1032
|
}
|
|
331
|
-
/**
|
|
1033
|
+
/**
|
|
1034
|
+
* Performs the store question operation for the exam capability.
|
|
1035
|
+
* Calls `POST /api/v1/exams/questions` through the shared IDP-aware Faiber client.
|
|
1036
|
+
* @param data Typed JSON request body.
|
|
1037
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1038
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1039
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:create.
|
|
1040
|
+
*/
|
|
332
1041
|
examStoreQuestionPost(data, options) {
|
|
333
1042
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/exams/questions`, data: data });
|
|
334
1043
|
}
|
|
335
|
-
/**
|
|
1044
|
+
/**
|
|
1045
|
+
* Performs the destroy question operation for the exam capability.
|
|
1046
|
+
* Calls `DELETE /api/v1/exams/questions/{id}` through the shared IDP-aware Faiber client.
|
|
1047
|
+
* @param id Backend path identifier `id`.
|
|
1048
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1049
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1050
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:delete.
|
|
1051
|
+
*/
|
|
1052
|
+
examDestroyQuestionDelete(id, options) {
|
|
1053
|
+
return this.client.request({ ...options, method: "DELETE", url: `/api/v1/exams/questions/${encodeURIComponent(id)}` });
|
|
1054
|
+
}
|
|
1055
|
+
/**
|
|
1056
|
+
* Performs the show question operation for the exam capability.
|
|
1057
|
+
* Calls `GET /api/v1/exams/questions/{id}` through the shared IDP-aware Faiber client.
|
|
1058
|
+
* @param id Backend path identifier `id`.
|
|
1059
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1060
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1061
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:read.
|
|
1062
|
+
*/
|
|
336
1063
|
examShowQuestionGet(id, options) {
|
|
337
1064
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/exams/questions/${encodeURIComponent(id)}` });
|
|
338
1065
|
}
|
|
339
|
-
/**
|
|
1066
|
+
/**
|
|
1067
|
+
* Performs the update question operation for the exam capability.
|
|
1068
|
+
* Calls `PATCH /api/v1/exams/questions/{id}` through the shared IDP-aware Faiber client.
|
|
1069
|
+
* @param id Backend path identifier `id`.
|
|
1070
|
+
* @param data Typed JSON request body.
|
|
1071
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1072
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1073
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:update.
|
|
1074
|
+
*/
|
|
340
1075
|
examUpdateQuestionPatch(id, data, options) {
|
|
341
1076
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/exams/questions/${encodeURIComponent(id)}`, data: data });
|
|
342
1077
|
}
|
|
343
|
-
/**
|
|
1078
|
+
/**
|
|
1079
|
+
* Performs the index session operation for the exam capability.
|
|
1080
|
+
* Calls `GET /api/v1/exams/sessions` through the shared IDP-aware Faiber client.
|
|
1081
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1082
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1083
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1084
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:read.
|
|
1085
|
+
*/
|
|
344
1086
|
examIndexSessionGet(params, options) {
|
|
345
1087
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/exams/sessions`, params });
|
|
346
1088
|
}
|
|
347
|
-
/**
|
|
1089
|
+
/**
|
|
1090
|
+
* Performs the store session operation for the exam capability.
|
|
1091
|
+
* Calls `POST /api/v1/exams/sessions` through the shared IDP-aware Faiber client.
|
|
1092
|
+
* @param data Typed JSON request body.
|
|
1093
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1094
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1095
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:create.
|
|
1096
|
+
*/
|
|
348
1097
|
examStoreSessionPost(data, options) {
|
|
349
1098
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/exams/sessions`, data: data });
|
|
350
1099
|
}
|
|
351
|
-
/**
|
|
1100
|
+
/**
|
|
1101
|
+
* Performs the show session operation for the exam capability.
|
|
1102
|
+
* Calls `GET /api/v1/exams/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:exam:read.
|
|
1107
|
+
*/
|
|
352
1108
|
examShowSessionGet(id, options) {
|
|
353
1109
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/exams/sessions/${encodeURIComponent(id)}` });
|
|
354
1110
|
}
|
|
355
|
-
/**
|
|
1111
|
+
/**
|
|
1112
|
+
* Performs the update session operation for the exam capability.
|
|
1113
|
+
* Calls `PATCH /api/v1/exams/sessions/{id}` through the shared IDP-aware Faiber client.
|
|
1114
|
+
* @param id Backend path identifier `id`.
|
|
1115
|
+
* @param data Typed JSON request body.
|
|
1116
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1117
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1118
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:exam:update.
|
|
1119
|
+
*/
|
|
356
1120
|
examUpdateSessionPatch(id, data, options) {
|
|
357
1121
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/exams/sessions/${encodeURIComponent(id)}`, data: data });
|
|
358
1122
|
}
|
|
359
|
-
/**
|
|
1123
|
+
/**
|
|
1124
|
+
* Performs the index homework operation for the homework capability.
|
|
1125
|
+
* Calls `GET /api/v1/homeworks` through the shared IDP-aware Faiber client.
|
|
1126
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1127
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1128
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1129
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:homework:read.
|
|
1130
|
+
*/
|
|
360
1131
|
homeworkIndexHomeworkGet(params, options) {
|
|
361
1132
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/homeworks`, params });
|
|
362
1133
|
}
|
|
363
|
-
/**
|
|
1134
|
+
/**
|
|
1135
|
+
* Performs the store homework operation for the homework capability.
|
|
1136
|
+
* Calls `POST /api/v1/homeworks` through the shared IDP-aware Faiber client.
|
|
1137
|
+
* @param data Typed JSON request body.
|
|
1138
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1139
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1140
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:homework:create.
|
|
1141
|
+
*/
|
|
364
1142
|
homeworkStoreHomeworkPost(data, options) {
|
|
365
1143
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/homeworks`, data: data });
|
|
366
1144
|
}
|
|
367
|
-
/**
|
|
1145
|
+
/**
|
|
1146
|
+
* Performs the show homework operation for the homework capability.
|
|
1147
|
+
* Calls `GET /api/v1/homeworks/{id}` through the shared IDP-aware Faiber client.
|
|
1148
|
+
* @param id Backend path identifier `id`.
|
|
1149
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1150
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1151
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:homework:read.
|
|
1152
|
+
*/
|
|
368
1153
|
homeworkShowHomeworkGet(id, options) {
|
|
369
1154
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/homeworks/${encodeURIComponent(id)}` });
|
|
370
1155
|
}
|
|
371
|
-
/**
|
|
1156
|
+
/**
|
|
1157
|
+
* Performs the update homework operation for the homework capability.
|
|
1158
|
+
* Calls `PATCH /api/v1/homeworks/{id}` through the shared IDP-aware Faiber client.
|
|
1159
|
+
* @param id Backend path identifier `id`.
|
|
1160
|
+
* @param data Typed JSON request body.
|
|
1161
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1162
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1163
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:homework:update.
|
|
1164
|
+
*/
|
|
372
1165
|
homeworkUpdateHomeworkPatch(id, data, options) {
|
|
373
1166
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/homeworks/${encodeURIComponent(id)}`, data: data });
|
|
374
1167
|
}
|
|
375
|
-
/**
|
|
1168
|
+
/**
|
|
1169
|
+
* Performs the index assignment operation for the homework capability.
|
|
1170
|
+
* Calls `GET /api/v1/homeworks/assignments` through the shared IDP-aware Faiber client.
|
|
1171
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1172
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1173
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1174
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:homework:read.
|
|
1175
|
+
*/
|
|
376
1176
|
homeworkIndexAssignmentGet(params, options) {
|
|
377
1177
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/homeworks/assignments`, params });
|
|
378
1178
|
}
|
|
379
|
-
/**
|
|
1179
|
+
/**
|
|
1180
|
+
* Performs the store assignment operation for the homework capability.
|
|
1181
|
+
* Calls `POST /api/v1/homeworks/assignments` through the shared IDP-aware Faiber client.
|
|
1182
|
+
* @param data Typed JSON request body.
|
|
1183
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1184
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1185
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:homework:create.
|
|
1186
|
+
*/
|
|
380
1187
|
homeworkStoreAssignmentPost(data, options) {
|
|
381
1188
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/homeworks/assignments`, data: data });
|
|
382
1189
|
}
|
|
383
|
-
/**
|
|
1190
|
+
/**
|
|
1191
|
+
* Performs the show assignment operation for the homework capability.
|
|
1192
|
+
* Calls `GET /api/v1/homeworks/assignments/{id}` through the shared IDP-aware Faiber client.
|
|
1193
|
+
* @param id Backend path identifier `id`.
|
|
1194
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1195
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1196
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:homework:read.
|
|
1197
|
+
*/
|
|
384
1198
|
homeworkShowAssignmentGet(id, options) {
|
|
385
1199
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/homeworks/assignments/${encodeURIComponent(id)}` });
|
|
386
1200
|
}
|
|
387
|
-
/**
|
|
1201
|
+
/**
|
|
1202
|
+
* Performs the update assignment operation for the homework capability.
|
|
1203
|
+
* Calls `PATCH /api/v1/homeworks/assignments/{id}` through the shared IDP-aware Faiber client.
|
|
1204
|
+
* @param id Backend path identifier `id`.
|
|
1205
|
+
* @param data Typed JSON request body.
|
|
1206
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1207
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1208
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:homework:update.
|
|
1209
|
+
*/
|
|
388
1210
|
homeworkUpdateAssignmentPatch(id, data, options) {
|
|
389
1211
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/homeworks/assignments/${encodeURIComponent(id)}`, data: data });
|
|
390
1212
|
}
|
|
391
|
-
/**
|
|
1213
|
+
/**
|
|
1214
|
+
* Performs the index question operation for the homework capability.
|
|
1215
|
+
* Calls `GET /api/v1/homeworks/questions` through the shared IDP-aware Faiber client.
|
|
1216
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1217
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1218
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1219
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:homework:read.
|
|
1220
|
+
*/
|
|
392
1221
|
homeworkIndexQuestionGet(params, options) {
|
|
393
1222
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/homeworks/questions`, params });
|
|
394
1223
|
}
|
|
395
|
-
/**
|
|
1224
|
+
/**
|
|
1225
|
+
* Performs the store question operation for the homework capability.
|
|
1226
|
+
* Calls `POST /api/v1/homeworks/questions` through the shared IDP-aware Faiber client.
|
|
1227
|
+
* @param data Typed JSON request body.
|
|
1228
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1229
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1230
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:homework:create.
|
|
1231
|
+
*/
|
|
396
1232
|
homeworkStoreQuestionPost(data, options) {
|
|
397
1233
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/homeworks/questions`, data: data });
|
|
398
1234
|
}
|
|
399
|
-
/**
|
|
1235
|
+
/**
|
|
1236
|
+
* Performs the show question operation for the homework capability.
|
|
1237
|
+
* Calls `GET /api/v1/homeworks/questions/{id}` through the shared IDP-aware Faiber client.
|
|
1238
|
+
* @param id Backend path identifier `id`.
|
|
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:homework:read.
|
|
1242
|
+
*/
|
|
400
1243
|
homeworkShowQuestionGet(id, options) {
|
|
401
1244
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/homeworks/questions/${encodeURIComponent(id)}` });
|
|
402
1245
|
}
|
|
403
|
-
/**
|
|
1246
|
+
/**
|
|
1247
|
+
* Performs the update question operation for the homework capability.
|
|
1248
|
+
* Calls `PATCH /api/v1/homeworks/questions/{id}` through the shared IDP-aware Faiber client.
|
|
1249
|
+
* @param id Backend path identifier `id`.
|
|
1250
|
+
* @param data Typed JSON request body.
|
|
1251
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1252
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1253
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:homework:update.
|
|
1254
|
+
*/
|
|
404
1255
|
homeworkUpdateQuestionPatch(id, data, options) {
|
|
405
1256
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/homeworks/questions/${encodeURIComponent(id)}`, data: data });
|
|
406
1257
|
}
|
|
407
|
-
/**
|
|
1258
|
+
/**
|
|
1259
|
+
* Performs the flow integration show operation for the integration capability.
|
|
1260
|
+
* Calls `GET /api/v1/integration/flow` through the shared IDP-aware Faiber client.
|
|
1261
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1262
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1263
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1264
|
+
*/
|
|
408
1265
|
integrationFlowIntegrationShowGet(options) {
|
|
409
1266
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/integration/flow` });
|
|
410
1267
|
}
|
|
411
|
-
/**
|
|
1268
|
+
/**
|
|
1269
|
+
* Performs the index category operation for the interactive capability.
|
|
1270
|
+
* Calls `GET /api/v1/interactive/categories` through the shared IDP-aware Faiber client.
|
|
1271
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1272
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1273
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1274
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:read.
|
|
1275
|
+
*/
|
|
412
1276
|
interactiveIndexCategoryGet(params, options) {
|
|
413
1277
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/interactive/categories`, params });
|
|
414
1278
|
}
|
|
415
|
-
/**
|
|
1279
|
+
/**
|
|
1280
|
+
* Performs the store category operation for the interactive capability.
|
|
1281
|
+
* Calls `POST /api/v1/interactive/categories` through the shared IDP-aware Faiber client.
|
|
1282
|
+
* @param data Typed JSON request body.
|
|
1283
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1284
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1285
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:create.
|
|
1286
|
+
*/
|
|
416
1287
|
interactiveStoreCategoryPost(data, options) {
|
|
417
1288
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/interactive/categories`, data: data });
|
|
418
1289
|
}
|
|
419
|
-
/**
|
|
1290
|
+
/**
|
|
1291
|
+
* Performs the show category operation for the interactive capability.
|
|
1292
|
+
* Calls `GET /api/v1/interactive/categories/{id}` through the shared IDP-aware Faiber client.
|
|
1293
|
+
* @param id Backend path identifier `id`.
|
|
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:interactive:read.
|
|
1297
|
+
*/
|
|
420
1298
|
interactiveShowCategoryGet(id, options) {
|
|
421
1299
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/interactive/categories/${encodeURIComponent(id)}` });
|
|
422
1300
|
}
|
|
423
|
-
/**
|
|
1301
|
+
/**
|
|
1302
|
+
* Performs the update category operation for the interactive capability.
|
|
1303
|
+
* Calls `PATCH /api/v1/interactive/categories/{id}` through the shared IDP-aware Faiber client.
|
|
1304
|
+
* @param id Backend path identifier `id`.
|
|
1305
|
+
* @param data Typed JSON request body.
|
|
1306
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1307
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1308
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:update.
|
|
1309
|
+
*/
|
|
424
1310
|
interactiveUpdateCategoryPatch(id, data, options) {
|
|
425
1311
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/interactive/categories/${encodeURIComponent(id)}`, data: data });
|
|
426
1312
|
}
|
|
427
|
-
/**
|
|
1313
|
+
/**
|
|
1314
|
+
* Performs the index classroom session operation for the interactive capability.
|
|
1315
|
+
* Calls `GET /api/v1/interactive/classroom-sessions` through the shared IDP-aware Faiber client.
|
|
1316
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1317
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1318
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1319
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:read.
|
|
1320
|
+
*/
|
|
428
1321
|
interactiveIndexClassroomSessionGet(params, options) {
|
|
429
1322
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/interactive/classroom-sessions`, params });
|
|
430
1323
|
}
|
|
431
|
-
/**
|
|
1324
|
+
/**
|
|
1325
|
+
* Performs the store classroom session operation for the interactive capability.
|
|
1326
|
+
* Calls `POST /api/v1/interactive/classroom-sessions` through the shared IDP-aware Faiber client.
|
|
1327
|
+
* @param data Typed JSON request body.
|
|
1328
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1329
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1330
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:create.
|
|
1331
|
+
*/
|
|
432
1332
|
interactiveStoreClassroomSessionPost(data, options) {
|
|
433
1333
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/interactive/classroom-sessions`, data: data });
|
|
434
1334
|
}
|
|
435
|
-
/**
|
|
1335
|
+
/**
|
|
1336
|
+
* Performs the show classroom session operation for the interactive capability.
|
|
1337
|
+
* Calls `GET /api/v1/interactive/classroom-sessions/{id}` through the shared IDP-aware Faiber client.
|
|
1338
|
+
* @param id Backend path identifier `id`.
|
|
1339
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1340
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1341
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:read.
|
|
1342
|
+
*/
|
|
436
1343
|
interactiveShowClassroomSessionGet(id, options) {
|
|
437
1344
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/interactive/classroom-sessions/${encodeURIComponent(id)}` });
|
|
438
1345
|
}
|
|
439
|
-
/**
|
|
1346
|
+
/**
|
|
1347
|
+
* Performs the update classroom session operation for the interactive capability.
|
|
1348
|
+
* Calls `PATCH /api/v1/interactive/classroom-sessions/{id}` through the shared IDP-aware Faiber client.
|
|
1349
|
+
* @param id Backend path identifier `id`.
|
|
1350
|
+
* @param data Typed JSON request body.
|
|
1351
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1352
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1353
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:update.
|
|
1354
|
+
*/
|
|
440
1355
|
interactiveUpdateClassroomSessionPatch(id, data, options) {
|
|
441
1356
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/interactive/classroom-sessions/${encodeURIComponent(id)}`, data: data });
|
|
442
1357
|
}
|
|
443
|
-
/**
|
|
1358
|
+
/**
|
|
1359
|
+
* Performs the index content operation for the interactive capability.
|
|
1360
|
+
* Calls `GET /api/v1/interactive/content` through the shared IDP-aware Faiber client.
|
|
1361
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1362
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1363
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1364
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:read.
|
|
1365
|
+
*/
|
|
444
1366
|
interactiveIndexContentGet(params, options) {
|
|
445
1367
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/interactive/content`, params });
|
|
446
1368
|
}
|
|
447
|
-
/**
|
|
1369
|
+
/**
|
|
1370
|
+
* Performs the store content operation for the interactive capability.
|
|
1371
|
+
* Calls `POST /api/v1/interactive/content` through the shared IDP-aware Faiber client.
|
|
1372
|
+
* @param data Typed JSON request body.
|
|
1373
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1374
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1375
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:create.
|
|
1376
|
+
*/
|
|
448
1377
|
interactiveStoreContentPost(data, options) {
|
|
449
1378
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/interactive/content`, data: data });
|
|
450
1379
|
}
|
|
451
|
-
/**
|
|
1380
|
+
/**
|
|
1381
|
+
* Performs the show content operation for the interactive capability.
|
|
1382
|
+
* Calls `GET /api/v1/interactive/content/{id}` through the shared IDP-aware Faiber client.
|
|
1383
|
+
* @param id Backend path identifier `id`.
|
|
1384
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1385
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1386
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:read.
|
|
1387
|
+
*/
|
|
452
1388
|
interactiveShowContentGet(id, options) {
|
|
453
1389
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/interactive/content/${encodeURIComponent(id)}` });
|
|
454
1390
|
}
|
|
455
|
-
/**
|
|
1391
|
+
/**
|
|
1392
|
+
* Performs the update content operation for the interactive capability.
|
|
1393
|
+
* Calls `PATCH /api/v1/interactive/content/{id}` through the shared IDP-aware Faiber client.
|
|
1394
|
+
* @param id Backend path identifier `id`.
|
|
1395
|
+
* @param data Typed JSON request body.
|
|
1396
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1397
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1398
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:interactive:update.
|
|
1399
|
+
*/
|
|
456
1400
|
interactiveUpdateContentPatch(id, data, options) {
|
|
457
1401
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/interactive/content/${encodeURIComponent(id)}`, data: data });
|
|
458
1402
|
}
|
|
459
|
-
/**
|
|
1403
|
+
/**
|
|
1404
|
+
* Performs the index invitation operation for the ops capability.
|
|
1405
|
+
* Calls `GET /api/v1/invitations` through the shared IDP-aware Faiber client.
|
|
1406
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1407
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1408
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1409
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:read.
|
|
1410
|
+
*/
|
|
460
1411
|
opsIndexInvitationGet(params, options) {
|
|
461
1412
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/invitations`, params });
|
|
462
1413
|
}
|
|
463
|
-
/**
|
|
1414
|
+
/**
|
|
1415
|
+
* Performs the store invitation operation for the ops capability.
|
|
1416
|
+
* Calls `POST /api/v1/invitations` through the shared IDP-aware Faiber client.
|
|
1417
|
+
* @param data Typed JSON request body.
|
|
1418
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1419
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1420
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:create.
|
|
1421
|
+
*/
|
|
464
1422
|
opsStoreInvitationPost(data, options) {
|
|
465
1423
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/invitations`, data: data });
|
|
466
1424
|
}
|
|
467
|
-
/**
|
|
1425
|
+
/**
|
|
1426
|
+
* Performs the show invitation operation for the ops capability.
|
|
1427
|
+
* Calls `GET /api/v1/invitations/{id}` through the shared IDP-aware Faiber client.
|
|
1428
|
+
* @param id Backend path identifier `id`.
|
|
1429
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1430
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1431
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:read.
|
|
1432
|
+
*/
|
|
468
1433
|
opsShowInvitationGet(id, options) {
|
|
469
1434
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/invitations/${encodeURIComponent(id)}` });
|
|
470
1435
|
}
|
|
471
|
-
/**
|
|
1436
|
+
/**
|
|
1437
|
+
* Performs the update invitation operation for the ops capability.
|
|
1438
|
+
* Calls `PATCH /api/v1/invitations/{id}` through the shared IDP-aware Faiber client.
|
|
1439
|
+
* @param id Backend path identifier `id`.
|
|
1440
|
+
* @param data Typed JSON request body.
|
|
1441
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1442
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1443
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:update.
|
|
1444
|
+
*/
|
|
472
1445
|
opsUpdateInvitationPatch(id, data, options) {
|
|
473
1446
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/invitations/${encodeURIComponent(id)}`, data: data });
|
|
474
1447
|
}
|
|
475
|
-
/**
|
|
1448
|
+
/**
|
|
1449
|
+
* Performs the upload image operation for the media capability.
|
|
1450
|
+
* Calls `POST /api/v1/media/images` through the shared IDP-aware Faiber client.
|
|
1451
|
+
* @param data Typed multipart form.
|
|
1452
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1453
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1454
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:course:update.
|
|
1455
|
+
*/
|
|
1456
|
+
mediaUploadImagePost(data, options) {
|
|
1457
|
+
return this.client.request({ ...options, method: "POST", url: `/api/v1/media/images`, data: data });
|
|
1458
|
+
}
|
|
1459
|
+
/**
|
|
1460
|
+
* Performs the classrooms operation for the report capability.
|
|
1461
|
+
* Calls `GET /api/v1/reports/classrooms` through the shared IDP-aware Faiber client.
|
|
1462
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1463
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1464
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:report:read.
|
|
1465
|
+
*/
|
|
476
1466
|
reportClassroomsGet(options) {
|
|
477
1467
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/reports/classrooms` });
|
|
478
1468
|
}
|
|
479
|
-
/**
|
|
1469
|
+
/**
|
|
1470
|
+
* Performs the students operation for the report capability.
|
|
1471
|
+
* Calls `GET /api/v1/reports/students` through the shared IDP-aware Faiber client.
|
|
1472
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1473
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1474
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:report:read.
|
|
1475
|
+
*/
|
|
480
1476
|
reportStudentsGet(options) {
|
|
481
1477
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/reports/students` });
|
|
482
1478
|
}
|
|
483
|
-
/**
|
|
1479
|
+
/**
|
|
1480
|
+
* Performs the teachers operation for the report capability.
|
|
1481
|
+
* Calls `GET /api/v1/reports/teachers` through the shared IDP-aware Faiber client.
|
|
1482
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1483
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1484
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:report:read.
|
|
1485
|
+
*/
|
|
484
1486
|
reportTeachersGet(options) {
|
|
485
1487
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/reports/teachers` });
|
|
486
1488
|
}
|
|
487
|
-
/**
|
|
1489
|
+
/**
|
|
1490
|
+
* Performs the check licence operation for the service capability.
|
|
1491
|
+
* Calls `GET /api/v1/service/licence/check` through the shared IDP-aware Faiber client.
|
|
1492
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1493
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1494
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1495
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1496
|
+
*/
|
|
488
1497
|
serviceCheckLicenceGet(params, options) {
|
|
489
1498
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/service/licence/check`, params });
|
|
490
1499
|
}
|
|
491
|
-
/**
|
|
1500
|
+
/**
|
|
1501
|
+
* Performs the index support interaction operation for the ops capability.
|
|
1502
|
+
* Calls `GET /api/v1/support-interactions` through the shared IDP-aware Faiber client.
|
|
1503
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1504
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1505
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1506
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:read.
|
|
1507
|
+
*/
|
|
492
1508
|
opsIndexSupportInteractionGet(params, options) {
|
|
493
1509
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/support-interactions`, params });
|
|
494
1510
|
}
|
|
495
|
-
/**
|
|
1511
|
+
/**
|
|
1512
|
+
* Performs the store support interaction operation for the ops capability.
|
|
1513
|
+
* Calls `POST /api/v1/support-interactions` through the shared IDP-aware Faiber client.
|
|
1514
|
+
* @param data Typed JSON request body.
|
|
1515
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1516
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1517
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:create.
|
|
1518
|
+
*/
|
|
496
1519
|
opsStoreSupportInteractionPost(data, options) {
|
|
497
1520
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/support-interactions`, data: data });
|
|
498
1521
|
}
|
|
499
|
-
/**
|
|
1522
|
+
/**
|
|
1523
|
+
* Performs the show support interaction operation for the ops capability.
|
|
1524
|
+
* Calls `GET /api/v1/support-interactions/{id}` through the shared IDP-aware Faiber client.
|
|
1525
|
+
* @param id Backend path identifier `id`.
|
|
1526
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1527
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1528
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:read.
|
|
1529
|
+
*/
|
|
500
1530
|
opsShowSupportInteractionGet(id, options) {
|
|
501
1531
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/support-interactions/${encodeURIComponent(id)}` });
|
|
502
1532
|
}
|
|
503
|
-
/**
|
|
1533
|
+
/**
|
|
1534
|
+
* Performs the update support interaction operation for the ops capability.
|
|
1535
|
+
* Calls `PATCH /api/v1/support-interactions/{id}` through the shared IDP-aware Faiber client.
|
|
1536
|
+
* @param id Backend path identifier `id`.
|
|
1537
|
+
* @param data Typed JSON request body.
|
|
1538
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1539
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1540
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:update.
|
|
1541
|
+
*/
|
|
504
1542
|
opsUpdateSupportInteractionPatch(id, data, options) {
|
|
505
1543
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/support-interactions/${encodeURIComponent(id)}`, data: data });
|
|
506
1544
|
}
|
|
507
|
-
/**
|
|
1545
|
+
/**
|
|
1546
|
+
* Performs the index worktime operation for the ops capability.
|
|
1547
|
+
* Calls `GET /api/v1/worktime` through the shared IDP-aware Faiber client.
|
|
1548
|
+
* @param params Typed query parameters; omitted members retain backend defaults.
|
|
1549
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1550
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1551
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:read.
|
|
1552
|
+
*/
|
|
508
1553
|
opsIndexWorktimeGet(params, options) {
|
|
509
1554
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/worktime`, params });
|
|
510
1555
|
}
|
|
511
|
-
/**
|
|
1556
|
+
/**
|
|
1557
|
+
* Performs the store worktime operation for the ops capability.
|
|
1558
|
+
* Calls `POST /api/v1/worktime` through the shared IDP-aware Faiber client.
|
|
1559
|
+
* @param data Typed JSON request body.
|
|
1560
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1561
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1562
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:create.
|
|
1563
|
+
*/
|
|
512
1564
|
opsStoreWorktimePost(data, options) {
|
|
513
1565
|
return this.client.request({ ...options, method: "POST", url: `/api/v1/worktime`, data: data });
|
|
514
1566
|
}
|
|
515
|
-
/**
|
|
1567
|
+
/**
|
|
1568
|
+
* Performs the show worktime operation for the ops capability.
|
|
1569
|
+
* Calls `GET /api/v1/worktime/{id}` through the shared IDP-aware Faiber client.
|
|
1570
|
+
* @param id Backend path identifier `id`.
|
|
1571
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1572
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1573
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:read.
|
|
1574
|
+
*/
|
|
516
1575
|
opsShowWorktimeGet(id, options) {
|
|
517
1576
|
return this.client.request({ ...options, method: "GET", url: `/api/v1/worktime/${encodeURIComponent(id)}` });
|
|
518
1577
|
}
|
|
519
|
-
/**
|
|
1578
|
+
/**
|
|
1579
|
+
* Performs the update worktime operation for the ops capability.
|
|
1580
|
+
* Calls `PATCH /api/v1/worktime/{id}` through the shared IDP-aware Faiber client.
|
|
1581
|
+
* @param id Backend path identifier `id`.
|
|
1582
|
+
* @param data Typed JSON request body.
|
|
1583
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1584
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1585
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: lms:ops:update.
|
|
1586
|
+
*/
|
|
520
1587
|
opsUpdateWorktimePatch(id, data, options) {
|
|
521
1588
|
return this.client.request({ ...options, method: "PATCH", url: `/api/v1/worktime/${encodeURIComponent(id)}`, data: data });
|
|
522
1589
|
}
|
|
523
|
-
/**
|
|
1590
|
+
/**
|
|
1591
|
+
* Performs the status route operation for the router capability.
|
|
1592
|
+
* Calls `GET /health` through the shared IDP-aware Faiber client.
|
|
1593
|
+
* @param options Axios headers, timeout, cancellation signal, credentials, adapter, and other request options.
|
|
1594
|
+
* @returns The complete Axios response, including the typed service envelope, status, and headers.
|
|
1595
|
+
* @throws AxiosError for authentication, permission, validation, not-found, conflict, or transport failures; required permission: session-derived or public bootstrap route.
|
|
1596
|
+
*/
|
|
524
1597
|
routerStatusRouteGet(options) {
|
|
525
1598
|
return this.client.request({ ...options, method: "GET", url: `/health` });
|
|
526
1599
|
}
|