@faiber/faiber-lms 0.5.1 → 0.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/.tsbuildinfo +1 -1
- package/dist/operations.d.ts +111 -407
- package/dist/operations.d.ts.map +1 -1
- package/dist/operations.js +138 -498
- package/dist/operations.js.map +1 -1
- package/dist/operations.types.d.ts +717 -896
- package/dist/operations.types.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -30,6 +30,7 @@ export type AcademyCompleteSessionPostResponse = import("./types.js").AcademySes
|
|
|
30
30
|
/** Backend response type: SessionResponse. */
|
|
31
31
|
export interface SessionGetSelfGetResponseData extends JsonObject {
|
|
32
32
|
"user_id": string;
|
|
33
|
+
"profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
33
34
|
"roles": string[];
|
|
34
35
|
"permissions": string[];
|
|
35
36
|
}
|
|
@@ -43,13 +44,25 @@ export interface CertificateIndexCertificateGetQuery extends QueryParams {
|
|
|
43
44
|
/** Backend response type: crate::models::PagedResult<models::CertificateResponse>. */
|
|
44
45
|
export interface CertificateIndexCertificateGetResponseItem extends JsonObject {
|
|
45
46
|
"id": number;
|
|
47
|
+
"public_id": string;
|
|
46
48
|
"user_id": string;
|
|
49
|
+
"profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
47
50
|
"course_id"?: number | null;
|
|
48
51
|
"classroom_id"?: number | null;
|
|
49
52
|
"title": string;
|
|
53
|
+
"certificate_template_id"?: number | null;
|
|
54
|
+
"grade_id"?: number | null;
|
|
55
|
+
"status": string;
|
|
56
|
+
"verification_code"?: string | null;
|
|
57
|
+
"legacy_code"?: string | null;
|
|
58
|
+
"issued_by"?: string | null;
|
|
50
59
|
"issued_at": string;
|
|
51
60
|
"media_url"?: string | null;
|
|
61
|
+
"revoked_at"?: string | null;
|
|
62
|
+
"revoke_reason"?: string | null;
|
|
63
|
+
"render_snapshot": JsonValue;
|
|
52
64
|
"created_at": string;
|
|
65
|
+
"updated_at": string;
|
|
53
66
|
}
|
|
54
67
|
export interface CertificateIndexCertificateGetResponsePageMeta extends JsonObject {
|
|
55
68
|
"page": number;
|
|
@@ -69,32 +82,62 @@ export interface CertificateStoreCertificatePostInput extends JsonObject {
|
|
|
69
82
|
"course_id"?: number | null;
|
|
70
83
|
"classroom_id"?: number | null;
|
|
71
84
|
"title": string;
|
|
85
|
+
"certificate_template_id"?: number | null;
|
|
86
|
+
"grade_id"?: number | null;
|
|
87
|
+
"status"?: string | null;
|
|
88
|
+
"verification_code"?: string | null;
|
|
89
|
+
"issued_by"?: string | null;
|
|
72
90
|
"issued_at": string;
|
|
73
91
|
"media_url"?: string | null;
|
|
92
|
+
"render_snapshot"?: JsonValue | null;
|
|
74
93
|
}
|
|
75
94
|
/** Backend response type: models::CertificateResponse. */
|
|
76
95
|
export interface CertificateStoreCertificatePostResponseData extends JsonObject {
|
|
77
96
|
"id": number;
|
|
97
|
+
"public_id": string;
|
|
78
98
|
"user_id": string;
|
|
99
|
+
"profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
79
100
|
"course_id"?: number | null;
|
|
80
101
|
"classroom_id"?: number | null;
|
|
81
102
|
"title": string;
|
|
103
|
+
"certificate_template_id"?: number | null;
|
|
104
|
+
"grade_id"?: number | null;
|
|
105
|
+
"status": string;
|
|
106
|
+
"verification_code"?: string | null;
|
|
107
|
+
"legacy_code"?: string | null;
|
|
108
|
+
"issued_by"?: string | null;
|
|
82
109
|
"issued_at": string;
|
|
83
110
|
"media_url"?: string | null;
|
|
111
|
+
"revoked_at"?: string | null;
|
|
112
|
+
"revoke_reason"?: string | null;
|
|
113
|
+
"render_snapshot": JsonValue;
|
|
84
114
|
"created_at": string;
|
|
115
|
+
"updated_at": string;
|
|
85
116
|
}
|
|
86
117
|
export interface CertificateStoreCertificatePostResponse extends ApiEnvelope<CertificateStoreCertificatePostResponseData> {
|
|
87
118
|
}
|
|
88
119
|
/** Backend response type: models::CertificateResponse. */
|
|
89
120
|
export interface CertificateShowCertificateGetResponseData extends JsonObject {
|
|
90
121
|
"id": number;
|
|
122
|
+
"public_id": string;
|
|
91
123
|
"user_id": string;
|
|
124
|
+
"profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
92
125
|
"course_id"?: number | null;
|
|
93
126
|
"classroom_id"?: number | null;
|
|
94
127
|
"title": string;
|
|
128
|
+
"certificate_template_id"?: number | null;
|
|
129
|
+
"grade_id"?: number | null;
|
|
130
|
+
"status": string;
|
|
131
|
+
"verification_code"?: string | null;
|
|
132
|
+
"legacy_code"?: string | null;
|
|
133
|
+
"issued_by"?: string | null;
|
|
95
134
|
"issued_at": string;
|
|
96
135
|
"media_url"?: string | null;
|
|
136
|
+
"revoked_at"?: string | null;
|
|
137
|
+
"revoke_reason"?: string | null;
|
|
138
|
+
"render_snapshot": JsonValue;
|
|
97
139
|
"created_at": string;
|
|
140
|
+
"updated_at": string;
|
|
98
141
|
}
|
|
99
142
|
export interface CertificateShowCertificateGetResponse extends ApiEnvelope<CertificateShowCertificateGetResponseData> {
|
|
100
143
|
}
|
|
@@ -104,38 +147,66 @@ export interface CertificateUpdateCertificatePatchInput extends JsonObject {
|
|
|
104
147
|
"course_id"?: number | null;
|
|
105
148
|
"classroom_id"?: number | null;
|
|
106
149
|
"title"?: string | null;
|
|
150
|
+
"status"?: string | null;
|
|
107
151
|
"issued_at"?: string | null;
|
|
108
152
|
"media_url"?: string | null;
|
|
153
|
+
"revoke_reason"?: string | null;
|
|
109
154
|
}
|
|
110
155
|
/** Backend response type: models::CertificateResponse. */
|
|
111
156
|
export interface CertificateUpdateCertificatePatchResponseData extends JsonObject {
|
|
112
157
|
"id": number;
|
|
158
|
+
"public_id": string;
|
|
113
159
|
"user_id": string;
|
|
160
|
+
"profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
114
161
|
"course_id"?: number | null;
|
|
115
162
|
"classroom_id"?: number | null;
|
|
116
163
|
"title": string;
|
|
164
|
+
"certificate_template_id"?: number | null;
|
|
165
|
+
"grade_id"?: number | null;
|
|
166
|
+
"status": string;
|
|
167
|
+
"verification_code"?: string | null;
|
|
168
|
+
"legacy_code"?: string | null;
|
|
169
|
+
"issued_by"?: string | null;
|
|
117
170
|
"issued_at": string;
|
|
118
171
|
"media_url"?: string | null;
|
|
172
|
+
"revoked_at"?: string | null;
|
|
173
|
+
"revoke_reason"?: string | null;
|
|
174
|
+
"render_snapshot": JsonValue;
|
|
119
175
|
"created_at": string;
|
|
176
|
+
"updated_at": string;
|
|
120
177
|
}
|
|
121
178
|
export interface CertificateUpdateCertificatePatchResponse extends ApiEnvelope<CertificateUpdateCertificatePatchResponseData> {
|
|
122
179
|
}
|
|
123
|
-
/** Backend query type:
|
|
180
|
+
/** Backend query type: models::ClassroomListQuery. */
|
|
124
181
|
export interface ClassroomIndexClassroomGetQuery extends QueryParams {
|
|
125
182
|
"page_number"?: number | null;
|
|
126
183
|
"page_size"?: number | null;
|
|
184
|
+
"search"?: string | null;
|
|
185
|
+
"status"?: string | null;
|
|
186
|
+
"course_id"?: number | null;
|
|
187
|
+
"teacher_user_id"?: string | null;
|
|
188
|
+
"consultant_user_id"?: string | null;
|
|
127
189
|
}
|
|
128
190
|
/** Backend response type: crate::models::PagedResult<models::ClassroomResponse>. */
|
|
129
191
|
export interface ClassroomIndexClassroomGetResponseItem extends JsonObject {
|
|
130
192
|
"id": number;
|
|
131
193
|
"course_id": number;
|
|
194
|
+
"course_name"?: string | null;
|
|
132
195
|
"name": string;
|
|
133
196
|
"code"?: string | null;
|
|
197
|
+
"description"?: string | null;
|
|
198
|
+
"info"?: string | null;
|
|
134
199
|
"classroom_type_id"?: number | null;
|
|
135
200
|
"school_grade_id"?: number | null;
|
|
201
|
+
"grade_id"?: number | null;
|
|
136
202
|
"teacher_user_id"?: string | null;
|
|
203
|
+
"teacher_profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
137
204
|
"consultant_user_id"?: string | null;
|
|
205
|
+
"consultant_profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
138
206
|
"capacity"?: number | null;
|
|
207
|
+
"notifications": JsonValue;
|
|
208
|
+
"weekly_schedule": JsonValue;
|
|
209
|
+
"check_sessions": JsonValue;
|
|
139
210
|
"starts_at"?: string | null;
|
|
140
211
|
"ends_at"?: string | null;
|
|
141
212
|
"status": string;
|
|
@@ -159,11 +230,17 @@ export interface ClassroomStoreClassroomPostInput extends JsonObject {
|
|
|
159
230
|
"course_id": number;
|
|
160
231
|
"name": string;
|
|
161
232
|
"code"?: string | null;
|
|
233
|
+
"description"?: string | null;
|
|
234
|
+
"info"?: string | null;
|
|
162
235
|
"classroom_type_id"?: number | null;
|
|
163
236
|
"school_grade_id"?: number | null;
|
|
237
|
+
"grade_id"?: number | null;
|
|
164
238
|
"teacher_user_id"?: string | null;
|
|
165
239
|
"consultant_user_id"?: string | null;
|
|
166
240
|
"capacity"?: number | null;
|
|
241
|
+
"notifications"?: JsonValue | null;
|
|
242
|
+
"weekly_schedule"?: JsonValue | null;
|
|
243
|
+
"check_sessions"?: JsonValue | null;
|
|
167
244
|
"starts_at"?: string | null;
|
|
168
245
|
"ends_at"?: string | null;
|
|
169
246
|
"status": string;
|
|
@@ -172,13 +249,22 @@ export interface ClassroomStoreClassroomPostInput extends JsonObject {
|
|
|
172
249
|
export interface ClassroomStoreClassroomPostResponseData extends JsonObject {
|
|
173
250
|
"id": number;
|
|
174
251
|
"course_id": number;
|
|
252
|
+
"course_name"?: string | null;
|
|
175
253
|
"name": string;
|
|
176
254
|
"code"?: string | null;
|
|
255
|
+
"description"?: string | null;
|
|
256
|
+
"info"?: string | null;
|
|
177
257
|
"classroom_type_id"?: number | null;
|
|
178
258
|
"school_grade_id"?: number | null;
|
|
259
|
+
"grade_id"?: number | null;
|
|
179
260
|
"teacher_user_id"?: string | null;
|
|
261
|
+
"teacher_profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
180
262
|
"consultant_user_id"?: string | null;
|
|
263
|
+
"consultant_profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
181
264
|
"capacity"?: number | null;
|
|
265
|
+
"notifications": JsonValue;
|
|
266
|
+
"weekly_schedule": JsonValue;
|
|
267
|
+
"check_sessions": JsonValue;
|
|
182
268
|
"starts_at"?: string | null;
|
|
183
269
|
"ends_at"?: string | null;
|
|
184
270
|
"status": string;
|
|
@@ -191,13 +277,22 @@ export interface ClassroomStoreClassroomPostResponse extends ApiEnvelope<Classro
|
|
|
191
277
|
export interface ClassroomShowClassroomGetResponseData extends JsonObject {
|
|
192
278
|
"id": number;
|
|
193
279
|
"course_id": number;
|
|
280
|
+
"course_name"?: string | null;
|
|
194
281
|
"name": string;
|
|
195
282
|
"code"?: string | null;
|
|
283
|
+
"description"?: string | null;
|
|
284
|
+
"info"?: string | null;
|
|
196
285
|
"classroom_type_id"?: number | null;
|
|
197
286
|
"school_grade_id"?: number | null;
|
|
287
|
+
"grade_id"?: number | null;
|
|
198
288
|
"teacher_user_id"?: string | null;
|
|
289
|
+
"teacher_profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
199
290
|
"consultant_user_id"?: string | null;
|
|
291
|
+
"consultant_profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
200
292
|
"capacity"?: number | null;
|
|
293
|
+
"notifications": JsonValue;
|
|
294
|
+
"weekly_schedule": JsonValue;
|
|
295
|
+
"check_sessions": JsonValue;
|
|
201
296
|
"starts_at"?: string | null;
|
|
202
297
|
"ends_at"?: string | null;
|
|
203
298
|
"status": string;
|
|
@@ -211,11 +306,17 @@ export interface ClassroomUpdateClassroomPatchInput extends JsonObject {
|
|
|
211
306
|
"course_id"?: number | null;
|
|
212
307
|
"name"?: string | null;
|
|
213
308
|
"code"?: string | null;
|
|
309
|
+
"description"?: string | null;
|
|
310
|
+
"info"?: string | null;
|
|
214
311
|
"classroom_type_id"?: number | null;
|
|
215
312
|
"school_grade_id"?: number | null;
|
|
313
|
+
"grade_id"?: number | null;
|
|
216
314
|
"teacher_user_id"?: string | null;
|
|
217
315
|
"consultant_user_id"?: string | null;
|
|
218
316
|
"capacity"?: number | null;
|
|
317
|
+
"notifications"?: JsonValue | null;
|
|
318
|
+
"weekly_schedule"?: JsonValue | null;
|
|
319
|
+
"check_sessions"?: JsonValue | null;
|
|
219
320
|
"starts_at"?: string | null;
|
|
220
321
|
"ends_at"?: string | null;
|
|
221
322
|
"status"?: string | null;
|
|
@@ -224,13 +325,22 @@ export interface ClassroomUpdateClassroomPatchInput extends JsonObject {
|
|
|
224
325
|
export interface ClassroomUpdateClassroomPatchResponseData extends JsonObject {
|
|
225
326
|
"id": number;
|
|
226
327
|
"course_id": number;
|
|
328
|
+
"course_name"?: string | null;
|
|
227
329
|
"name": string;
|
|
228
330
|
"code"?: string | null;
|
|
331
|
+
"description"?: string | null;
|
|
332
|
+
"info"?: string | null;
|
|
229
333
|
"classroom_type_id"?: number | null;
|
|
230
334
|
"school_grade_id"?: number | null;
|
|
335
|
+
"grade_id"?: number | null;
|
|
231
336
|
"teacher_user_id"?: string | null;
|
|
337
|
+
"teacher_profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
232
338
|
"consultant_user_id"?: string | null;
|
|
339
|
+
"consultant_profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
233
340
|
"capacity"?: number | null;
|
|
341
|
+
"notifications": JsonValue;
|
|
342
|
+
"weekly_schedule": JsonValue;
|
|
343
|
+
"check_sessions": JsonValue;
|
|
234
344
|
"starts_at"?: string | null;
|
|
235
345
|
"ends_at"?: string | null;
|
|
236
346
|
"status": string;
|
|
@@ -239,6 +349,19 @@ export interface ClassroomUpdateClassroomPatchResponseData extends JsonObject {
|
|
|
239
349
|
}
|
|
240
350
|
export interface ClassroomUpdateClassroomPatchResponse extends ApiEnvelope<ClassroomUpdateClassroomPatchResponseData> {
|
|
241
351
|
}
|
|
352
|
+
/** Backend request type: models::FinalizeClassroomRequest. */
|
|
353
|
+
export interface ClassroomFinalizeClassroomPostInput extends JsonObject {
|
|
354
|
+
"idempotency_key": string;
|
|
355
|
+
}
|
|
356
|
+
/** Backend response type: models::FinalizeClassroomResponse. */
|
|
357
|
+
export interface ClassroomFinalizeClassroomPostResponseData extends JsonObject {
|
|
358
|
+
"classroom_id": number;
|
|
359
|
+
"grades_finalized": number;
|
|
360
|
+
"certificates_issued": number;
|
|
361
|
+
"already_finalized": boolean;
|
|
362
|
+
}
|
|
363
|
+
export interface ClassroomFinalizeClassroomPostResponse extends ApiEnvelope<ClassroomFinalizeClassroomPostResponseData> {
|
|
364
|
+
}
|
|
242
365
|
/** Backend query type: PaginationQuery. */
|
|
243
366
|
export interface ClassroomIndexClassroomUsersGetQuery extends QueryParams {
|
|
244
367
|
"page_number"?: number | null;
|
|
@@ -249,6 +372,7 @@ export interface ClassroomIndexClassroomUsersGetResponseItem extends JsonObject
|
|
|
249
372
|
"id": number;
|
|
250
373
|
"classroom_id": number;
|
|
251
374
|
"user_id": string;
|
|
375
|
+
"profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
252
376
|
"score"?: number | null;
|
|
253
377
|
"status": string;
|
|
254
378
|
"created_at": string;
|
|
@@ -277,6 +401,7 @@ export interface ClassroomEnrollClassroomUserPostResponseData extends JsonObject
|
|
|
277
401
|
"id": number;
|
|
278
402
|
"classroom_id": number;
|
|
279
403
|
"user_id": string;
|
|
404
|
+
"profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
280
405
|
"score"?: number | null;
|
|
281
406
|
"status": string;
|
|
282
407
|
"created_at": string;
|
|
@@ -297,6 +422,7 @@ export interface ClassroomUpdateClassroomUserPatchResponseData extends JsonObjec
|
|
|
297
422
|
"id": number;
|
|
298
423
|
"classroom_id": number;
|
|
299
424
|
"user_id": string;
|
|
425
|
+
"profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
300
426
|
"score"?: number | null;
|
|
301
427
|
"status": string;
|
|
302
428
|
"created_at": string;
|
|
@@ -304,17 +430,32 @@ export interface ClassroomUpdateClassroomUserPatchResponseData extends JsonObjec
|
|
|
304
430
|
}
|
|
305
431
|
export interface ClassroomUpdateClassroomUserPatchResponse extends ApiEnvelope<ClassroomUpdateClassroomUserPatchResponseData> {
|
|
306
432
|
}
|
|
307
|
-
/** Backend query type:
|
|
433
|
+
/** Backend query type: models::SessionListQuery. */
|
|
308
434
|
export interface ClassroomIndexSessionGetQuery extends QueryParams {
|
|
309
435
|
"page_number"?: number | null;
|
|
310
436
|
"page_size"?: number | null;
|
|
437
|
+
"status"?: string | null;
|
|
438
|
+
"classroom_id"?: number | null;
|
|
439
|
+
"from"?: string | null;
|
|
440
|
+
"to"?: string | null;
|
|
311
441
|
}
|
|
312
442
|
/** Backend response type: crate::models::PagedResult<models::SessionResponse>. */
|
|
313
443
|
export interface ClassroomIndexSessionGetResponseItem extends JsonObject {
|
|
314
444
|
"id": number;
|
|
315
445
|
"classroom_id": number;
|
|
446
|
+
"classroom_name"?: string | null;
|
|
316
447
|
"course_session_id"?: number | null;
|
|
317
448
|
"name"?: string | null;
|
|
449
|
+
"session_number"?: number | null;
|
|
450
|
+
"duration_minutes"?: number | null;
|
|
451
|
+
"description"?: string | null;
|
|
452
|
+
"teacher_user_id"?: string | null;
|
|
453
|
+
"teacher_profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
454
|
+
"locked": boolean;
|
|
455
|
+
"auto_unlock": boolean;
|
|
456
|
+
"auto_present": boolean;
|
|
457
|
+
"invited": boolean;
|
|
458
|
+
"session_room_id"?: string | null;
|
|
318
459
|
"starts_at"?: string | null;
|
|
319
460
|
"ends_at"?: string | null;
|
|
320
461
|
"status": string;
|
|
@@ -338,6 +479,14 @@ export interface ClassroomStoreSessionPostInput extends JsonObject {
|
|
|
338
479
|
"classroom_id": number;
|
|
339
480
|
"course_session_id"?: number | null;
|
|
340
481
|
"name"?: string | null;
|
|
482
|
+
"session_number"?: number | null;
|
|
483
|
+
"duration_minutes"?: number | null;
|
|
484
|
+
"description"?: string | null;
|
|
485
|
+
"teacher_user_id"?: string | null;
|
|
486
|
+
"locked"?: boolean | null;
|
|
487
|
+
"auto_unlock"?: boolean | null;
|
|
488
|
+
"auto_present"?: boolean | null;
|
|
489
|
+
"invited"?: boolean | null;
|
|
341
490
|
"starts_at"?: string | null;
|
|
342
491
|
"ends_at"?: string | null;
|
|
343
492
|
"status": string;
|
|
@@ -346,8 +495,19 @@ export interface ClassroomStoreSessionPostInput extends JsonObject {
|
|
|
346
495
|
export interface ClassroomStoreSessionPostResponseData extends JsonObject {
|
|
347
496
|
"id": number;
|
|
348
497
|
"classroom_id": number;
|
|
498
|
+
"classroom_name"?: string | null;
|
|
349
499
|
"course_session_id"?: number | null;
|
|
350
500
|
"name"?: string | null;
|
|
501
|
+
"session_number"?: number | null;
|
|
502
|
+
"duration_minutes"?: number | null;
|
|
503
|
+
"description"?: string | null;
|
|
504
|
+
"teacher_user_id"?: string | null;
|
|
505
|
+
"teacher_profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
506
|
+
"locked": boolean;
|
|
507
|
+
"auto_unlock": boolean;
|
|
508
|
+
"auto_present": boolean;
|
|
509
|
+
"invited": boolean;
|
|
510
|
+
"session_room_id"?: string | null;
|
|
351
511
|
"starts_at"?: string | null;
|
|
352
512
|
"ends_at"?: string | null;
|
|
353
513
|
"status": string;
|
|
@@ -360,8 +520,19 @@ export interface ClassroomStoreSessionPostResponse extends ApiEnvelope<Classroom
|
|
|
360
520
|
export interface ClassroomShowSessionGetResponseData extends JsonObject {
|
|
361
521
|
"id": number;
|
|
362
522
|
"classroom_id": number;
|
|
523
|
+
"classroom_name"?: string | null;
|
|
363
524
|
"course_session_id"?: number | null;
|
|
364
525
|
"name"?: string | null;
|
|
526
|
+
"session_number"?: number | null;
|
|
527
|
+
"duration_minutes"?: number | null;
|
|
528
|
+
"description"?: string | null;
|
|
529
|
+
"teacher_user_id"?: string | null;
|
|
530
|
+
"teacher_profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
531
|
+
"locked": boolean;
|
|
532
|
+
"auto_unlock": boolean;
|
|
533
|
+
"auto_present": boolean;
|
|
534
|
+
"invited": boolean;
|
|
535
|
+
"session_room_id"?: string | null;
|
|
365
536
|
"starts_at"?: string | null;
|
|
366
537
|
"ends_at"?: string | null;
|
|
367
538
|
"status": string;
|
|
@@ -375,6 +546,14 @@ export interface ClassroomUpdateSessionPatchInput extends JsonObject {
|
|
|
375
546
|
"classroom_id"?: number | null;
|
|
376
547
|
"course_session_id"?: number | null;
|
|
377
548
|
"name"?: string | null;
|
|
549
|
+
"session_number"?: number | null;
|
|
550
|
+
"duration_minutes"?: number | null;
|
|
551
|
+
"description"?: string | null;
|
|
552
|
+
"teacher_user_id"?: string | null;
|
|
553
|
+
"locked"?: boolean | null;
|
|
554
|
+
"auto_unlock"?: boolean | null;
|
|
555
|
+
"auto_present"?: boolean | null;
|
|
556
|
+
"invited"?: boolean | null;
|
|
378
557
|
"starts_at"?: string | null;
|
|
379
558
|
"ends_at"?: string | null;
|
|
380
559
|
"status"?: string | null;
|
|
@@ -383,8 +562,19 @@ export interface ClassroomUpdateSessionPatchInput extends JsonObject {
|
|
|
383
562
|
export interface ClassroomUpdateSessionPatchResponseData extends JsonObject {
|
|
384
563
|
"id": number;
|
|
385
564
|
"classroom_id": number;
|
|
565
|
+
"classroom_name"?: string | null;
|
|
386
566
|
"course_session_id"?: number | null;
|
|
387
567
|
"name"?: string | null;
|
|
568
|
+
"session_number"?: number | null;
|
|
569
|
+
"duration_minutes"?: number | null;
|
|
570
|
+
"description"?: string | null;
|
|
571
|
+
"teacher_user_id"?: string | null;
|
|
572
|
+
"teacher_profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
573
|
+
"locked": boolean;
|
|
574
|
+
"auto_unlock": boolean;
|
|
575
|
+
"auto_present": boolean;
|
|
576
|
+
"invited": boolean;
|
|
577
|
+
"session_room_id"?: string | null;
|
|
388
578
|
"starts_at"?: string | null;
|
|
389
579
|
"ends_at"?: string | null;
|
|
390
580
|
"status": string;
|
|
@@ -394,103 +584,70 @@ export interface ClassroomUpdateSessionPatchResponseData extends JsonObject {
|
|
|
394
584
|
export interface ClassroomUpdateSessionPatchResponse extends ApiEnvelope<ClassroomUpdateSessionPatchResponseData> {
|
|
395
585
|
}
|
|
396
586
|
/** Backend query type: PaginationQuery. */
|
|
397
|
-
export interface
|
|
587
|
+
export interface ClassroomIndexAttendanceGetQuery extends QueryParams {
|
|
398
588
|
"page_number"?: number | null;
|
|
399
589
|
"page_size"?: number | null;
|
|
400
590
|
}
|
|
401
591
|
/** Backend response type: crate::models::PagedResult<models::AbsenceResponse>. */
|
|
402
|
-
export interface
|
|
592
|
+
export interface ClassroomIndexAttendanceGetResponseItem extends JsonObject {
|
|
403
593
|
"id": number;
|
|
404
594
|
"classroom_session_id": number;
|
|
405
595
|
"user_id": string;
|
|
596
|
+
"profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
406
597
|
"status": string;
|
|
407
598
|
"absence_reason"?: string | null;
|
|
408
599
|
"created_at": string;
|
|
409
600
|
}
|
|
410
|
-
export interface
|
|
601
|
+
export interface ClassroomIndexAttendanceGetResponsePageMeta extends JsonObject {
|
|
411
602
|
"page": number;
|
|
412
603
|
"page_size": number;
|
|
413
604
|
"total_items": number;
|
|
414
605
|
"total_pages": number;
|
|
415
606
|
}
|
|
416
|
-
export interface
|
|
417
|
-
"data":
|
|
418
|
-
"meta":
|
|
607
|
+
export interface ClassroomIndexAttendanceGetResponseData extends JsonObject {
|
|
608
|
+
"data": ClassroomIndexAttendanceGetResponseItem[];
|
|
609
|
+
"meta": ClassroomIndexAttendanceGetResponsePageMeta;
|
|
419
610
|
}
|
|
420
|
-
export interface
|
|
611
|
+
export interface ClassroomIndexAttendanceGetResponse extends ApiEnvelope<ClassroomIndexAttendanceGetResponseData> {
|
|
612
|
+
}
|
|
613
|
+
/** Backend request type: models::BatchAttendanceRequest. */
|
|
614
|
+
export interface ClassroomRecordAttendancePutInput extends JsonObject {
|
|
615
|
+
"items": BackendJson<"AttendanceItem">[];
|
|
616
|
+
"idempotency_key": string;
|
|
617
|
+
}
|
|
618
|
+
/** Backend response type: models::BatchAttendanceResponse. */
|
|
619
|
+
export interface ClassroomRecordAttendancePutResponseData extends JsonObject {
|
|
620
|
+
"classroom_session_id": number;
|
|
621
|
+
"updated": number;
|
|
622
|
+
}
|
|
623
|
+
export interface ClassroomRecordAttendancePutResponse extends ApiEnvelope<ClassroomRecordAttendancePutResponseData> {
|
|
421
624
|
}
|
|
422
625
|
/** Backend query type: PaginationQuery. */
|
|
423
|
-
export interface
|
|
626
|
+
export interface ClassroomIndexAbsencesGetQuery extends QueryParams {
|
|
424
627
|
"page_number"?: number | null;
|
|
425
628
|
"page_size"?: number | null;
|
|
426
629
|
}
|
|
427
|
-
/** Backend response type: crate::models::PagedResult<models::
|
|
428
|
-
export interface
|
|
630
|
+
/** Backend response type: crate::models::PagedResult<models::AbsenceResponse>. */
|
|
631
|
+
export interface ClassroomIndexAbsencesGetResponseItem extends JsonObject {
|
|
429
632
|
"id": number;
|
|
430
|
-
"
|
|
431
|
-
"
|
|
432
|
-
"
|
|
633
|
+
"classroom_session_id": number;
|
|
634
|
+
"user_id": string;
|
|
635
|
+
"profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
433
636
|
"status": string;
|
|
637
|
+
"absence_reason"?: string | null;
|
|
434
638
|
"created_at": string;
|
|
435
639
|
}
|
|
436
|
-
export interface
|
|
640
|
+
export interface ClassroomIndexAbsencesGetResponsePageMeta extends JsonObject {
|
|
437
641
|
"page": number;
|
|
438
642
|
"page_size": number;
|
|
439
643
|
"total_items": number;
|
|
440
644
|
"total_pages": number;
|
|
441
645
|
}
|
|
442
|
-
export interface
|
|
443
|
-
"data":
|
|
444
|
-
"meta":
|
|
445
|
-
}
|
|
446
|
-
export interface OpsIndexClubProjectGetResponse extends ApiEnvelope<OpsIndexClubProjectGetResponseData> {
|
|
447
|
-
}
|
|
448
|
-
/** Backend request type: models::CreateClubProjectRequest. */
|
|
449
|
-
export interface OpsStoreClubProjectPostInput extends JsonObject {
|
|
450
|
-
"name": string;
|
|
451
|
-
"description"?: string | null;
|
|
452
|
-
"owner_user_id"?: string | null;
|
|
453
|
-
"status": string;
|
|
454
|
-
}
|
|
455
|
-
/** Backend response type: models::ClubProjectResponse. */
|
|
456
|
-
export interface OpsStoreClubProjectPostResponseData extends JsonObject {
|
|
457
|
-
"id": number;
|
|
458
|
-
"name": string;
|
|
459
|
-
"description"?: string | null;
|
|
460
|
-
"owner_user_id"?: string | null;
|
|
461
|
-
"status": string;
|
|
462
|
-
"created_at": string;
|
|
463
|
-
}
|
|
464
|
-
export interface OpsStoreClubProjectPostResponse extends ApiEnvelope<OpsStoreClubProjectPostResponseData> {
|
|
465
|
-
}
|
|
466
|
-
/** Backend response type: models::ClubProjectResponse. */
|
|
467
|
-
export interface OpsShowClubProjectGetResponseData extends JsonObject {
|
|
468
|
-
"id": number;
|
|
469
|
-
"name": string;
|
|
470
|
-
"description"?: string | null;
|
|
471
|
-
"owner_user_id"?: string | null;
|
|
472
|
-
"status": string;
|
|
473
|
-
"created_at": string;
|
|
474
|
-
}
|
|
475
|
-
export interface OpsShowClubProjectGetResponse extends ApiEnvelope<OpsShowClubProjectGetResponseData> {
|
|
476
|
-
}
|
|
477
|
-
/** Backend request type: models::UpdateClubProjectRequest. */
|
|
478
|
-
export interface OpsUpdateClubProjectPatchInput extends JsonObject {
|
|
479
|
-
"name"?: string | null;
|
|
480
|
-
"description"?: string | null;
|
|
481
|
-
"owner_user_id"?: string | null;
|
|
482
|
-
"status"?: string | null;
|
|
483
|
-
}
|
|
484
|
-
/** Backend response type: models::ClubProjectResponse. */
|
|
485
|
-
export interface OpsUpdateClubProjectPatchResponseData extends JsonObject {
|
|
486
|
-
"id": number;
|
|
487
|
-
"name": string;
|
|
488
|
-
"description"?: string | null;
|
|
489
|
-
"owner_user_id"?: string | null;
|
|
490
|
-
"status": string;
|
|
491
|
-
"created_at": string;
|
|
646
|
+
export interface ClassroomIndexAbsencesGetResponseData extends JsonObject {
|
|
647
|
+
"data": ClassroomIndexAbsencesGetResponseItem[];
|
|
648
|
+
"meta": ClassroomIndexAbsencesGetResponsePageMeta;
|
|
492
649
|
}
|
|
493
|
-
export interface
|
|
650
|
+
export interface ClassroomIndexAbsencesGetResponse extends ApiEnvelope<ClassroomIndexAbsencesGetResponseData> {
|
|
494
651
|
}
|
|
495
652
|
/** Backend query type: PaginationQuery. */
|
|
496
653
|
export interface ConfigIndexClassroomTypeGetQuery extends QueryParams {
|
|
@@ -676,71 +833,87 @@ export interface ConfigUpdateGradePatchResponseData extends JsonObject {
|
|
|
676
833
|
export interface ConfigUpdateGradePatchResponse extends ApiEnvelope<ConfigUpdateGradePatchResponseData> {
|
|
677
834
|
}
|
|
678
835
|
/** Backend query type: PaginationQuery. */
|
|
679
|
-
export interface
|
|
836
|
+
export interface ConfigIndexHolidayGetQuery extends QueryParams {
|
|
680
837
|
"page_number"?: number | null;
|
|
681
838
|
"page_size"?: number | null;
|
|
682
839
|
}
|
|
683
|
-
/** Backend response type: crate::models::PagedResult<models::
|
|
684
|
-
export interface
|
|
840
|
+
/** Backend response type: crate::models::PagedResult<models::HolidayResponse>. */
|
|
841
|
+
export interface ConfigIndexHolidayGetResponseItem extends JsonObject {
|
|
685
842
|
"id": number;
|
|
686
843
|
"name": string;
|
|
687
|
-
"
|
|
688
|
-
"
|
|
844
|
+
"description"?: string | null;
|
|
845
|
+
"holiday_date": string;
|
|
846
|
+
"sort_order": number;
|
|
847
|
+
"status": string;
|
|
689
848
|
"created_at": string;
|
|
849
|
+
"updated_at": string;
|
|
690
850
|
}
|
|
691
|
-
export interface
|
|
851
|
+
export interface ConfigIndexHolidayGetResponsePageMeta extends JsonObject {
|
|
692
852
|
"page": number;
|
|
693
853
|
"page_size": number;
|
|
694
854
|
"total_items": number;
|
|
695
855
|
"total_pages": number;
|
|
696
856
|
}
|
|
697
|
-
export interface
|
|
698
|
-
"data":
|
|
699
|
-
"meta":
|
|
857
|
+
export interface ConfigIndexHolidayGetResponseData extends JsonObject {
|
|
858
|
+
"data": ConfigIndexHolidayGetResponseItem[];
|
|
859
|
+
"meta": ConfigIndexHolidayGetResponsePageMeta;
|
|
700
860
|
}
|
|
701
|
-
export interface
|
|
861
|
+
export interface ConfigIndexHolidayGetResponse extends ApiEnvelope<ConfigIndexHolidayGetResponseData> {
|
|
702
862
|
}
|
|
703
|
-
/** Backend request type: models::
|
|
704
|
-
export interface
|
|
863
|
+
/** Backend request type: models::CreateHolidayRequest. */
|
|
864
|
+
export interface ConfigStoreHolidayPostInput extends JsonObject {
|
|
705
865
|
"name": string;
|
|
706
|
-
"
|
|
707
|
-
"
|
|
866
|
+
"description"?: string | null;
|
|
867
|
+
"holiday_date": string;
|
|
868
|
+
"sort_order": number;
|
|
869
|
+
"status": string;
|
|
708
870
|
}
|
|
709
|
-
/** Backend response type: models::
|
|
710
|
-
export interface
|
|
871
|
+
/** Backend response type: models::HolidayResponse. */
|
|
872
|
+
export interface ConfigStoreHolidayPostResponseData extends JsonObject {
|
|
711
873
|
"id": number;
|
|
712
874
|
"name": string;
|
|
713
|
-
"
|
|
714
|
-
"
|
|
875
|
+
"description"?: string | null;
|
|
876
|
+
"holiday_date": string;
|
|
877
|
+
"sort_order": number;
|
|
878
|
+
"status": string;
|
|
715
879
|
"created_at": string;
|
|
880
|
+
"updated_at": string;
|
|
716
881
|
}
|
|
717
|
-
export interface
|
|
882
|
+
export interface ConfigStoreHolidayPostResponse extends ApiEnvelope<ConfigStoreHolidayPostResponseData> {
|
|
718
883
|
}
|
|
719
|
-
/** Backend response type: models::
|
|
720
|
-
export interface
|
|
884
|
+
/** Backend response type: models::HolidayResponse. */
|
|
885
|
+
export interface ConfigShowHolidayGetResponseData extends JsonObject {
|
|
721
886
|
"id": number;
|
|
722
887
|
"name": string;
|
|
723
|
-
"
|
|
724
|
-
"
|
|
888
|
+
"description"?: string | null;
|
|
889
|
+
"holiday_date": string;
|
|
890
|
+
"sort_order": number;
|
|
891
|
+
"status": string;
|
|
725
892
|
"created_at": string;
|
|
893
|
+
"updated_at": string;
|
|
726
894
|
}
|
|
727
|
-
export interface
|
|
895
|
+
export interface ConfigShowHolidayGetResponse extends ApiEnvelope<ConfigShowHolidayGetResponseData> {
|
|
728
896
|
}
|
|
729
|
-
/** Backend request type: models::
|
|
730
|
-
export interface
|
|
897
|
+
/** Backend request type: models::UpdateHolidayRequest. */
|
|
898
|
+
export interface ConfigUpdateHolidayPatchInput extends JsonObject {
|
|
731
899
|
"name"?: string | null;
|
|
732
|
-
"
|
|
733
|
-
"
|
|
900
|
+
"description"?: string | null;
|
|
901
|
+
"holiday_date"?: string | null;
|
|
902
|
+
"sort_order"?: number | null;
|
|
903
|
+
"status"?: string | null;
|
|
734
904
|
}
|
|
735
|
-
/** Backend response type: models::
|
|
736
|
-
export interface
|
|
905
|
+
/** Backend response type: models::HolidayResponse. */
|
|
906
|
+
export interface ConfigUpdateHolidayPatchResponseData extends JsonObject {
|
|
737
907
|
"id": number;
|
|
738
908
|
"name": string;
|
|
739
|
-
"
|
|
740
|
-
"
|
|
909
|
+
"description"?: string | null;
|
|
910
|
+
"holiday_date": string;
|
|
911
|
+
"sort_order": number;
|
|
912
|
+
"status": string;
|
|
741
913
|
"created_at": string;
|
|
914
|
+
"updated_at": string;
|
|
742
915
|
}
|
|
743
|
-
export interface
|
|
916
|
+
export interface ConfigUpdateHolidayPatchResponse extends ApiEnvelope<ConfigUpdateHolidayPatchResponseData> {
|
|
744
917
|
}
|
|
745
918
|
/** Backend query type: PaginationQuery. */
|
|
746
919
|
export interface ConfigIndexWeekendGetQuery extends QueryParams {
|
|
@@ -810,6 +983,7 @@ export interface CourseIndexCourseGetResponseItem extends JsonObject {
|
|
|
810
983
|
"name": string;
|
|
811
984
|
"title"?: string | null;
|
|
812
985
|
"description"?: string | null;
|
|
986
|
+
"cover_url"?: string | null;
|
|
813
987
|
"sort_order": number;
|
|
814
988
|
"duration"?: string | null;
|
|
815
989
|
"passing_mark"?: number | null;
|
|
@@ -836,7 +1010,8 @@ export interface CourseStoreCoursePostInput extends JsonObject {
|
|
|
836
1010
|
"name": string;
|
|
837
1011
|
"title"?: string | null;
|
|
838
1012
|
"description"?: string | null;
|
|
839
|
-
"
|
|
1013
|
+
"cover_url"?: string | null;
|
|
1014
|
+
"sort_order"?: number;
|
|
840
1015
|
"duration"?: string | null;
|
|
841
1016
|
"passing_mark"?: number | null;
|
|
842
1017
|
"price"?: string | null;
|
|
@@ -849,6 +1024,7 @@ export interface CourseStoreCoursePostResponseData extends JsonObject {
|
|
|
849
1024
|
"name": string;
|
|
850
1025
|
"title"?: string | null;
|
|
851
1026
|
"description"?: string | null;
|
|
1027
|
+
"cover_url"?: string | null;
|
|
852
1028
|
"sort_order": number;
|
|
853
1029
|
"duration"?: string | null;
|
|
854
1030
|
"passing_mark"?: number | null;
|
|
@@ -872,9 +1048,12 @@ export interface CourseIndexSessionGetResponseItem extends JsonObject {
|
|
|
872
1048
|
"description"?: string | null;
|
|
873
1049
|
"sort_order": number;
|
|
874
1050
|
"session_type": string;
|
|
1051
|
+
"session_type_id"?: number | null;
|
|
875
1052
|
"exam_id"?: number | null;
|
|
876
1053
|
"duration_minutes"?: number | null;
|
|
877
1054
|
"auto_unlock": boolean;
|
|
1055
|
+
"info"?: string | null;
|
|
1056
|
+
"drm_mixed_media_id"?: BackendJson<"uuid::Uuid"> | null;
|
|
878
1057
|
"status": string;
|
|
879
1058
|
"created_at": string;
|
|
880
1059
|
"updated_at": string;
|
|
@@ -898,9 +1077,12 @@ export interface CourseStoreSessionPostInput extends JsonObject {
|
|
|
898
1077
|
"description"?: string | null;
|
|
899
1078
|
"sort_order": number;
|
|
900
1079
|
"session_type": string;
|
|
1080
|
+
"session_type_id"?: number | null;
|
|
901
1081
|
"exam_id"?: number | null;
|
|
902
1082
|
"duration_minutes"?: number | null;
|
|
903
1083
|
"auto_unlock": boolean;
|
|
1084
|
+
"info"?: string | null;
|
|
1085
|
+
"drm_mixed_media_id"?: BackendJson<"uuid::Uuid"> | null;
|
|
904
1086
|
"status": string;
|
|
905
1087
|
}
|
|
906
1088
|
/** Backend response type: models::SessionResponse. */
|
|
@@ -911,9 +1093,12 @@ export interface CourseStoreSessionPostResponseData extends JsonObject {
|
|
|
911
1093
|
"description"?: string | null;
|
|
912
1094
|
"sort_order": number;
|
|
913
1095
|
"session_type": string;
|
|
1096
|
+
"session_type_id"?: number | null;
|
|
914
1097
|
"exam_id"?: number | null;
|
|
915
1098
|
"duration_minutes"?: number | null;
|
|
916
1099
|
"auto_unlock": boolean;
|
|
1100
|
+
"info"?: string | null;
|
|
1101
|
+
"drm_mixed_media_id"?: BackendJson<"uuid::Uuid"> | null;
|
|
917
1102
|
"status": string;
|
|
918
1103
|
"created_at": string;
|
|
919
1104
|
"updated_at": string;
|
|
@@ -931,9 +1116,12 @@ export interface CourseShowSessionGetResponseData extends JsonObject {
|
|
|
931
1116
|
"description"?: string | null;
|
|
932
1117
|
"sort_order": number;
|
|
933
1118
|
"session_type": string;
|
|
1119
|
+
"session_type_id"?: number | null;
|
|
934
1120
|
"exam_id"?: number | null;
|
|
935
1121
|
"duration_minutes"?: number | null;
|
|
936
1122
|
"auto_unlock": boolean;
|
|
1123
|
+
"info"?: string | null;
|
|
1124
|
+
"drm_mixed_media_id"?: BackendJson<"uuid::Uuid"> | null;
|
|
937
1125
|
"status": string;
|
|
938
1126
|
"created_at": string;
|
|
939
1127
|
"updated_at": string;
|
|
@@ -946,9 +1134,12 @@ export interface CourseUpdateSessionPatchInput extends JsonObject {
|
|
|
946
1134
|
"description"?: string | null;
|
|
947
1135
|
"sort_order"?: number | null;
|
|
948
1136
|
"session_type"?: string | null;
|
|
1137
|
+
"session_type_id"?: number | null;
|
|
949
1138
|
"exam_id"?: number | null;
|
|
950
1139
|
"duration_minutes"?: number | null;
|
|
951
1140
|
"auto_unlock"?: boolean | null;
|
|
1141
|
+
"info"?: string | null;
|
|
1142
|
+
"drm_mixed_media_id"?: BackendJson<"uuid::Uuid"> | null;
|
|
952
1143
|
"status"?: string | null;
|
|
953
1144
|
}
|
|
954
1145
|
/** Backend response type: models::SessionResponse. */
|
|
@@ -959,9 +1150,12 @@ export interface CourseUpdateSessionPatchResponseData extends JsonObject {
|
|
|
959
1150
|
"description"?: string | null;
|
|
960
1151
|
"sort_order": number;
|
|
961
1152
|
"session_type": string;
|
|
1153
|
+
"session_type_id"?: number | null;
|
|
962
1154
|
"exam_id"?: number | null;
|
|
963
1155
|
"duration_minutes"?: number | null;
|
|
964
1156
|
"auto_unlock": boolean;
|
|
1157
|
+
"info"?: string | null;
|
|
1158
|
+
"drm_mixed_media_id"?: BackendJson<"uuid::Uuid"> | null;
|
|
965
1159
|
"status": string;
|
|
966
1160
|
"created_at": string;
|
|
967
1161
|
"updated_at": string;
|
|
@@ -978,6 +1172,7 @@ export interface CourseShowCourseGetResponseData extends JsonObject {
|
|
|
978
1172
|
"name": string;
|
|
979
1173
|
"title"?: string | null;
|
|
980
1174
|
"description"?: string | null;
|
|
1175
|
+
"cover_url"?: string | null;
|
|
981
1176
|
"sort_order": number;
|
|
982
1177
|
"duration"?: string | null;
|
|
983
1178
|
"passing_mark"?: number | null;
|
|
@@ -994,6 +1189,7 @@ export interface CourseUpdateCoursePatchInput extends JsonObject {
|
|
|
994
1189
|
"name"?: string | null;
|
|
995
1190
|
"title"?: string | null;
|
|
996
1191
|
"description"?: string | null;
|
|
1192
|
+
"cover_url"?: string | null;
|
|
997
1193
|
"sort_order"?: number | null;
|
|
998
1194
|
"duration"?: string | null;
|
|
999
1195
|
"passing_mark"?: number | null;
|
|
@@ -1007,6 +1203,7 @@ export interface CourseUpdateCoursePatchResponseData extends JsonObject {
|
|
|
1007
1203
|
"name": string;
|
|
1008
1204
|
"title"?: string | null;
|
|
1009
1205
|
"description"?: string | null;
|
|
1206
|
+
"cover_url"?: string | null;
|
|
1010
1207
|
"sort_order": number;
|
|
1011
1208
|
"duration"?: string | null;
|
|
1012
1209
|
"passing_mark"?: number | null;
|
|
@@ -1027,6 +1224,7 @@ export interface CourseIndexCategoryGetResponseItem extends JsonObject {
|
|
|
1027
1224
|
"id": number;
|
|
1028
1225
|
"name": string;
|
|
1029
1226
|
"description"?: string | null;
|
|
1227
|
+
"image_url"?: string | null;
|
|
1030
1228
|
"sort_order": number;
|
|
1031
1229
|
"status": string;
|
|
1032
1230
|
"created_at": string;
|
|
@@ -1048,6 +1246,7 @@ export interface CourseIndexCategoryGetResponse extends ApiEnvelope<CourseIndexC
|
|
|
1048
1246
|
export interface CourseStoreCategoryPostInput extends JsonObject {
|
|
1049
1247
|
"name": string;
|
|
1050
1248
|
"description"?: string | null;
|
|
1249
|
+
"image_url"?: string | null;
|
|
1051
1250
|
"sort_order": number;
|
|
1052
1251
|
"status": string;
|
|
1053
1252
|
}
|
|
@@ -1056,6 +1255,7 @@ export interface CourseStoreCategoryPostResponseData extends JsonObject {
|
|
|
1056
1255
|
"id": number;
|
|
1057
1256
|
"name": string;
|
|
1058
1257
|
"description"?: string | null;
|
|
1258
|
+
"image_url"?: string | null;
|
|
1059
1259
|
"sort_order": number;
|
|
1060
1260
|
"status": string;
|
|
1061
1261
|
"created_at": string;
|
|
@@ -1071,6 +1271,7 @@ export interface CourseShowCategoryGetResponseData extends JsonObject {
|
|
|
1071
1271
|
"id": number;
|
|
1072
1272
|
"name": string;
|
|
1073
1273
|
"description"?: string | null;
|
|
1274
|
+
"image_url"?: string | null;
|
|
1074
1275
|
"sort_order": number;
|
|
1075
1276
|
"status": string;
|
|
1076
1277
|
"created_at": string;
|
|
@@ -1082,6 +1283,7 @@ export interface CourseShowCategoryGetResponse extends ApiEnvelope<CourseShowCat
|
|
|
1082
1283
|
export interface CourseUpdateCategoryPatchInput extends JsonObject {
|
|
1083
1284
|
"name"?: string | null;
|
|
1084
1285
|
"description"?: string | null;
|
|
1286
|
+
"image_url"?: string | null;
|
|
1085
1287
|
"sort_order"?: number | null;
|
|
1086
1288
|
"status"?: string | null;
|
|
1087
1289
|
}
|
|
@@ -1090,6 +1292,7 @@ export interface CourseUpdateCategoryPatchResponseData extends JsonObject {
|
|
|
1090
1292
|
"id": number;
|
|
1091
1293
|
"name": string;
|
|
1092
1294
|
"description"?: string | null;
|
|
1295
|
+
"image_url"?: string | null;
|
|
1093
1296
|
"sort_order": number;
|
|
1094
1297
|
"status": string;
|
|
1095
1298
|
"created_at": string;
|
|
@@ -1097,115 +1300,21 @@ export interface CourseUpdateCategoryPatchResponseData extends JsonObject {
|
|
|
1097
1300
|
}
|
|
1098
1301
|
export interface CourseUpdateCategoryPatchResponse extends ApiEnvelope<CourseUpdateCategoryPatchResponseData> {
|
|
1099
1302
|
}
|
|
1100
|
-
/** Backend
|
|
1101
|
-
export interface
|
|
1102
|
-
"
|
|
1103
|
-
"
|
|
1104
|
-
}
|
|
1105
|
-
/** Backend response type: crate::models::PagedResult<models::VideoSectionResponse>. */
|
|
1106
|
-
export interface CourseIndexVideoSectionGetResponseItem extends JsonObject {
|
|
1107
|
-
"id": number;
|
|
1108
|
-
"course_id": number;
|
|
1109
|
-
"course_session_id"?: number | null;
|
|
1110
|
-
"name": string;
|
|
1111
|
-
"sort_order": number;
|
|
1112
|
-
"media_url"?: string | null;
|
|
1113
|
-
"video_type": string;
|
|
1114
|
-
"external_url"?: string | null;
|
|
1115
|
-
"drm_url"?: string | null;
|
|
1116
|
-
"drm_media_id"?: BackendJson<"uuid::Uuid"> | null;
|
|
1117
|
-
"created_at": string;
|
|
1118
|
-
"updated_at": string;
|
|
1119
|
-
}
|
|
1120
|
-
export interface CourseIndexVideoSectionGetResponsePageMeta extends JsonObject {
|
|
1121
|
-
"page": number;
|
|
1122
|
-
"page_size": number;
|
|
1123
|
-
"total_items": number;
|
|
1124
|
-
"total_pages": number;
|
|
1125
|
-
}
|
|
1126
|
-
export interface CourseIndexVideoSectionGetResponseData extends JsonObject {
|
|
1127
|
-
"data": CourseIndexVideoSectionGetResponseItem[];
|
|
1128
|
-
"meta": CourseIndexVideoSectionGetResponsePageMeta;
|
|
1129
|
-
}
|
|
1130
|
-
export interface CourseIndexVideoSectionGetResponse extends ApiEnvelope<CourseIndexVideoSectionGetResponseData> {
|
|
1131
|
-
}
|
|
1132
|
-
/** Backend request type: models::CreateVideoSectionRequest. */
|
|
1133
|
-
export interface CourseStoreVideoSectionPostInput extends JsonObject {
|
|
1134
|
-
"course_id": number;
|
|
1135
|
-
"course_session_id"?: number | null;
|
|
1136
|
-
"name": string;
|
|
1137
|
-
"sort_order": number;
|
|
1138
|
-
"media_url"?: string | null;
|
|
1139
|
-
"video_type"?: string | null;
|
|
1140
|
-
"external_url"?: string | null;
|
|
1141
|
-
"drm_url"?: string | null;
|
|
1142
|
-
"drm_media_id"?: BackendJson<"uuid::Uuid"> | null;
|
|
1143
|
-
}
|
|
1144
|
-
/** Backend response type: models::VideoSectionResponse. */
|
|
1145
|
-
export interface CourseStoreVideoSectionPostResponseData extends JsonObject {
|
|
1146
|
-
"id": number;
|
|
1147
|
-
"course_id": number;
|
|
1148
|
-
"course_session_id"?: number | null;
|
|
1149
|
-
"name": string;
|
|
1150
|
-
"sort_order": number;
|
|
1151
|
-
"media_url"?: string | null;
|
|
1152
|
-
"video_type": string;
|
|
1153
|
-
"external_url"?: string | null;
|
|
1154
|
-
"drm_url"?: string | null;
|
|
1155
|
-
"drm_media_id"?: BackendJson<"uuid::Uuid"> | null;
|
|
1156
|
-
"created_at": string;
|
|
1157
|
-
"updated_at": string;
|
|
1158
|
-
}
|
|
1159
|
-
export interface CourseStoreVideoSectionPostResponse extends ApiEnvelope<CourseStoreVideoSectionPostResponseData> {
|
|
1303
|
+
/** Backend request type: models::ReorderRequest. */
|
|
1304
|
+
export interface CourseReorderCategoriesPatchInput extends JsonObject {
|
|
1305
|
+
"active_id": number;
|
|
1306
|
+
"over_id": number;
|
|
1160
1307
|
}
|
|
1161
1308
|
/** Backend response type: serde_json::Value. */
|
|
1162
|
-
export interface
|
|
1163
|
-
}
|
|
1164
|
-
/** Backend response type: models::VideoSectionResponse. */
|
|
1165
|
-
export interface CourseShowVideoSectionGetResponseData extends JsonObject {
|
|
1166
|
-
"id": number;
|
|
1167
|
-
"course_id": number;
|
|
1168
|
-
"course_session_id"?: number | null;
|
|
1169
|
-
"name": string;
|
|
1170
|
-
"sort_order": number;
|
|
1171
|
-
"media_url"?: string | null;
|
|
1172
|
-
"video_type": string;
|
|
1173
|
-
"external_url"?: string | null;
|
|
1174
|
-
"drm_url"?: string | null;
|
|
1175
|
-
"drm_media_id"?: BackendJson<"uuid::Uuid"> | null;
|
|
1176
|
-
"created_at": string;
|
|
1177
|
-
"updated_at": string;
|
|
1178
|
-
}
|
|
1179
|
-
export interface CourseShowVideoSectionGetResponse extends ApiEnvelope<CourseShowVideoSectionGetResponseData> {
|
|
1180
|
-
}
|
|
1181
|
-
/** Backend request type: models::UpdateVideoSectionRequest. */
|
|
1182
|
-
export interface CourseUpdateVideoSectionPatchInput extends JsonObject {
|
|
1183
|
-
"course_id"?: number | null;
|
|
1184
|
-
"course_session_id"?: number | null;
|
|
1185
|
-
"name"?: string | null;
|
|
1186
|
-
"sort_order"?: number | null;
|
|
1187
|
-
"media_url"?: string | null;
|
|
1188
|
-
"video_type"?: string | null;
|
|
1189
|
-
"external_url"?: string | null;
|
|
1190
|
-
"drm_url"?: string | null;
|
|
1191
|
-
"drm_media_id"?: BackendJson<"uuid::Uuid"> | null;
|
|
1309
|
+
export interface CourseReorderCategoriesPatchResponse extends ApiEnvelope<JsonValue> {
|
|
1192
1310
|
}
|
|
1193
|
-
/** Backend
|
|
1194
|
-
export interface
|
|
1195
|
-
"
|
|
1196
|
-
"
|
|
1197
|
-
"course_session_id"?: number | null;
|
|
1198
|
-
"name": string;
|
|
1199
|
-
"sort_order": number;
|
|
1200
|
-
"media_url"?: string | null;
|
|
1201
|
-
"video_type": string;
|
|
1202
|
-
"external_url"?: string | null;
|
|
1203
|
-
"drm_url"?: string | null;
|
|
1204
|
-
"drm_media_id"?: BackendJson<"uuid::Uuid"> | null;
|
|
1205
|
-
"created_at": string;
|
|
1206
|
-
"updated_at": string;
|
|
1311
|
+
/** Backend request type: models::ReorderRequest. */
|
|
1312
|
+
export interface CourseReorderCoursesPatchInput extends JsonObject {
|
|
1313
|
+
"active_id": number;
|
|
1314
|
+
"over_id": number;
|
|
1207
1315
|
}
|
|
1208
|
-
|
|
1316
|
+
/** Backend response type: serde_json::Value. */
|
|
1317
|
+
export interface CourseReorderCoursesPatchResponse extends ApiEnvelope<JsonValue> {
|
|
1209
1318
|
}
|
|
1210
1319
|
/** Backend response type: models::DashboardStats. */
|
|
1211
1320
|
export interface DashboardIndexGetResponseData extends JsonObject {
|
|
@@ -1228,325 +1337,244 @@ export interface DocsIntegrationGetResponseData extends JsonObject {
|
|
|
1228
1337
|
}
|
|
1229
1338
|
export interface DocsIntegrationGetResponse extends ApiEnvelope<DocsIntegrationGetResponseData> {
|
|
1230
1339
|
}
|
|
1231
|
-
/** Backend query type:
|
|
1232
|
-
export interface
|
|
1340
|
+
/** Backend query type: models::ExamListQuery. */
|
|
1341
|
+
export interface ExamIndexExamGetQuery extends QueryParams {
|
|
1233
1342
|
"page_number"?: number | null;
|
|
1234
1343
|
"page_size"?: number | null;
|
|
1344
|
+
"search"?: string | null;
|
|
1345
|
+
"status"?: string | null;
|
|
1346
|
+
"course_id"?: number | null;
|
|
1347
|
+
"grade_id"?: number | null;
|
|
1235
1348
|
}
|
|
1236
|
-
/** Backend response type: crate::models::PagedResult<models::
|
|
1237
|
-
export interface
|
|
1349
|
+
/** Backend response type: crate::models::PagedResult<models::ExamResponse>. */
|
|
1350
|
+
export interface ExamIndexExamGetResponseItem extends JsonObject {
|
|
1238
1351
|
"id": number;
|
|
1239
|
-
"
|
|
1352
|
+
"course_id"?: number | null;
|
|
1353
|
+
"grade_id"?: number | null;
|
|
1240
1354
|
"name": string;
|
|
1241
1355
|
"description"?: string | null;
|
|
1242
|
-
"
|
|
1243
|
-
"
|
|
1356
|
+
"info"?: string | null;
|
|
1357
|
+
"cover_url"?: string | null;
|
|
1358
|
+
"duration_minutes"?: number | null;
|
|
1359
|
+
"passing_mark"?: number | null;
|
|
1360
|
+
"questions_count"?: number | null;
|
|
1361
|
+
"easy_count"?: number | null;
|
|
1362
|
+
"medium_count"?: number | null;
|
|
1363
|
+
"hard_count"?: number | null;
|
|
1364
|
+
"selection_mode": string;
|
|
1244
1365
|
"status": string;
|
|
1245
1366
|
"created_at": string;
|
|
1246
1367
|
"updated_at": string;
|
|
1247
1368
|
}
|
|
1248
|
-
export interface
|
|
1369
|
+
export interface ExamIndexExamGetResponsePageMeta extends JsonObject {
|
|
1249
1370
|
"page": number;
|
|
1250
1371
|
"page_size": number;
|
|
1251
1372
|
"total_items": number;
|
|
1252
1373
|
"total_pages": number;
|
|
1253
1374
|
}
|
|
1254
|
-
export interface
|
|
1255
|
-
"data":
|
|
1256
|
-
"meta":
|
|
1375
|
+
export interface ExamIndexExamGetResponseData extends JsonObject {
|
|
1376
|
+
"data": ExamIndexExamGetResponseItem[];
|
|
1377
|
+
"meta": ExamIndexExamGetResponsePageMeta;
|
|
1257
1378
|
}
|
|
1258
|
-
export interface
|
|
1379
|
+
export interface ExamIndexExamGetResponse extends ApiEnvelope<ExamIndexExamGetResponseData> {
|
|
1259
1380
|
}
|
|
1260
|
-
/** Backend request type: models::
|
|
1261
|
-
export interface
|
|
1262
|
-
"
|
|
1381
|
+
/** Backend request type: models::CreateExamRequest. */
|
|
1382
|
+
export interface ExamStoreExamPostInput extends JsonObject {
|
|
1383
|
+
"course_id"?: number | null;
|
|
1384
|
+
"grade_id"?: number | null;
|
|
1263
1385
|
"name": string;
|
|
1264
1386
|
"description"?: string | null;
|
|
1265
|
-
"
|
|
1266
|
-
"
|
|
1387
|
+
"info"?: string | null;
|
|
1388
|
+
"cover_url"?: string | null;
|
|
1389
|
+
"duration_minutes"?: number | null;
|
|
1390
|
+
"passing_mark"?: number | null;
|
|
1391
|
+
"questions_count"?: number | null;
|
|
1392
|
+
"easy_count"?: number | null;
|
|
1393
|
+
"medium_count"?: number | null;
|
|
1394
|
+
"hard_count"?: number | null;
|
|
1395
|
+
"selection_mode"?: string | null;
|
|
1267
1396
|
"status": string;
|
|
1268
1397
|
}
|
|
1269
|
-
/** Backend response type: models::
|
|
1270
|
-
export interface
|
|
1398
|
+
/** Backend response type: models::ExamResponse. */
|
|
1399
|
+
export interface ExamStoreExamPostResponseData extends JsonObject {
|
|
1271
1400
|
"id": number;
|
|
1272
|
-
"
|
|
1401
|
+
"course_id"?: number | null;
|
|
1402
|
+
"grade_id"?: number | null;
|
|
1273
1403
|
"name": string;
|
|
1274
1404
|
"description"?: string | null;
|
|
1275
|
-
"
|
|
1276
|
-
"
|
|
1405
|
+
"info"?: string | null;
|
|
1406
|
+
"cover_url"?: string | null;
|
|
1407
|
+
"duration_minutes"?: number | null;
|
|
1408
|
+
"passing_mark"?: number | null;
|
|
1409
|
+
"questions_count"?: number | null;
|
|
1410
|
+
"easy_count"?: number | null;
|
|
1411
|
+
"medium_count"?: number | null;
|
|
1412
|
+
"hard_count"?: number | null;
|
|
1413
|
+
"selection_mode": string;
|
|
1277
1414
|
"status": string;
|
|
1278
1415
|
"created_at": string;
|
|
1279
1416
|
"updated_at": string;
|
|
1280
1417
|
}
|
|
1281
|
-
export interface
|
|
1418
|
+
export interface ExamStoreExamPostResponse extends ApiEnvelope<ExamStoreExamPostResponseData> {
|
|
1282
1419
|
}
|
|
1283
|
-
/** Backend
|
|
1284
|
-
export interface
|
|
1285
|
-
"page_number"?: number | null;
|
|
1286
|
-
"page_size"?: number | null;
|
|
1420
|
+
/** Backend response type: serde_json::Value. */
|
|
1421
|
+
export interface ExamDestroyExamDeleteResponse extends ApiEnvelope<JsonValue> {
|
|
1287
1422
|
}
|
|
1288
|
-
/** Backend response type:
|
|
1289
|
-
export interface
|
|
1423
|
+
/** Backend response type: models::ExamResponse. */
|
|
1424
|
+
export interface ExamShowExamGetResponseData extends JsonObject {
|
|
1290
1425
|
"id": number;
|
|
1291
|
-
"
|
|
1292
|
-
"
|
|
1426
|
+
"course_id"?: number | null;
|
|
1427
|
+
"grade_id"?: number | null;
|
|
1428
|
+
"name": string;
|
|
1429
|
+
"description"?: string | null;
|
|
1430
|
+
"info"?: string | null;
|
|
1431
|
+
"cover_url"?: string | null;
|
|
1432
|
+
"duration_minutes"?: number | null;
|
|
1433
|
+
"passing_mark"?: number | null;
|
|
1434
|
+
"questions_count"?: number | null;
|
|
1435
|
+
"easy_count"?: number | null;
|
|
1436
|
+
"medium_count"?: number | null;
|
|
1437
|
+
"hard_count"?: number | null;
|
|
1438
|
+
"selection_mode": string;
|
|
1293
1439
|
"status": string;
|
|
1294
1440
|
"created_at": string;
|
|
1441
|
+
"updated_at": string;
|
|
1295
1442
|
}
|
|
1296
|
-
export interface
|
|
1297
|
-
"page": number;
|
|
1298
|
-
"page_size": number;
|
|
1299
|
-
"total_items": number;
|
|
1300
|
-
"total_pages": number;
|
|
1301
|
-
}
|
|
1302
|
-
export interface EventIndexUserGetResponseData extends JsonObject {
|
|
1303
|
-
"data": EventIndexUserGetResponseItem[];
|
|
1304
|
-
"meta": EventIndexUserGetResponsePageMeta;
|
|
1305
|
-
}
|
|
1306
|
-
export interface EventIndexUserGetResponse extends ApiEnvelope<EventIndexUserGetResponseData> {
|
|
1443
|
+
export interface ExamShowExamGetResponse extends ApiEnvelope<ExamShowExamGetResponseData> {
|
|
1307
1444
|
}
|
|
1308
|
-
/** Backend request type: models::
|
|
1309
|
-
export interface
|
|
1310
|
-
"
|
|
1311
|
-
"
|
|
1312
|
-
"
|
|
1445
|
+
/** Backend request type: models::UpdateExamRequest. */
|
|
1446
|
+
export interface ExamUpdateExamPatchInput extends JsonObject {
|
|
1447
|
+
"course_id"?: number | null;
|
|
1448
|
+
"grade_id"?: number | null;
|
|
1449
|
+
"name"?: string | null;
|
|
1450
|
+
"description"?: string | null;
|
|
1451
|
+
"info"?: string | null;
|
|
1452
|
+
"cover_url"?: string | null;
|
|
1453
|
+
"duration_minutes"?: number | null;
|
|
1454
|
+
"passing_mark"?: number | null;
|
|
1455
|
+
"questions_count"?: number | null;
|
|
1456
|
+
"easy_count"?: number | null;
|
|
1457
|
+
"medium_count"?: number | null;
|
|
1458
|
+
"hard_count"?: number | null;
|
|
1459
|
+
"selection_mode"?: string | null;
|
|
1460
|
+
"status"?: string | null;
|
|
1313
1461
|
}
|
|
1314
|
-
/** Backend response type: models::
|
|
1315
|
-
export interface
|
|
1462
|
+
/** Backend response type: models::ExamResponse. */
|
|
1463
|
+
export interface ExamUpdateExamPatchResponseData extends JsonObject {
|
|
1316
1464
|
"id": number;
|
|
1317
|
-
"
|
|
1318
|
-
"
|
|
1319
|
-
"status": string;
|
|
1320
|
-
"created_at": string;
|
|
1321
|
-
}
|
|
1322
|
-
export interface EventStoreUserPostResponse extends ApiEnvelope<EventStoreUserPostResponseData> {
|
|
1323
|
-
}
|
|
1324
|
-
/** Backend response type: models::UserResponse. */
|
|
1325
|
-
export interface EventShowUserGetResponseData extends JsonObject {
|
|
1326
|
-
"id": number;
|
|
1327
|
-
"event_id": number;
|
|
1328
|
-
"user_id": string;
|
|
1329
|
-
"status": string;
|
|
1330
|
-
"created_at": string;
|
|
1331
|
-
}
|
|
1332
|
-
export interface EventShowUserGetResponse extends ApiEnvelope<EventShowUserGetResponseData> {
|
|
1333
|
-
}
|
|
1334
|
-
/** Backend request type: models::UpdateUserRequest. */
|
|
1335
|
-
export interface EventUpdateUserPatchInput extends JsonObject {
|
|
1336
|
-
"user_id"?: string | null;
|
|
1337
|
-
"status"?: string | null;
|
|
1338
|
-
}
|
|
1339
|
-
/** Backend response type: models::UserResponse. */
|
|
1340
|
-
export interface EventUpdateUserPatchResponseData extends JsonObject {
|
|
1341
|
-
"id": number;
|
|
1342
|
-
"event_id": number;
|
|
1343
|
-
"user_id": string;
|
|
1344
|
-
"status": string;
|
|
1345
|
-
"created_at": string;
|
|
1346
|
-
}
|
|
1347
|
-
export interface EventUpdateUserPatchResponse extends ApiEnvelope<EventUpdateUserPatchResponseData> {
|
|
1348
|
-
}
|
|
1349
|
-
/** Backend response type: models::EventResponse. */
|
|
1350
|
-
export interface EventShowEventGetResponseData extends JsonObject {
|
|
1351
|
-
"id": number;
|
|
1352
|
-
"event_type_id"?: number | null;
|
|
1353
|
-
"name": string;
|
|
1354
|
-
"description"?: string | null;
|
|
1355
|
-
"starts_at"?: string | null;
|
|
1356
|
-
"ends_at"?: string | null;
|
|
1357
|
-
"status": string;
|
|
1358
|
-
"created_at": string;
|
|
1359
|
-
"updated_at": string;
|
|
1360
|
-
}
|
|
1361
|
-
export interface EventShowEventGetResponse extends ApiEnvelope<EventShowEventGetResponseData> {
|
|
1362
|
-
}
|
|
1363
|
-
/** Backend request type: models::UpdateEventRequest. */
|
|
1364
|
-
export interface EventUpdateEventPatchInput extends JsonObject {
|
|
1365
|
-
"event_type_id"?: number | null;
|
|
1366
|
-
"name"?: string | null;
|
|
1367
|
-
"description"?: string | null;
|
|
1368
|
-
"starts_at"?: string | null;
|
|
1369
|
-
"ends_at"?: string | null;
|
|
1370
|
-
"status"?: string | null;
|
|
1371
|
-
}
|
|
1372
|
-
/** Backend response type: models::EventResponse. */
|
|
1373
|
-
export interface EventUpdateEventPatchResponseData extends JsonObject {
|
|
1374
|
-
"id": number;
|
|
1375
|
-
"event_type_id"?: number | null;
|
|
1465
|
+
"course_id"?: number | null;
|
|
1466
|
+
"grade_id"?: number | null;
|
|
1376
1467
|
"name": string;
|
|
1377
1468
|
"description"?: string | null;
|
|
1378
|
-
"
|
|
1379
|
-
"
|
|
1469
|
+
"info"?: string | null;
|
|
1470
|
+
"cover_url"?: string | null;
|
|
1471
|
+
"duration_minutes"?: number | null;
|
|
1472
|
+
"passing_mark"?: number | null;
|
|
1473
|
+
"questions_count"?: number | null;
|
|
1474
|
+
"easy_count"?: number | null;
|
|
1475
|
+
"medium_count"?: number | null;
|
|
1476
|
+
"hard_count"?: number | null;
|
|
1477
|
+
"selection_mode": string;
|
|
1380
1478
|
"status": string;
|
|
1381
1479
|
"created_at": string;
|
|
1382
1480
|
"updated_at": string;
|
|
1383
1481
|
}
|
|
1384
|
-
export interface
|
|
1385
|
-
}
|
|
1386
|
-
/** Backend query type: PaginationQuery. */
|
|
1387
|
-
export interface EventIndexSessionGetQuery extends QueryParams {
|
|
1388
|
-
"page_number"?: number | null;
|
|
1389
|
-
"page_size"?: number | null;
|
|
1390
|
-
}
|
|
1391
|
-
/** Backend response type: crate::models::PagedResult<models::SessionResponse>. */
|
|
1392
|
-
export interface EventIndexSessionGetResponseItem extends JsonObject {
|
|
1393
|
-
"id": number;
|
|
1394
|
-
"event_id": number;
|
|
1395
|
-
"name"?: string | null;
|
|
1396
|
-
"starts_at"?: string | null;
|
|
1397
|
-
"ends_at"?: string | null;
|
|
1398
|
-
"created_at": string;
|
|
1399
|
-
}
|
|
1400
|
-
export interface EventIndexSessionGetResponsePageMeta extends JsonObject {
|
|
1401
|
-
"page": number;
|
|
1402
|
-
"page_size": number;
|
|
1403
|
-
"total_items": number;
|
|
1404
|
-
"total_pages": number;
|
|
1405
|
-
}
|
|
1406
|
-
export interface EventIndexSessionGetResponseData extends JsonObject {
|
|
1407
|
-
"data": EventIndexSessionGetResponseItem[];
|
|
1408
|
-
"meta": EventIndexSessionGetResponsePageMeta;
|
|
1409
|
-
}
|
|
1410
|
-
export interface EventIndexSessionGetResponse extends ApiEnvelope<EventIndexSessionGetResponseData> {
|
|
1411
|
-
}
|
|
1412
|
-
/** Backend request type: models::CreateSessionRequest. */
|
|
1413
|
-
export interface EventStoreSessionPostInput extends JsonObject {
|
|
1414
|
-
"event_id": number;
|
|
1415
|
-
"name"?: string | null;
|
|
1416
|
-
"starts_at"?: string | null;
|
|
1417
|
-
"ends_at"?: string | null;
|
|
1418
|
-
}
|
|
1419
|
-
/** Backend response type: models::SessionResponse. */
|
|
1420
|
-
export interface EventStoreSessionPostResponseData extends JsonObject {
|
|
1421
|
-
"id": number;
|
|
1422
|
-
"event_id": number;
|
|
1423
|
-
"name"?: string | null;
|
|
1424
|
-
"starts_at"?: string | null;
|
|
1425
|
-
"ends_at"?: string | null;
|
|
1426
|
-
"created_at": string;
|
|
1427
|
-
}
|
|
1428
|
-
export interface EventStoreSessionPostResponse extends ApiEnvelope<EventStoreSessionPostResponseData> {
|
|
1429
|
-
}
|
|
1430
|
-
/** Backend response type: models::SessionResponse. */
|
|
1431
|
-
export interface EventShowSessionGetResponseData extends JsonObject {
|
|
1432
|
-
"id": number;
|
|
1433
|
-
"event_id": number;
|
|
1434
|
-
"name"?: string | null;
|
|
1435
|
-
"starts_at"?: string | null;
|
|
1436
|
-
"ends_at"?: string | null;
|
|
1437
|
-
"created_at": string;
|
|
1438
|
-
}
|
|
1439
|
-
export interface EventShowSessionGetResponse extends ApiEnvelope<EventShowSessionGetResponseData> {
|
|
1440
|
-
}
|
|
1441
|
-
/** Backend request type: models::UpdateSessionRequest. */
|
|
1442
|
-
export interface EventUpdateSessionPatchInput extends JsonObject {
|
|
1443
|
-
"event_id"?: number | null;
|
|
1444
|
-
"name"?: string | null;
|
|
1445
|
-
"starts_at"?: string | null;
|
|
1446
|
-
"ends_at"?: string | null;
|
|
1447
|
-
}
|
|
1448
|
-
/** Backend response type: models::SessionResponse. */
|
|
1449
|
-
export interface EventUpdateSessionPatchResponseData extends JsonObject {
|
|
1450
|
-
"id": number;
|
|
1451
|
-
"event_id": number;
|
|
1452
|
-
"name"?: string | null;
|
|
1453
|
-
"starts_at"?: string | null;
|
|
1454
|
-
"ends_at"?: string | null;
|
|
1455
|
-
"created_at": string;
|
|
1456
|
-
}
|
|
1457
|
-
export interface EventUpdateSessionPatchResponse extends ApiEnvelope<EventUpdateSessionPatchResponseData> {
|
|
1482
|
+
export interface ExamUpdateExamPatchResponse extends ApiEnvelope<ExamUpdateExamPatchResponseData> {
|
|
1458
1483
|
}
|
|
1459
|
-
/** Backend query type:
|
|
1460
|
-
export interface
|
|
1484
|
+
/** Backend query type: models::AttemptListQuery. */
|
|
1485
|
+
export interface ExamIndexAttemptGetQuery extends QueryParams {
|
|
1461
1486
|
"page_number"?: number | null;
|
|
1462
1487
|
"page_size"?: number | null;
|
|
1488
|
+
"status"?: string | null;
|
|
1489
|
+
"exam_session_id"?: number | null;
|
|
1463
1490
|
}
|
|
1464
|
-
/** Backend response type: crate::models::PagedResult<models::
|
|
1465
|
-
export interface
|
|
1491
|
+
/** Backend response type: crate::models::PagedResult<models::AttemptResponse>. */
|
|
1492
|
+
export interface ExamIndexAttemptGetResponseItem extends JsonObject {
|
|
1466
1493
|
"id": number;
|
|
1467
|
-
"
|
|
1468
|
-
"
|
|
1494
|
+
"exam_session_id": number;
|
|
1495
|
+
"exam_id"?: number | null;
|
|
1496
|
+
"exam_name"?: string | null;
|
|
1497
|
+
"classroom_id"?: number | null;
|
|
1498
|
+
"classroom_name"?: string | null;
|
|
1499
|
+
"user_id": string;
|
|
1500
|
+
"profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
1501
|
+
"score"?: number | null;
|
|
1502
|
+
"teacher_score"?: number | null;
|
|
1469
1503
|
"description"?: string | null;
|
|
1470
|
-
"
|
|
1471
|
-
"
|
|
1504
|
+
"extend_time_minutes": number;
|
|
1505
|
+
"deadline_at"?: string | null;
|
|
1472
1506
|
"status": string;
|
|
1507
|
+
"started_at"?: string | null;
|
|
1508
|
+
"finished_at"?: string | null;
|
|
1473
1509
|
"created_at": string;
|
|
1474
1510
|
"updated_at": string;
|
|
1475
1511
|
}
|
|
1476
|
-
export interface
|
|
1512
|
+
export interface ExamIndexAttemptGetResponsePageMeta extends JsonObject {
|
|
1477
1513
|
"page": number;
|
|
1478
1514
|
"page_size": number;
|
|
1479
1515
|
"total_items": number;
|
|
1480
1516
|
"total_pages": number;
|
|
1481
1517
|
}
|
|
1482
|
-
export interface
|
|
1483
|
-
"data":
|
|
1484
|
-
"meta":
|
|
1485
|
-
}
|
|
1486
|
-
export interface ExamIndexExamGetResponse extends ApiEnvelope<ExamIndexExamGetResponseData> {
|
|
1518
|
+
export interface ExamIndexAttemptGetResponseData extends JsonObject {
|
|
1519
|
+
"data": ExamIndexAttemptGetResponseItem[];
|
|
1520
|
+
"meta": ExamIndexAttemptGetResponsePageMeta;
|
|
1487
1521
|
}
|
|
1488
|
-
|
|
1489
|
-
export interface ExamStoreExamPostInput extends JsonObject {
|
|
1490
|
-
"course_id"?: number | null;
|
|
1491
|
-
"name": string;
|
|
1492
|
-
"description"?: string | null;
|
|
1493
|
-
"duration_minutes"?: number | null;
|
|
1494
|
-
"passing_mark"?: number | null;
|
|
1495
|
-
"status": string;
|
|
1522
|
+
export interface ExamIndexAttemptGetResponse extends ApiEnvelope<ExamIndexAttemptGetResponseData> {
|
|
1496
1523
|
}
|
|
1497
|
-
/** Backend response type: models::
|
|
1498
|
-
export interface
|
|
1524
|
+
/** Backend response type: models::AttemptResponse. */
|
|
1525
|
+
export interface ExamShowAttemptGetResponseData extends JsonObject {
|
|
1499
1526
|
"id": number;
|
|
1500
|
-
"
|
|
1501
|
-
"
|
|
1502
|
-
"
|
|
1503
|
-
"
|
|
1504
|
-
"
|
|
1505
|
-
"
|
|
1506
|
-
"
|
|
1507
|
-
"
|
|
1508
|
-
|
|
1509
|
-
export interface ExamStoreExamPostResponse extends ApiEnvelope<ExamStoreExamPostResponseData> {
|
|
1510
|
-
}
|
|
1511
|
-
/** Backend response type: serde_json::Value. */
|
|
1512
|
-
export interface ExamDestroyExamDeleteResponse extends ApiEnvelope<JsonValue> {
|
|
1513
|
-
}
|
|
1514
|
-
/** Backend response type: models::ExamResponse. */
|
|
1515
|
-
export interface ExamShowExamGetResponseData extends JsonObject {
|
|
1516
|
-
"id": number;
|
|
1517
|
-
"course_id"?: number | null;
|
|
1518
|
-
"name": string;
|
|
1527
|
+
"exam_session_id": number;
|
|
1528
|
+
"exam_id"?: number | null;
|
|
1529
|
+
"exam_name"?: string | null;
|
|
1530
|
+
"classroom_id"?: number | null;
|
|
1531
|
+
"classroom_name"?: string | null;
|
|
1532
|
+
"user_id": string;
|
|
1533
|
+
"profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
1534
|
+
"score"?: number | null;
|
|
1535
|
+
"teacher_score"?: number | null;
|
|
1519
1536
|
"description"?: string | null;
|
|
1520
|
-
"
|
|
1521
|
-
"
|
|
1537
|
+
"extend_time_minutes": number;
|
|
1538
|
+
"deadline_at"?: string | null;
|
|
1522
1539
|
"status": string;
|
|
1540
|
+
"started_at"?: string | null;
|
|
1541
|
+
"finished_at"?: string | null;
|
|
1523
1542
|
"created_at": string;
|
|
1524
1543
|
"updated_at": string;
|
|
1525
1544
|
}
|
|
1526
|
-
export interface
|
|
1545
|
+
export interface ExamShowAttemptGetResponse extends ApiEnvelope<ExamShowAttemptGetResponseData> {
|
|
1527
1546
|
}
|
|
1528
|
-
/** Backend request type: models::
|
|
1529
|
-
export interface
|
|
1530
|
-
"
|
|
1531
|
-
"
|
|
1547
|
+
/** Backend request type: models::UpdateAttemptRequest. */
|
|
1548
|
+
export interface ExamUpdateAttemptPatchInput extends JsonObject {
|
|
1549
|
+
"score"?: number | null;
|
|
1550
|
+
"teacher_score"?: number | null;
|
|
1532
1551
|
"description"?: string | null;
|
|
1533
|
-
"
|
|
1534
|
-
"
|
|
1552
|
+
"extend_time_minutes"?: number | null;
|
|
1553
|
+
"deadline_at"?: string | null;
|
|
1535
1554
|
"status"?: string | null;
|
|
1536
1555
|
}
|
|
1537
|
-
/** Backend response type: models::
|
|
1538
|
-
export interface
|
|
1556
|
+
/** Backend response type: models::AttemptResponse. */
|
|
1557
|
+
export interface ExamUpdateAttemptPatchResponseData extends JsonObject {
|
|
1539
1558
|
"id": number;
|
|
1540
|
-
"
|
|
1541
|
-
"
|
|
1559
|
+
"exam_session_id": number;
|
|
1560
|
+
"exam_id"?: number | null;
|
|
1561
|
+
"exam_name"?: string | null;
|
|
1562
|
+
"classroom_id"?: number | null;
|
|
1563
|
+
"classroom_name"?: string | null;
|
|
1564
|
+
"user_id": string;
|
|
1565
|
+
"profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
1566
|
+
"score"?: number | null;
|
|
1567
|
+
"teacher_score"?: number | null;
|
|
1542
1568
|
"description"?: string | null;
|
|
1543
|
-
"
|
|
1544
|
-
"
|
|
1569
|
+
"extend_time_minutes": number;
|
|
1570
|
+
"deadline_at"?: string | null;
|
|
1545
1571
|
"status": string;
|
|
1572
|
+
"started_at"?: string | null;
|
|
1573
|
+
"finished_at"?: string | null;
|
|
1546
1574
|
"created_at": string;
|
|
1547
1575
|
"updated_at": string;
|
|
1548
1576
|
}
|
|
1549
|
-
export interface
|
|
1577
|
+
export interface ExamUpdateAttemptPatchResponse extends ApiEnvelope<ExamUpdateAttemptPatchResponseData> {
|
|
1550
1578
|
}
|
|
1551
1579
|
/** Backend query type: PaginationQuery. */
|
|
1552
1580
|
export interface ExamIndexQuestionGetQuery extends QueryParams {
|
|
@@ -1562,7 +1590,12 @@ export interface ExamIndexQuestionGetResponseItem extends JsonObject {
|
|
|
1562
1590
|
"options"?: BackendJson<"sea_orm::prelude::Json"> | null;
|
|
1563
1591
|
"correct_answer"?: string | null;
|
|
1564
1592
|
"sort_order": number;
|
|
1593
|
+
"difficulty": string;
|
|
1594
|
+
"points": number;
|
|
1595
|
+
"media": BackendJson<"sea_orm::prelude::Json">;
|
|
1596
|
+
"status": string;
|
|
1565
1597
|
"created_at": string;
|
|
1598
|
+
"updated_at": string;
|
|
1566
1599
|
}
|
|
1567
1600
|
export interface ExamIndexQuestionGetResponsePageMeta extends JsonObject {
|
|
1568
1601
|
"page": number;
|
|
@@ -1584,6 +1617,10 @@ export interface ExamStoreQuestionPostInput extends JsonObject {
|
|
|
1584
1617
|
"options"?: BackendJson<"sea_orm::prelude::Json"> | null;
|
|
1585
1618
|
"correct_answer"?: string | null;
|
|
1586
1619
|
"sort_order": number;
|
|
1620
|
+
"difficulty"?: string | null;
|
|
1621
|
+
"points"?: number | null;
|
|
1622
|
+
"media"?: BackendJson<"sea_orm::prelude::Json"> | null;
|
|
1623
|
+
"status"?: string | null;
|
|
1587
1624
|
}
|
|
1588
1625
|
/** Backend response type: models::QuestionResponse. */
|
|
1589
1626
|
export interface ExamStoreQuestionPostResponseData extends JsonObject {
|
|
@@ -1594,7 +1631,12 @@ export interface ExamStoreQuestionPostResponseData extends JsonObject {
|
|
|
1594
1631
|
"options"?: BackendJson<"sea_orm::prelude::Json"> | null;
|
|
1595
1632
|
"correct_answer"?: string | null;
|
|
1596
1633
|
"sort_order": number;
|
|
1634
|
+
"difficulty": string;
|
|
1635
|
+
"points": number;
|
|
1636
|
+
"media": BackendJson<"sea_orm::prelude::Json">;
|
|
1637
|
+
"status": string;
|
|
1597
1638
|
"created_at": string;
|
|
1639
|
+
"updated_at": string;
|
|
1598
1640
|
}
|
|
1599
1641
|
export interface ExamStoreQuestionPostResponse extends ApiEnvelope<ExamStoreQuestionPostResponseData> {
|
|
1600
1642
|
}
|
|
@@ -1610,7 +1652,12 @@ export interface ExamShowQuestionGetResponseData extends JsonObject {
|
|
|
1610
1652
|
"options"?: BackendJson<"sea_orm::prelude::Json"> | null;
|
|
1611
1653
|
"correct_answer"?: string | null;
|
|
1612
1654
|
"sort_order": number;
|
|
1655
|
+
"difficulty": string;
|
|
1656
|
+
"points": number;
|
|
1657
|
+
"media": BackendJson<"sea_orm::prelude::Json">;
|
|
1658
|
+
"status": string;
|
|
1613
1659
|
"created_at": string;
|
|
1660
|
+
"updated_at": string;
|
|
1614
1661
|
}
|
|
1615
1662
|
export interface ExamShowQuestionGetResponse extends ApiEnvelope<ExamShowQuestionGetResponseData> {
|
|
1616
1663
|
}
|
|
@@ -1622,6 +1669,10 @@ export interface ExamUpdateQuestionPatchInput extends JsonObject {
|
|
|
1622
1669
|
"options"?: BackendJson<"sea_orm::prelude::Json"> | null;
|
|
1623
1670
|
"correct_answer"?: string | null;
|
|
1624
1671
|
"sort_order"?: number | null;
|
|
1672
|
+
"difficulty"?: string | null;
|
|
1673
|
+
"points"?: number | null;
|
|
1674
|
+
"media"?: BackendJson<"sea_orm::prelude::Json"> | null;
|
|
1675
|
+
"status"?: string | null;
|
|
1625
1676
|
}
|
|
1626
1677
|
/** Backend response type: models::QuestionResponse. */
|
|
1627
1678
|
export interface ExamUpdateQuestionPatchResponseData extends JsonObject {
|
|
@@ -1632,20 +1683,32 @@ export interface ExamUpdateQuestionPatchResponseData extends JsonObject {
|
|
|
1632
1683
|
"options"?: BackendJson<"sea_orm::prelude::Json"> | null;
|
|
1633
1684
|
"correct_answer"?: string | null;
|
|
1634
1685
|
"sort_order": number;
|
|
1686
|
+
"difficulty": string;
|
|
1687
|
+
"points": number;
|
|
1688
|
+
"media": BackendJson<"sea_orm::prelude::Json">;
|
|
1689
|
+
"status": string;
|
|
1635
1690
|
"created_at": string;
|
|
1691
|
+
"updated_at": string;
|
|
1636
1692
|
}
|
|
1637
1693
|
export interface ExamUpdateQuestionPatchResponse extends ApiEnvelope<ExamUpdateQuestionPatchResponseData> {
|
|
1638
1694
|
}
|
|
1639
|
-
/** Backend query type:
|
|
1695
|
+
/** Backend query type: models::SessionListQuery. */
|
|
1640
1696
|
export interface ExamIndexSessionGetQuery extends QueryParams {
|
|
1641
1697
|
"page_number"?: number | null;
|
|
1642
1698
|
"page_size"?: number | null;
|
|
1699
|
+
"status"?: string | null;
|
|
1700
|
+
"exam_id"?: number | null;
|
|
1701
|
+
"classroom_id"?: number | null;
|
|
1702
|
+
"from"?: string | null;
|
|
1703
|
+
"to"?: string | null;
|
|
1643
1704
|
}
|
|
1644
1705
|
/** Backend response type: crate::models::PagedResult<models::SessionResponse>. */
|
|
1645
1706
|
export interface ExamIndexSessionGetResponseItem extends JsonObject {
|
|
1646
1707
|
"id": number;
|
|
1647
1708
|
"exam_id": number;
|
|
1709
|
+
"exam_name"?: string | null;
|
|
1648
1710
|
"classroom_id"?: number | null;
|
|
1711
|
+
"classroom_name"?: string | null;
|
|
1649
1712
|
"starts_at"?: string | null;
|
|
1650
1713
|
"ends_at"?: string | null;
|
|
1651
1714
|
"status": string;
|
|
@@ -1675,7 +1738,9 @@ export interface ExamStoreSessionPostInput extends JsonObject {
|
|
|
1675
1738
|
export interface ExamStoreSessionPostResponseData extends JsonObject {
|
|
1676
1739
|
"id": number;
|
|
1677
1740
|
"exam_id": number;
|
|
1741
|
+
"exam_name"?: string | null;
|
|
1678
1742
|
"classroom_id"?: number | null;
|
|
1743
|
+
"classroom_name"?: string | null;
|
|
1679
1744
|
"starts_at"?: string | null;
|
|
1680
1745
|
"ends_at"?: string | null;
|
|
1681
1746
|
"status": string;
|
|
@@ -1687,7 +1752,9 @@ export interface ExamStoreSessionPostResponse extends ApiEnvelope<ExamStoreSessi
|
|
|
1687
1752
|
export interface ExamShowSessionGetResponseData extends JsonObject {
|
|
1688
1753
|
"id": number;
|
|
1689
1754
|
"exam_id": number;
|
|
1755
|
+
"exam_name"?: string | null;
|
|
1690
1756
|
"classroom_id"?: number | null;
|
|
1757
|
+
"classroom_name"?: string | null;
|
|
1691
1758
|
"starts_at"?: string | null;
|
|
1692
1759
|
"ends_at"?: string | null;
|
|
1693
1760
|
"status": string;
|
|
@@ -1707,7 +1774,9 @@ export interface ExamUpdateSessionPatchInput extends JsonObject {
|
|
|
1707
1774
|
export interface ExamUpdateSessionPatchResponseData extends JsonObject {
|
|
1708
1775
|
"id": number;
|
|
1709
1776
|
"exam_id": number;
|
|
1777
|
+
"exam_name"?: string | null;
|
|
1710
1778
|
"classroom_id"?: number | null;
|
|
1779
|
+
"classroom_name"?: string | null;
|
|
1711
1780
|
"starts_at"?: string | null;
|
|
1712
1781
|
"ends_at"?: string | null;
|
|
1713
1782
|
"status": string;
|
|
@@ -1715,15 +1784,21 @@ export interface ExamUpdateSessionPatchResponseData extends JsonObject {
|
|
|
1715
1784
|
}
|
|
1716
1785
|
export interface ExamUpdateSessionPatchResponse extends ApiEnvelope<ExamUpdateSessionPatchResponseData> {
|
|
1717
1786
|
}
|
|
1718
|
-
/** Backend query type:
|
|
1787
|
+
/** Backend query type: models::HomeworkListQuery. */
|
|
1719
1788
|
export interface HomeworkIndexHomeworkGetQuery extends QueryParams {
|
|
1720
1789
|
"page_number"?: number | null;
|
|
1721
1790
|
"page_size"?: number | null;
|
|
1791
|
+
"search"?: string | null;
|
|
1792
|
+
"status"?: string | null;
|
|
1793
|
+
"course_id"?: number | null;
|
|
1722
1794
|
}
|
|
1723
1795
|
/** Backend response type: crate::models::PagedResult<models::HomeworkResponse>. */
|
|
1724
1796
|
export interface HomeworkIndexHomeworkGetResponseItem extends JsonObject {
|
|
1725
1797
|
"id": number;
|
|
1726
1798
|
"course_id"?: number | null;
|
|
1799
|
+
"course_name"?: string | null;
|
|
1800
|
+
"grade_id"?: number | null;
|
|
1801
|
+
"teacher_grade_id"?: number | null;
|
|
1727
1802
|
"name": string;
|
|
1728
1803
|
"description"?: string | null;
|
|
1729
1804
|
"status": string;
|
|
@@ -1745,6 +1820,8 @@ export interface HomeworkIndexHomeworkGetResponse extends ApiEnvelope<HomeworkIn
|
|
|
1745
1820
|
/** Backend request type: models::CreateHomeworkRequest. */
|
|
1746
1821
|
export interface HomeworkStoreHomeworkPostInput extends JsonObject {
|
|
1747
1822
|
"course_id"?: number | null;
|
|
1823
|
+
"grade_id"?: number | null;
|
|
1824
|
+
"teacher_grade_id"?: number | null;
|
|
1748
1825
|
"name": string;
|
|
1749
1826
|
"description"?: string | null;
|
|
1750
1827
|
"status": string;
|
|
@@ -1753,6 +1830,9 @@ export interface HomeworkStoreHomeworkPostInput extends JsonObject {
|
|
|
1753
1830
|
export interface HomeworkStoreHomeworkPostResponseData extends JsonObject {
|
|
1754
1831
|
"id": number;
|
|
1755
1832
|
"course_id"?: number | null;
|
|
1833
|
+
"course_name"?: string | null;
|
|
1834
|
+
"grade_id"?: number | null;
|
|
1835
|
+
"teacher_grade_id"?: number | null;
|
|
1756
1836
|
"name": string;
|
|
1757
1837
|
"description"?: string | null;
|
|
1758
1838
|
"status": string;
|
|
@@ -1765,6 +1845,9 @@ export interface HomeworkStoreHomeworkPostResponse extends ApiEnvelope<HomeworkS
|
|
|
1765
1845
|
export interface HomeworkShowHomeworkGetResponseData extends JsonObject {
|
|
1766
1846
|
"id": number;
|
|
1767
1847
|
"course_id"?: number | null;
|
|
1848
|
+
"course_name"?: string | null;
|
|
1849
|
+
"grade_id"?: number | null;
|
|
1850
|
+
"teacher_grade_id"?: number | null;
|
|
1768
1851
|
"name": string;
|
|
1769
1852
|
"description"?: string | null;
|
|
1770
1853
|
"status": string;
|
|
@@ -1776,6 +1859,8 @@ export interface HomeworkShowHomeworkGetResponse extends ApiEnvelope<HomeworkSho
|
|
|
1776
1859
|
/** Backend request type: models::UpdateHomeworkRequest. */
|
|
1777
1860
|
export interface HomeworkUpdateHomeworkPatchInput extends JsonObject {
|
|
1778
1861
|
"course_id"?: number | null;
|
|
1862
|
+
"grade_id"?: number | null;
|
|
1863
|
+
"teacher_grade_id"?: number | null;
|
|
1779
1864
|
"name"?: string | null;
|
|
1780
1865
|
"description"?: string | null;
|
|
1781
1866
|
"status"?: string | null;
|
|
@@ -1784,6 +1869,9 @@ export interface HomeworkUpdateHomeworkPatchInput extends JsonObject {
|
|
|
1784
1869
|
export interface HomeworkUpdateHomeworkPatchResponseData extends JsonObject {
|
|
1785
1870
|
"id": number;
|
|
1786
1871
|
"course_id"?: number | null;
|
|
1872
|
+
"course_name"?: string | null;
|
|
1873
|
+
"grade_id"?: number | null;
|
|
1874
|
+
"teacher_grade_id"?: number | null;
|
|
1787
1875
|
"name": string;
|
|
1788
1876
|
"description"?: string | null;
|
|
1789
1877
|
"status": string;
|
|
@@ -1792,17 +1880,23 @@ export interface HomeworkUpdateHomeworkPatchResponseData extends JsonObject {
|
|
|
1792
1880
|
}
|
|
1793
1881
|
export interface HomeworkUpdateHomeworkPatchResponse extends ApiEnvelope<HomeworkUpdateHomeworkPatchResponseData> {
|
|
1794
1882
|
}
|
|
1795
|
-
/** Backend query type:
|
|
1883
|
+
/** Backend query type: models::AssignmentListQuery. */
|
|
1796
1884
|
export interface HomeworkIndexAssignmentGetQuery extends QueryParams {
|
|
1797
1885
|
"page_number"?: number | null;
|
|
1798
1886
|
"page_size"?: number | null;
|
|
1887
|
+
"status"?: string | null;
|
|
1888
|
+
"homework_id"?: number | null;
|
|
1889
|
+
"classroom_id"?: number | null;
|
|
1799
1890
|
}
|
|
1800
1891
|
/** Backend response type: crate::models::PagedResult<models::AssignmentResponse>. */
|
|
1801
1892
|
export interface HomeworkIndexAssignmentGetResponseItem extends JsonObject {
|
|
1802
1893
|
"id": number;
|
|
1803
1894
|
"homework_id": number;
|
|
1895
|
+
"homework_name"?: string | null;
|
|
1804
1896
|
"classroom_id"?: number | null;
|
|
1897
|
+
"classroom_name"?: string | null;
|
|
1805
1898
|
"user_id"?: string | null;
|
|
1899
|
+
"profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
1806
1900
|
"due_at"?: string | null;
|
|
1807
1901
|
"status": string;
|
|
1808
1902
|
"answer_text"?: string | null;
|
|
@@ -1836,8 +1930,11 @@ export interface HomeworkStoreAssignmentPostInput extends JsonObject {
|
|
|
1836
1930
|
export interface HomeworkStoreAssignmentPostResponseData extends JsonObject {
|
|
1837
1931
|
"id": number;
|
|
1838
1932
|
"homework_id": number;
|
|
1933
|
+
"homework_name"?: string | null;
|
|
1839
1934
|
"classroom_id"?: number | null;
|
|
1935
|
+
"classroom_name"?: string | null;
|
|
1840
1936
|
"user_id"?: string | null;
|
|
1937
|
+
"profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
1841
1938
|
"due_at"?: string | null;
|
|
1842
1939
|
"status": string;
|
|
1843
1940
|
"answer_text"?: string | null;
|
|
@@ -1851,8 +1948,11 @@ export interface HomeworkStoreAssignmentPostResponse extends ApiEnvelope<Homewor
|
|
|
1851
1948
|
export interface HomeworkShowAssignmentGetResponseData extends JsonObject {
|
|
1852
1949
|
"id": number;
|
|
1853
1950
|
"homework_id": number;
|
|
1951
|
+
"homework_name"?: string | null;
|
|
1854
1952
|
"classroom_id"?: number | null;
|
|
1953
|
+
"classroom_name"?: string | null;
|
|
1855
1954
|
"user_id"?: string | null;
|
|
1955
|
+
"profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
1856
1956
|
"due_at"?: string | null;
|
|
1857
1957
|
"status": string;
|
|
1858
1958
|
"answer_text"?: string | null;
|
|
@@ -1876,8 +1976,11 @@ export interface HomeworkUpdateAssignmentPatchInput extends JsonObject {
|
|
|
1876
1976
|
export interface HomeworkUpdateAssignmentPatchResponseData extends JsonObject {
|
|
1877
1977
|
"id": number;
|
|
1878
1978
|
"homework_id": number;
|
|
1979
|
+
"homework_name"?: string | null;
|
|
1879
1980
|
"classroom_id"?: number | null;
|
|
1981
|
+
"classroom_name"?: string | null;
|
|
1880
1982
|
"user_id"?: string | null;
|
|
1983
|
+
"profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
1881
1984
|
"due_at"?: string | null;
|
|
1882
1985
|
"status": string;
|
|
1883
1986
|
"answer_text"?: string | null;
|
|
@@ -1897,8 +2000,16 @@ export interface HomeworkIndexQuestionGetResponseItem extends JsonObject {
|
|
|
1897
2000
|
"id": number;
|
|
1898
2001
|
"homework_id": number;
|
|
1899
2002
|
"question_text": string;
|
|
2003
|
+
"description"?: string | null;
|
|
2004
|
+
"answer"?: string | null;
|
|
2005
|
+
"question_type": string;
|
|
2006
|
+
"points": number;
|
|
2007
|
+
"is_final": boolean;
|
|
2008
|
+
"media": JsonValue;
|
|
2009
|
+
"status": string;
|
|
1900
2010
|
"sort_order": number;
|
|
1901
2011
|
"created_at": string;
|
|
2012
|
+
"updated_at": string;
|
|
1902
2013
|
}
|
|
1903
2014
|
export interface HomeworkIndexQuestionGetResponsePageMeta extends JsonObject {
|
|
1904
2015
|
"page": number;
|
|
@@ -1916,15 +2027,30 @@ export interface HomeworkIndexQuestionGetResponse extends ApiEnvelope<HomeworkIn
|
|
|
1916
2027
|
export interface HomeworkStoreQuestionPostInput extends JsonObject {
|
|
1917
2028
|
"homework_id": number;
|
|
1918
2029
|
"question_text": string;
|
|
1919
|
-
"
|
|
2030
|
+
"description"?: string | null;
|
|
2031
|
+
"answer"?: string | null;
|
|
2032
|
+
"question_type"?: string;
|
|
2033
|
+
"points"?: number;
|
|
2034
|
+
"is_final"?: boolean;
|
|
2035
|
+
"media"?: JsonValue | null;
|
|
2036
|
+
"status"?: string;
|
|
2037
|
+
"sort_order"?: number;
|
|
1920
2038
|
}
|
|
1921
2039
|
/** Backend response type: models::QuestionResponse. */
|
|
1922
2040
|
export interface HomeworkStoreQuestionPostResponseData extends JsonObject {
|
|
1923
2041
|
"id": number;
|
|
1924
2042
|
"homework_id": number;
|
|
1925
2043
|
"question_text": string;
|
|
2044
|
+
"description"?: string | null;
|
|
2045
|
+
"answer"?: string | null;
|
|
2046
|
+
"question_type": string;
|
|
2047
|
+
"points": number;
|
|
2048
|
+
"is_final": boolean;
|
|
2049
|
+
"media": JsonValue;
|
|
2050
|
+
"status": string;
|
|
1926
2051
|
"sort_order": number;
|
|
1927
2052
|
"created_at": string;
|
|
2053
|
+
"updated_at": string;
|
|
1928
2054
|
}
|
|
1929
2055
|
export interface HomeworkStoreQuestionPostResponse extends ApiEnvelope<HomeworkStoreQuestionPostResponseData> {
|
|
1930
2056
|
}
|
|
@@ -1933,8 +2059,16 @@ export interface HomeworkShowQuestionGetResponseData extends JsonObject {
|
|
|
1933
2059
|
"id": number;
|
|
1934
2060
|
"homework_id": number;
|
|
1935
2061
|
"question_text": string;
|
|
2062
|
+
"description"?: string | null;
|
|
2063
|
+
"answer"?: string | null;
|
|
2064
|
+
"question_type": string;
|
|
2065
|
+
"points": number;
|
|
2066
|
+
"is_final": boolean;
|
|
2067
|
+
"media": JsonValue;
|
|
2068
|
+
"status": string;
|
|
1936
2069
|
"sort_order": number;
|
|
1937
2070
|
"created_at": string;
|
|
2071
|
+
"updated_at": string;
|
|
1938
2072
|
}
|
|
1939
2073
|
export interface HomeworkShowQuestionGetResponse extends ApiEnvelope<HomeworkShowQuestionGetResponseData> {
|
|
1940
2074
|
}
|
|
@@ -1942,6 +2076,13 @@ export interface HomeworkShowQuestionGetResponse extends ApiEnvelope<HomeworkSho
|
|
|
1942
2076
|
export interface HomeworkUpdateQuestionPatchInput extends JsonObject {
|
|
1943
2077
|
"homework_id"?: number | null;
|
|
1944
2078
|
"question_text"?: string | null;
|
|
2079
|
+
"description"?: string | null;
|
|
2080
|
+
"answer"?: string | null;
|
|
2081
|
+
"question_type"?: string | null;
|
|
2082
|
+
"points"?: number | null;
|
|
2083
|
+
"is_final"?: boolean | null;
|
|
2084
|
+
"media"?: JsonValue | null;
|
|
2085
|
+
"status"?: string | null;
|
|
1945
2086
|
"sort_order"?: number | null;
|
|
1946
2087
|
}
|
|
1947
2088
|
/** Backend response type: models::QuestionResponse. */
|
|
@@ -1949,343 +2090,179 @@ export interface HomeworkUpdateQuestionPatchResponseData extends JsonObject {
|
|
|
1949
2090
|
"id": number;
|
|
1950
2091
|
"homework_id": number;
|
|
1951
2092
|
"question_text": string;
|
|
2093
|
+
"description"?: string | null;
|
|
2094
|
+
"answer"?: string | null;
|
|
2095
|
+
"question_type": string;
|
|
2096
|
+
"points": number;
|
|
2097
|
+
"is_final": boolean;
|
|
2098
|
+
"media": JsonValue;
|
|
2099
|
+
"status": string;
|
|
1952
2100
|
"sort_order": number;
|
|
1953
2101
|
"created_at": string;
|
|
2102
|
+
"updated_at": string;
|
|
1954
2103
|
}
|
|
1955
2104
|
export interface HomeworkUpdateQuestionPatchResponse extends ApiEnvelope<HomeworkUpdateQuestionPatchResponseData> {
|
|
1956
2105
|
}
|
|
1957
2106
|
/** Backend response type: infera_flow_sdk::FlowIntegrationResponse. */
|
|
1958
2107
|
export interface IntegrationFlowIntegrationShowGetResponse extends ApiEnvelope<BackendJson<"infera_flow_sdk::FlowIntegrationResponse">> {
|
|
1959
2108
|
}
|
|
1960
|
-
/** Backend
|
|
1961
|
-
export
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
export interface InteractiveIndexCategoryGetResponseItem extends JsonObject {
|
|
1967
|
-
"id": number;
|
|
1968
|
-
"name": string;
|
|
1969
|
-
"sort_order": number;
|
|
1970
|
-
"created_at": string;
|
|
1971
|
-
}
|
|
1972
|
-
export interface InteractiveIndexCategoryGetResponsePageMeta extends JsonObject {
|
|
1973
|
-
"page": number;
|
|
1974
|
-
"page_size": number;
|
|
1975
|
-
"total_items": number;
|
|
1976
|
-
"total_pages": number;
|
|
1977
|
-
}
|
|
1978
|
-
export interface InteractiveIndexCategoryGetResponseData extends JsonObject {
|
|
1979
|
-
"data": InteractiveIndexCategoryGetResponseItem[];
|
|
1980
|
-
"meta": InteractiveIndexCategoryGetResponsePageMeta;
|
|
1981
|
-
}
|
|
1982
|
-
export interface InteractiveIndexCategoryGetResponse extends ApiEnvelope<InteractiveIndexCategoryGetResponseData> {
|
|
1983
|
-
}
|
|
1984
|
-
/** Backend request type: models::CreateCategoryRequest. */
|
|
1985
|
-
export interface InteractiveStoreCategoryPostInput extends JsonObject {
|
|
1986
|
-
"name": string;
|
|
1987
|
-
"sort_order": number;
|
|
1988
|
-
}
|
|
1989
|
-
/** Backend response type: models::CategoryResponse. */
|
|
1990
|
-
export interface InteractiveStoreCategoryPostResponseData extends JsonObject {
|
|
1991
|
-
"id": number;
|
|
1992
|
-
"name": string;
|
|
1993
|
-
"sort_order": number;
|
|
1994
|
-
"created_at": string;
|
|
1995
|
-
}
|
|
1996
|
-
export interface InteractiveStoreCategoryPostResponse extends ApiEnvelope<InteractiveStoreCategoryPostResponseData> {
|
|
1997
|
-
}
|
|
1998
|
-
/** Backend response type: models::CategoryResponse. */
|
|
1999
|
-
export interface InteractiveShowCategoryGetResponseData extends JsonObject {
|
|
2000
|
-
"id": number;
|
|
2001
|
-
"name": string;
|
|
2002
|
-
"sort_order": number;
|
|
2003
|
-
"created_at": string;
|
|
2004
|
-
}
|
|
2005
|
-
export interface InteractiveShowCategoryGetResponse extends ApiEnvelope<InteractiveShowCategoryGetResponseData> {
|
|
2006
|
-
}
|
|
2007
|
-
/** Backend request type: models::UpdateCategoryRequest. */
|
|
2008
|
-
export interface InteractiveUpdateCategoryPatchInput extends JsonObject {
|
|
2009
|
-
"name"?: string | null;
|
|
2010
|
-
"sort_order"?: number | null;
|
|
2011
|
-
}
|
|
2012
|
-
/** Backend response type: models::CategoryResponse. */
|
|
2013
|
-
export interface InteractiveUpdateCategoryPatchResponseData extends JsonObject {
|
|
2014
|
-
"id": number;
|
|
2015
|
-
"name": string;
|
|
2016
|
-
"sort_order": number;
|
|
2017
|
-
"created_at": string;
|
|
2018
|
-
}
|
|
2019
|
-
export interface InteractiveUpdateCategoryPatchResponse extends ApiEnvelope<InteractiveUpdateCategoryPatchResponseData> {
|
|
2020
|
-
}
|
|
2021
|
-
/** Backend query type: PaginationQuery. */
|
|
2022
|
-
export interface InteractiveIndexClassroomSessionGetQuery extends QueryParams {
|
|
2023
|
-
"page_number"?: number | null;
|
|
2024
|
-
"page_size"?: number | null;
|
|
2025
|
-
}
|
|
2026
|
-
/** Backend response type: crate::models::PagedResult<models::ClassroomSessionResponse>. */
|
|
2027
|
-
export interface InteractiveIndexClassroomSessionGetResponseItem extends JsonObject {
|
|
2028
|
-
"id": number;
|
|
2029
|
-
"classroom_session_id": number;
|
|
2030
|
-
"interactive_content_id": number;
|
|
2031
|
-
"room_code"?: string | null;
|
|
2032
|
-
"state"?: BackendJson<"sea_orm::prelude::Json"> | null;
|
|
2033
|
-
"created_at": string;
|
|
2034
|
-
}
|
|
2035
|
-
export interface InteractiveIndexClassroomSessionGetResponsePageMeta extends JsonObject {
|
|
2036
|
-
"page": number;
|
|
2037
|
-
"page_size": number;
|
|
2038
|
-
"total_items": number;
|
|
2039
|
-
"total_pages": number;
|
|
2040
|
-
}
|
|
2041
|
-
export interface InteractiveIndexClassroomSessionGetResponseData extends JsonObject {
|
|
2042
|
-
"data": InteractiveIndexClassroomSessionGetResponseItem[];
|
|
2043
|
-
"meta": InteractiveIndexClassroomSessionGetResponsePageMeta;
|
|
2044
|
-
}
|
|
2045
|
-
export interface InteractiveIndexClassroomSessionGetResponse extends ApiEnvelope<InteractiveIndexClassroomSessionGetResponseData> {
|
|
2046
|
-
}
|
|
2047
|
-
/** Backend request type: models::CreateClassroomSessionRequest. */
|
|
2048
|
-
export interface InteractiveStoreClassroomSessionPostInput extends JsonObject {
|
|
2049
|
-
"classroom_session_id": number;
|
|
2050
|
-
"interactive_content_id": number;
|
|
2051
|
-
"room_code"?: string | null;
|
|
2052
|
-
"state"?: BackendJson<"sea_orm::prelude::Json"> | null;
|
|
2053
|
-
}
|
|
2054
|
-
/** Backend response type: models::ClassroomSessionResponse. */
|
|
2055
|
-
export interface InteractiveStoreClassroomSessionPostResponseData extends JsonObject {
|
|
2056
|
-
"id": number;
|
|
2057
|
-
"classroom_session_id": number;
|
|
2058
|
-
"interactive_content_id": number;
|
|
2059
|
-
"room_code"?: string | null;
|
|
2060
|
-
"state"?: BackendJson<"sea_orm::prelude::Json"> | null;
|
|
2061
|
-
"created_at": string;
|
|
2062
|
-
}
|
|
2063
|
-
export interface InteractiveStoreClassroomSessionPostResponse extends ApiEnvelope<InteractiveStoreClassroomSessionPostResponseData> {
|
|
2064
|
-
}
|
|
2065
|
-
/** Backend response type: models::ClassroomSessionResponse. */
|
|
2066
|
-
export interface InteractiveShowClassroomSessionGetResponseData extends JsonObject {
|
|
2067
|
-
"id": number;
|
|
2068
|
-
"classroom_session_id": number;
|
|
2069
|
-
"interactive_content_id": number;
|
|
2070
|
-
"room_code"?: string | null;
|
|
2071
|
-
"state"?: BackendJson<"sea_orm::prelude::Json"> | null;
|
|
2072
|
-
"created_at": string;
|
|
2073
|
-
}
|
|
2074
|
-
export interface InteractiveShowClassroomSessionGetResponse extends ApiEnvelope<InteractiveShowClassroomSessionGetResponseData> {
|
|
2075
|
-
}
|
|
2076
|
-
/** Backend request type: models::UpdateClassroomSessionRequest. */
|
|
2077
|
-
export interface InteractiveUpdateClassroomSessionPatchInput extends JsonObject {
|
|
2078
|
-
"classroom_session_id"?: number | null;
|
|
2079
|
-
"interactive_content_id"?: number | null;
|
|
2080
|
-
"room_code"?: string | null;
|
|
2081
|
-
"state"?: BackendJson<"sea_orm::prelude::Json"> | null;
|
|
2109
|
+
/** Backend request type: multipart/form-data. */
|
|
2110
|
+
export type MediaUploadImagePostInput = FormData;
|
|
2111
|
+
/** Backend response type: UploadResponse. */
|
|
2112
|
+
export interface MediaUploadImagePostResponseData extends JsonObject {
|
|
2113
|
+
"url": string;
|
|
2114
|
+
"key": string;
|
|
2082
2115
|
}
|
|
2083
|
-
|
|
2084
|
-
export interface InteractiveUpdateClassroomSessionPatchResponseData extends JsonObject {
|
|
2085
|
-
"id": number;
|
|
2086
|
-
"classroom_session_id": number;
|
|
2087
|
-
"interactive_content_id": number;
|
|
2088
|
-
"room_code"?: string | null;
|
|
2089
|
-
"state"?: BackendJson<"sea_orm::prelude::Json"> | null;
|
|
2090
|
-
"created_at": string;
|
|
2116
|
+
export interface MediaUploadImagePostResponse extends ApiEnvelope<MediaUploadImagePostResponseData> {
|
|
2091
2117
|
}
|
|
2092
|
-
|
|
2118
|
+
/** Backend response type: raw-response. */
|
|
2119
|
+
export interface MediaDownloadImageGetResponse extends ApiEnvelope<JsonValue> {
|
|
2093
2120
|
}
|
|
2094
|
-
/** Backend query type:
|
|
2095
|
-
export interface
|
|
2096
|
-
"
|
|
2097
|
-
"
|
|
2121
|
+
/** Backend query type: ProfileSearchQuery. */
|
|
2122
|
+
export interface ProfileRoutesIndexGetQuery extends QueryParams {
|
|
2123
|
+
"page"?: number;
|
|
2124
|
+
"per_page"?: number;
|
|
2125
|
+
"filter[search]"?: string | null;
|
|
2098
2126
|
}
|
|
2099
|
-
/** Backend response type:
|
|
2100
|
-
export interface
|
|
2101
|
-
"
|
|
2102
|
-
"
|
|
2103
|
-
"
|
|
2104
|
-
"
|
|
2105
|
-
"
|
|
2106
|
-
"
|
|
2107
|
-
"status": string;
|
|
2108
|
-
"created_at": string;
|
|
2109
|
-
"updated_at": string;
|
|
2127
|
+
/** Backend response type: PagedResult<ProfileSummary>. */
|
|
2128
|
+
export interface ProfileRoutesIndexGetResponseItem extends JsonObject {
|
|
2129
|
+
"user_id": string;
|
|
2130
|
+
"first_name"?: JsonValue | null;
|
|
2131
|
+
"last_name"?: JsonValue | null;
|
|
2132
|
+
"email"?: string | null;
|
|
2133
|
+
"national_code"?: string | null;
|
|
2134
|
+
"phone"?: string | null;
|
|
2110
2135
|
}
|
|
2111
|
-
export interface
|
|
2136
|
+
export interface ProfileRoutesIndexGetResponsePageMeta extends JsonObject {
|
|
2112
2137
|
"page": number;
|
|
2113
2138
|
"page_size": number;
|
|
2114
2139
|
"total_items": number;
|
|
2115
2140
|
"total_pages": number;
|
|
2116
2141
|
}
|
|
2117
|
-
export interface
|
|
2118
|
-
"data":
|
|
2119
|
-
"meta":
|
|
2142
|
+
export interface ProfileRoutesIndexGetResponseData extends JsonObject {
|
|
2143
|
+
"data": ProfileRoutesIndexGetResponseItem[];
|
|
2144
|
+
"meta": ProfileRoutesIndexGetResponsePageMeta;
|
|
2120
2145
|
}
|
|
2121
|
-
export interface
|
|
2146
|
+
export interface ProfileRoutesIndexGetResponse extends ApiEnvelope<ProfileRoutesIndexGetResponseData> {
|
|
2122
2147
|
}
|
|
2123
|
-
/** Backend
|
|
2124
|
-
export interface
|
|
2125
|
-
"category_id"?: number | null;
|
|
2126
|
-
"name": string;
|
|
2127
|
-
"content_type": string;
|
|
2128
|
-
"payload"?: BackendJson<"sea_orm::prelude::Json"> | null;
|
|
2129
|
-
"reward_points": number;
|
|
2130
|
-
"status": string;
|
|
2148
|
+
/** Backend response type: Option<ProfileSummary>. */
|
|
2149
|
+
export interface ProfileRoutesShowGetResponse extends ApiEnvelope<BackendJson<"ProfileSummary"> | null> {
|
|
2131
2150
|
}
|
|
2132
|
-
/** Backend response type: models::
|
|
2133
|
-
export interface
|
|
2134
|
-
"id": number;
|
|
2135
|
-
"category_id"?: number | null;
|
|
2136
|
-
"name": string;
|
|
2137
|
-
"content_type": string;
|
|
2138
|
-
"payload"?: BackendJson<"sea_orm::prelude::Json"> | null;
|
|
2139
|
-
"reward_points": number;
|
|
2140
|
-
"status": string;
|
|
2141
|
-
"created_at": string;
|
|
2142
|
-
"updated_at": string;
|
|
2143
|
-
}
|
|
2144
|
-
export interface InteractiveStoreContentPostResponse extends ApiEnvelope<InteractiveStoreContentPostResponseData> {
|
|
2145
|
-
}
|
|
2146
|
-
/** Backend response type: models::ContentResponse. */
|
|
2147
|
-
export interface InteractiveShowContentGetResponseData extends JsonObject {
|
|
2151
|
+
/** Backend response type: models::CertificateResponse. */
|
|
2152
|
+
export interface CertificateVerifyCertificateGetResponseData extends JsonObject {
|
|
2148
2153
|
"id": number;
|
|
2149
|
-
"
|
|
2150
|
-
"
|
|
2151
|
-
"
|
|
2152
|
-
"
|
|
2153
|
-
"
|
|
2154
|
+
"public_id": string;
|
|
2155
|
+
"user_id": string;
|
|
2156
|
+
"profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
2157
|
+
"course_id"?: number | null;
|
|
2158
|
+
"classroom_id"?: number | null;
|
|
2159
|
+
"title": string;
|
|
2160
|
+
"certificate_template_id"?: number | null;
|
|
2161
|
+
"grade_id"?: number | null;
|
|
2154
2162
|
"status": string;
|
|
2163
|
+
"verification_code"?: string | null;
|
|
2164
|
+
"legacy_code"?: string | null;
|
|
2165
|
+
"issued_by"?: string | null;
|
|
2166
|
+
"issued_at": string;
|
|
2167
|
+
"media_url"?: string | null;
|
|
2168
|
+
"revoked_at"?: string | null;
|
|
2169
|
+
"revoke_reason"?: string | null;
|
|
2170
|
+
"render_snapshot": JsonValue;
|
|
2155
2171
|
"created_at": string;
|
|
2156
2172
|
"updated_at": string;
|
|
2157
2173
|
}
|
|
2158
|
-
export interface
|
|
2174
|
+
export interface CertificateVerifyCertificateGetResponse extends ApiEnvelope<CertificateVerifyCertificateGetResponseData> {
|
|
2159
2175
|
}
|
|
2160
|
-
/** Backend
|
|
2161
|
-
export interface
|
|
2162
|
-
"
|
|
2163
|
-
"
|
|
2164
|
-
"content_type"?: string | null;
|
|
2165
|
-
"payload"?: BackendJson<"sea_orm::prelude::Json"> | null;
|
|
2166
|
-
"reward_points"?: number | null;
|
|
2176
|
+
/** Backend query type: models::ReportQuery. */
|
|
2177
|
+
export interface ReportClassroomsGetQuery extends QueryParams {
|
|
2178
|
+
"from"?: string | null;
|
|
2179
|
+
"to"?: string | null;
|
|
2167
2180
|
"status"?: string | null;
|
|
2168
2181
|
}
|
|
2169
|
-
/** Backend response type: models::ContentResponse. */
|
|
2170
|
-
export interface InteractiveUpdateContentPatchResponseData extends JsonObject {
|
|
2171
|
-
"id": number;
|
|
2172
|
-
"category_id"?: number | null;
|
|
2173
|
-
"name": string;
|
|
2174
|
-
"content_type": string;
|
|
2175
|
-
"payload"?: BackendJson<"sea_orm::prelude::Json"> | null;
|
|
2176
|
-
"reward_points": number;
|
|
2177
|
-
"status": string;
|
|
2178
|
-
"created_at": string;
|
|
2179
|
-
"updated_at": string;
|
|
2180
|
-
}
|
|
2181
|
-
export interface InteractiveUpdateContentPatchResponse extends ApiEnvelope<InteractiveUpdateContentPatchResponseData> {
|
|
2182
|
-
}
|
|
2183
|
-
/** Backend query type: PaginationQuery. */
|
|
2184
|
-
export interface OpsIndexInvitationGetQuery extends QueryParams {
|
|
2185
|
-
"page_number"?: number | null;
|
|
2186
|
-
"page_size"?: number | null;
|
|
2187
|
-
}
|
|
2188
|
-
/** Backend response type: crate::models::PagedResult<models::InvitationResponse>. */
|
|
2189
|
-
export interface OpsIndexInvitationGetResponseItem extends JsonObject {
|
|
2190
|
-
"id": number;
|
|
2191
|
-
"inviter_user_id": string;
|
|
2192
|
-
"invitee_user_id"?: string | null;
|
|
2193
|
-
"invitee_email"?: string | null;
|
|
2194
|
-
"reward_status": string;
|
|
2195
|
-
"created_at": string;
|
|
2196
|
-
}
|
|
2197
|
-
export interface OpsIndexInvitationGetResponsePageMeta extends JsonObject {
|
|
2198
|
-
"page": number;
|
|
2199
|
-
"page_size": number;
|
|
2200
|
-
"total_items": number;
|
|
2201
|
-
"total_pages": number;
|
|
2202
|
-
}
|
|
2203
|
-
export interface OpsIndexInvitationGetResponseData extends JsonObject {
|
|
2204
|
-
"data": OpsIndexInvitationGetResponseItem[];
|
|
2205
|
-
"meta": OpsIndexInvitationGetResponsePageMeta;
|
|
2206
|
-
}
|
|
2207
|
-
export interface OpsIndexInvitationGetResponse extends ApiEnvelope<OpsIndexInvitationGetResponseData> {
|
|
2208
|
-
}
|
|
2209
|
-
/** Backend request type: models::CreateInvitationRequest. */
|
|
2210
|
-
export interface OpsStoreInvitationPostInput extends JsonObject {
|
|
2211
|
-
"inviter_user_id": string;
|
|
2212
|
-
"invitee_user_id"?: string | null;
|
|
2213
|
-
"invitee_email"?: string | null;
|
|
2214
|
-
"reward_status": string;
|
|
2215
|
-
}
|
|
2216
|
-
/** Backend response type: models::InvitationResponse. */
|
|
2217
|
-
export interface OpsStoreInvitationPostResponseData extends JsonObject {
|
|
2218
|
-
"id": number;
|
|
2219
|
-
"inviter_user_id": string;
|
|
2220
|
-
"invitee_user_id"?: string | null;
|
|
2221
|
-
"invitee_email"?: string | null;
|
|
2222
|
-
"reward_status": string;
|
|
2223
|
-
"created_at": string;
|
|
2224
|
-
}
|
|
2225
|
-
export interface OpsStoreInvitationPostResponse extends ApiEnvelope<OpsStoreInvitationPostResponseData> {
|
|
2226
|
-
}
|
|
2227
|
-
/** Backend response type: models::InvitationResponse. */
|
|
2228
|
-
export interface OpsShowInvitationGetResponseData extends JsonObject {
|
|
2229
|
-
"id": number;
|
|
2230
|
-
"inviter_user_id": string;
|
|
2231
|
-
"invitee_user_id"?: string | null;
|
|
2232
|
-
"invitee_email"?: string | null;
|
|
2233
|
-
"reward_status": string;
|
|
2234
|
-
"created_at": string;
|
|
2235
|
-
}
|
|
2236
|
-
export interface OpsShowInvitationGetResponse extends ApiEnvelope<OpsShowInvitationGetResponseData> {
|
|
2237
|
-
}
|
|
2238
|
-
/** Backend request type: models::UpdateInvitationRequest. */
|
|
2239
|
-
export interface OpsUpdateInvitationPatchInput extends JsonObject {
|
|
2240
|
-
"inviter_user_id"?: string | null;
|
|
2241
|
-
"invitee_user_id"?: string | null;
|
|
2242
|
-
"invitee_email"?: string | null;
|
|
2243
|
-
"reward_status"?: string | null;
|
|
2244
|
-
}
|
|
2245
|
-
/** Backend response type: models::InvitationResponse. */
|
|
2246
|
-
export interface OpsUpdateInvitationPatchResponseData extends JsonObject {
|
|
2247
|
-
"id": number;
|
|
2248
|
-
"inviter_user_id": string;
|
|
2249
|
-
"invitee_user_id"?: string | null;
|
|
2250
|
-
"invitee_email"?: string | null;
|
|
2251
|
-
"reward_status": string;
|
|
2252
|
-
"created_at": string;
|
|
2253
|
-
}
|
|
2254
|
-
export interface OpsUpdateInvitationPatchResponse extends ApiEnvelope<OpsUpdateInvitationPatchResponseData> {
|
|
2255
|
-
}
|
|
2256
|
-
/** Backend request type: multipart/form-data. */
|
|
2257
|
-
export type MediaUploadImagePostInput = FormData;
|
|
2258
|
-
/** Backend response type: UploadResponse. */
|
|
2259
|
-
export interface MediaUploadImagePostResponseData extends JsonObject {
|
|
2260
|
-
"url": string;
|
|
2261
|
-
"key": string;
|
|
2262
|
-
}
|
|
2263
|
-
export interface MediaUploadImagePostResponse extends ApiEnvelope<MediaUploadImagePostResponseData> {
|
|
2264
|
-
}
|
|
2265
|
-
/** Backend response type: raw-response. */
|
|
2266
|
-
export interface MediaDownloadImageGetResponse extends ApiEnvelope<JsonValue> {
|
|
2267
|
-
}
|
|
2268
2182
|
/** Backend response type: Vec<models::ClassroomReport>. */
|
|
2269
2183
|
export interface ReportClassroomsGetResponseItem extends JsonObject {
|
|
2270
2184
|
"classroom_id": number;
|
|
2185
|
+
"course_id": number;
|
|
2271
2186
|
"name": string;
|
|
2187
|
+
"status": string;
|
|
2188
|
+
"teacher_user_id"?: string | null;
|
|
2189
|
+
"teacher_profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
2190
|
+
"consultant_user_id"?: string | null;
|
|
2191
|
+
"consultant_profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
2272
2192
|
"student_count": number;
|
|
2273
2193
|
"session_count": number;
|
|
2194
|
+
"completed_session_count": number;
|
|
2195
|
+
"attendance_count": number;
|
|
2196
|
+
"absence_count": number;
|
|
2197
|
+
"attendance_rate": number;
|
|
2274
2198
|
}
|
|
2275
2199
|
export interface ReportClassroomsGetResponse extends ApiEnvelope<ReportClassroomsGetResponseItem[]> {
|
|
2276
2200
|
}
|
|
2201
|
+
/** Backend query type: models::ReportQuery. */
|
|
2202
|
+
export interface ReportConsultantsGetQuery extends QueryParams {
|
|
2203
|
+
"from"?: string | null;
|
|
2204
|
+
"to"?: string | null;
|
|
2205
|
+
"status"?: string | null;
|
|
2206
|
+
}
|
|
2207
|
+
/** Backend response type: Vec<models::ConsultantReport>. */
|
|
2208
|
+
export interface ReportConsultantsGetResponseItem extends JsonObject {
|
|
2209
|
+
"consultant_user_id": string;
|
|
2210
|
+
"consultant_profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
2211
|
+
"classroom_count": number;
|
|
2212
|
+
"active_classroom_count": number;
|
|
2213
|
+
"student_count": number;
|
|
2214
|
+
"session_count": number;
|
|
2215
|
+
"completed_session_count": number;
|
|
2216
|
+
"attendance_count": number;
|
|
2217
|
+
"absence_count": number;
|
|
2218
|
+
"attendance_rate": number;
|
|
2219
|
+
}
|
|
2220
|
+
export interface ReportConsultantsGetResponse extends ApiEnvelope<ReportConsultantsGetResponseItem[]> {
|
|
2221
|
+
}
|
|
2222
|
+
/** Backend query type: models::ReportQuery. */
|
|
2223
|
+
export interface ReportCoursesGetQuery extends QueryParams {
|
|
2224
|
+
"from"?: string | null;
|
|
2225
|
+
"to"?: string | null;
|
|
2226
|
+
"status"?: string | null;
|
|
2227
|
+
}
|
|
2228
|
+
/** Backend response type: Vec<models::CourseReport>. */
|
|
2229
|
+
export type ReportCoursesGetResponse = import("./types.js").AcademyCoursesResponse;
|
|
2230
|
+
/** Backend query type: models::ReportQuery. */
|
|
2231
|
+
export interface ReportStudentsGetQuery extends QueryParams {
|
|
2232
|
+
"from"?: string | null;
|
|
2233
|
+
"to"?: string | null;
|
|
2234
|
+
"status"?: string | null;
|
|
2235
|
+
}
|
|
2277
2236
|
/** Backend response type: Vec<models::StudentReport>. */
|
|
2278
2237
|
export interface ReportStudentsGetResponseItem extends JsonObject {
|
|
2279
2238
|
"user_id": string;
|
|
2239
|
+
"profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
2280
2240
|
"classroom_count": number;
|
|
2241
|
+
"session_count": number;
|
|
2242
|
+
"attendance_count": number;
|
|
2281
2243
|
"absence_count": number;
|
|
2244
|
+
"attendance_rate": number;
|
|
2282
2245
|
}
|
|
2283
2246
|
export interface ReportStudentsGetResponse extends ApiEnvelope<ReportStudentsGetResponseItem[]> {
|
|
2284
2247
|
}
|
|
2248
|
+
/** Backend query type: models::ReportQuery. */
|
|
2249
|
+
export interface ReportTeachersGetQuery extends QueryParams {
|
|
2250
|
+
"from"?: string | null;
|
|
2251
|
+
"to"?: string | null;
|
|
2252
|
+
"status"?: string | null;
|
|
2253
|
+
}
|
|
2285
2254
|
/** Backend response type: Vec<models::TeacherReport>. */
|
|
2286
2255
|
export interface ReportTeachersGetResponseItem extends JsonObject {
|
|
2287
2256
|
"teacher_user_id": string;
|
|
2257
|
+
"teacher_profile"?: BackendJson<"crate::profile::ProfileSummary"> | null;
|
|
2288
2258
|
"classroom_count": number;
|
|
2259
|
+
"active_classroom_count": number;
|
|
2260
|
+
"student_count": number;
|
|
2261
|
+
"session_count": number;
|
|
2262
|
+
"completed_session_count": number;
|
|
2263
|
+
"attendance_count": number;
|
|
2264
|
+
"absence_count": number;
|
|
2265
|
+
"attendance_rate": number;
|
|
2289
2266
|
}
|
|
2290
2267
|
export interface ReportTeachersGetResponse extends ApiEnvelope<ReportTeachersGetResponseItem[]> {
|
|
2291
2268
|
}
|
|
@@ -2300,162 +2277,6 @@ export interface ServiceCheckLicenceGetResponseData extends JsonObject {
|
|
|
2300
2277
|
}
|
|
2301
2278
|
export interface ServiceCheckLicenceGetResponse extends ApiEnvelope<ServiceCheckLicenceGetResponseData> {
|
|
2302
2279
|
}
|
|
2303
|
-
/** Backend query type: PaginationQuery. */
|
|
2304
|
-
export interface OpsIndexSupportInteractionGetQuery extends QueryParams {
|
|
2305
|
-
"page_number"?: number | null;
|
|
2306
|
-
"page_size"?: number | null;
|
|
2307
|
-
}
|
|
2308
|
-
/** Backend response type: crate::models::PagedResult<models::SupportInteractionResponse>. */
|
|
2309
|
-
export interface OpsIndexSupportInteractionGetResponseItem extends JsonObject {
|
|
2310
|
-
"id": number;
|
|
2311
|
-
"user_id": string;
|
|
2312
|
-
"subject": string;
|
|
2313
|
-
"body"?: string | null;
|
|
2314
|
-
"status": string;
|
|
2315
|
-
"created_at": string;
|
|
2316
|
-
"updated_at": string;
|
|
2317
|
-
}
|
|
2318
|
-
export interface OpsIndexSupportInteractionGetResponsePageMeta extends JsonObject {
|
|
2319
|
-
"page": number;
|
|
2320
|
-
"page_size": number;
|
|
2321
|
-
"total_items": number;
|
|
2322
|
-
"total_pages": number;
|
|
2323
|
-
}
|
|
2324
|
-
export interface OpsIndexSupportInteractionGetResponseData extends JsonObject {
|
|
2325
|
-
"data": OpsIndexSupportInteractionGetResponseItem[];
|
|
2326
|
-
"meta": OpsIndexSupportInteractionGetResponsePageMeta;
|
|
2327
|
-
}
|
|
2328
|
-
export interface OpsIndexSupportInteractionGetResponse extends ApiEnvelope<OpsIndexSupportInteractionGetResponseData> {
|
|
2329
|
-
}
|
|
2330
|
-
/** Backend request type: models::CreateSupportInteractionRequest. */
|
|
2331
|
-
export interface OpsStoreSupportInteractionPostInput extends JsonObject {
|
|
2332
|
-
"user_id": string;
|
|
2333
|
-
"subject": string;
|
|
2334
|
-
"body"?: string | null;
|
|
2335
|
-
"status": string;
|
|
2336
|
-
}
|
|
2337
|
-
/** Backend response type: models::SupportInteractionResponse. */
|
|
2338
|
-
export interface OpsStoreSupportInteractionPostResponseData extends JsonObject {
|
|
2339
|
-
"id": number;
|
|
2340
|
-
"user_id": string;
|
|
2341
|
-
"subject": string;
|
|
2342
|
-
"body"?: string | null;
|
|
2343
|
-
"status": string;
|
|
2344
|
-
"created_at": string;
|
|
2345
|
-
"updated_at": string;
|
|
2346
|
-
}
|
|
2347
|
-
export interface OpsStoreSupportInteractionPostResponse extends ApiEnvelope<OpsStoreSupportInteractionPostResponseData> {
|
|
2348
|
-
}
|
|
2349
|
-
/** Backend response type: models::SupportInteractionResponse. */
|
|
2350
|
-
export interface OpsShowSupportInteractionGetResponseData extends JsonObject {
|
|
2351
|
-
"id": number;
|
|
2352
|
-
"user_id": string;
|
|
2353
|
-
"subject": string;
|
|
2354
|
-
"body"?: string | null;
|
|
2355
|
-
"status": string;
|
|
2356
|
-
"created_at": string;
|
|
2357
|
-
"updated_at": string;
|
|
2358
|
-
}
|
|
2359
|
-
export interface OpsShowSupportInteractionGetResponse extends ApiEnvelope<OpsShowSupportInteractionGetResponseData> {
|
|
2360
|
-
}
|
|
2361
|
-
/** Backend request type: models::UpdateSupportInteractionRequest. */
|
|
2362
|
-
export interface OpsUpdateSupportInteractionPatchInput extends JsonObject {
|
|
2363
|
-
"user_id"?: string | null;
|
|
2364
|
-
"subject"?: string | null;
|
|
2365
|
-
"body"?: string | null;
|
|
2366
|
-
"status"?: string | null;
|
|
2367
|
-
}
|
|
2368
|
-
/** Backend response type: models::SupportInteractionResponse. */
|
|
2369
|
-
export interface OpsUpdateSupportInteractionPatchResponseData extends JsonObject {
|
|
2370
|
-
"id": number;
|
|
2371
|
-
"user_id": string;
|
|
2372
|
-
"subject": string;
|
|
2373
|
-
"body"?: string | null;
|
|
2374
|
-
"status": string;
|
|
2375
|
-
"created_at": string;
|
|
2376
|
-
"updated_at": string;
|
|
2377
|
-
}
|
|
2378
|
-
export interface OpsUpdateSupportInteractionPatchResponse extends ApiEnvelope<OpsUpdateSupportInteractionPatchResponseData> {
|
|
2379
|
-
}
|
|
2380
|
-
/** Backend query type: PaginationQuery. */
|
|
2381
|
-
export interface OpsIndexWorktimeGetQuery extends QueryParams {
|
|
2382
|
-
"page_number"?: number | null;
|
|
2383
|
-
"page_size"?: number | null;
|
|
2384
|
-
}
|
|
2385
|
-
/** Backend response type: crate::models::PagedResult<models::WorktimeResponse>. */
|
|
2386
|
-
export interface OpsIndexWorktimeGetResponseItem extends JsonObject {
|
|
2387
|
-
"id": number;
|
|
2388
|
-
"teacher_user_id": string;
|
|
2389
|
-
"starts_at": string;
|
|
2390
|
-
"ends_at"?: string | null;
|
|
2391
|
-
"status": string;
|
|
2392
|
-
"notes"?: string | null;
|
|
2393
|
-
"created_at": string;
|
|
2394
|
-
}
|
|
2395
|
-
export interface OpsIndexWorktimeGetResponsePageMeta extends JsonObject {
|
|
2396
|
-
"page": number;
|
|
2397
|
-
"page_size": number;
|
|
2398
|
-
"total_items": number;
|
|
2399
|
-
"total_pages": number;
|
|
2400
|
-
}
|
|
2401
|
-
export interface OpsIndexWorktimeGetResponseData extends JsonObject {
|
|
2402
|
-
"data": OpsIndexWorktimeGetResponseItem[];
|
|
2403
|
-
"meta": OpsIndexWorktimeGetResponsePageMeta;
|
|
2404
|
-
}
|
|
2405
|
-
export interface OpsIndexWorktimeGetResponse extends ApiEnvelope<OpsIndexWorktimeGetResponseData> {
|
|
2406
|
-
}
|
|
2407
|
-
/** Backend request type: models::CreateWorktimeRequest. */
|
|
2408
|
-
export interface OpsStoreWorktimePostInput extends JsonObject {
|
|
2409
|
-
"teacher_user_id": string;
|
|
2410
|
-
"starts_at": string;
|
|
2411
|
-
"ends_at"?: string | null;
|
|
2412
|
-
"status": string;
|
|
2413
|
-
"notes"?: string | null;
|
|
2414
|
-
}
|
|
2415
|
-
/** Backend response type: models::WorktimeResponse. */
|
|
2416
|
-
export interface OpsStoreWorktimePostResponseData extends JsonObject {
|
|
2417
|
-
"id": number;
|
|
2418
|
-
"teacher_user_id": string;
|
|
2419
|
-
"starts_at": string;
|
|
2420
|
-
"ends_at"?: string | null;
|
|
2421
|
-
"status": string;
|
|
2422
|
-
"notes"?: string | null;
|
|
2423
|
-
"created_at": string;
|
|
2424
|
-
}
|
|
2425
|
-
export interface OpsStoreWorktimePostResponse extends ApiEnvelope<OpsStoreWorktimePostResponseData> {
|
|
2426
|
-
}
|
|
2427
|
-
/** Backend response type: models::WorktimeResponse. */
|
|
2428
|
-
export interface OpsShowWorktimeGetResponseData extends JsonObject {
|
|
2429
|
-
"id": number;
|
|
2430
|
-
"teacher_user_id": string;
|
|
2431
|
-
"starts_at": string;
|
|
2432
|
-
"ends_at"?: string | null;
|
|
2433
|
-
"status": string;
|
|
2434
|
-
"notes"?: string | null;
|
|
2435
|
-
"created_at": string;
|
|
2436
|
-
}
|
|
2437
|
-
export interface OpsShowWorktimeGetResponse extends ApiEnvelope<OpsShowWorktimeGetResponseData> {
|
|
2438
|
-
}
|
|
2439
|
-
/** Backend request type: models::UpdateWorktimeRequest. */
|
|
2440
|
-
export interface OpsUpdateWorktimePatchInput extends JsonObject {
|
|
2441
|
-
"teacher_user_id"?: string | null;
|
|
2442
|
-
"starts_at"?: string | null;
|
|
2443
|
-
"ends_at"?: string | null;
|
|
2444
|
-
"status"?: string | null;
|
|
2445
|
-
"notes"?: string | null;
|
|
2446
|
-
}
|
|
2447
|
-
/** Backend response type: models::WorktimeResponse. */
|
|
2448
|
-
export interface OpsUpdateWorktimePatchResponseData extends JsonObject {
|
|
2449
|
-
"id": number;
|
|
2450
|
-
"teacher_user_id": string;
|
|
2451
|
-
"starts_at": string;
|
|
2452
|
-
"ends_at"?: string | null;
|
|
2453
|
-
"status": string;
|
|
2454
|
-
"notes"?: string | null;
|
|
2455
|
-
"created_at": string;
|
|
2456
|
-
}
|
|
2457
|
-
export interface OpsUpdateWorktimePatchResponse extends ApiEnvelope<OpsUpdateWorktimePatchResponseData> {
|
|
2458
|
-
}
|
|
2459
2280
|
/** Backend response type: api. */
|
|
2460
2281
|
export interface RouterStatusRouteGetResponse extends ApiEnvelope<JsonValue> {
|
|
2461
2282
|
}
|