@faiber/faiber-lms 0.18.1 → 0.18.3

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.
@@ -2880,9 +2880,15 @@ export interface ExamUpdateQuestionPatchResponse extends ApiEnvelope<ExamUpdateQ
2880
2880
  export interface ExamIndexSessionGetQuery extends QueryParams {
2881
2881
  "page_number"?: number | null;
2882
2882
  "page_size"?: number | null;
2883
+ "search"?: string | null;
2883
2884
  "status"?: string | null;
2885
+ "exam_id"?: string | null;
2884
2886
  "classroom_id"?: string | null;
2885
2887
  "user_id"?: string | null;
2888
+ "student_user_id"?: string | null;
2889
+ "teacher_user_id"?: string | null;
2890
+ "consultant_user_id"?: string | null;
2891
+ "support_user_id"?: string | null;
2886
2892
  "from"?: string | null;
2887
2893
  "to"?: string | null;
2888
2894
  }
@@ -3260,6 +3266,7 @@ export interface HomeworkIndexBankHomeworkGetQuery extends QueryParams {
3260
3266
  export interface HomeworkIndexBankHomeworkGetResponseItem extends JsonObject {
3261
3267
  "id": string;
3262
3268
  "homework_id": string;
3269
+ "name": string;
3263
3270
  "question_text": string;
3264
3271
  "description"?: string | null;
3265
3272
  "answer"?: string | null;
@@ -3287,6 +3294,7 @@ export interface HomeworkIndexBankHomeworkGetResponse extends ApiEnvelope<Homewo
3287
3294
  }
3288
3295
  /** Backend request type: models::CreateBankHomeworkRequest. */
3289
3296
  export interface HomeworkStoreBankHomeworkPostInput extends JsonObject {
3297
+ "name"?: string | null;
3290
3298
  "question_text": string;
3291
3299
  "description"?: string | null;
3292
3300
  "answer"?: string | null;
@@ -3302,6 +3310,7 @@ export interface HomeworkStoreBankHomeworkPostInput extends JsonObject {
3302
3310
  export interface HomeworkStoreBankHomeworkPostResponseData extends JsonObject {
3303
3311
  "id": string;
3304
3312
  "homework_id": string;
3313
+ "name": string;
3305
3314
  "question_text": string;
3306
3315
  "description"?: string | null;
3307
3316
  "answer"?: string | null;
@@ -3324,6 +3333,7 @@ export interface HomeworkDestroyBankHomeworkDeleteResponse extends ApiEnvelope<J
3324
3333
  export interface HomeworkShowBankHomeworkGetResponseData extends JsonObject {
3325
3334
  "id": string;
3326
3335
  "homework_id": string;
3336
+ "name": string;
3327
3337
  "question_text": string;
3328
3338
  "description"?: string | null;
3329
3339
  "answer"?: string | null;
@@ -3341,6 +3351,7 @@ export interface HomeworkShowBankHomeworkGetResponse extends ApiEnvelope<Homewor
3341
3351
  }
3342
3352
  /** Backend request type: models::UpdateBankHomeworkRequest. */
3343
3353
  export interface HomeworkUpdateBankHomeworkPatchInput extends JsonObject {
3354
+ "name"?: string | null;
3344
3355
  "question_text"?: string | null;
3345
3356
  "description"?: string | null;
3346
3357
  "answer"?: string | null;
@@ -3356,6 +3367,7 @@ export interface HomeworkUpdateBankHomeworkPatchInput extends JsonObject {
3356
3367
  export interface HomeworkUpdateBankHomeworkPatchResponseData extends JsonObject {
3357
3368
  "id": string;
3358
3369
  "homework_id": string;
3370
+ "name": string;
3359
3371
  "question_text": string;
3360
3372
  "description"?: string | null;
3361
3373
  "answer"?: string | null;
@@ -3567,6 +3579,10 @@ export interface HomeworkIndexAssignmentGetQuery extends QueryParams {
3567
3579
  "homework_id"?: string | null;
3568
3580
  "classroom_id"?: string | null;
3569
3581
  "user_id"?: string | null;
3582
+ "student_user_id"?: string | null;
3583
+ "teacher_user_id"?: string | null;
3584
+ "consultant_user_id"?: string | null;
3585
+ "support_user_id"?: string | null;
3570
3586
  "from"?: string | null;
3571
3587
  "to"?: string | null;
3572
3588
  }
@@ -3607,6 +3623,8 @@ export interface HomeworkIndexAssignmentGetResponseItem extends JsonObject {
3607
3623
  "id": string;
3608
3624
  "homework_id": string;
3609
3625
  "homework_name"?: string | null;
3626
+ "homework"?: import("./types.js").Homework | null;
3627
+ "homework_question"?: import("./types.js").HomeworkQuestion | null;
3610
3628
  "classroom_id"?: string | null;
3611
3629
  "classroom_name"?: string | null;
3612
3630
  "user_id"?: string | null;
@@ -3687,6 +3705,8 @@ export interface HomeworkStoreAssignmentPostResponseData extends JsonObject {
3687
3705
  "id": string;
3688
3706
  "homework_id": string;
3689
3707
  "homework_name"?: string | null;
3708
+ "homework"?: import("./types.js").Homework | null;
3709
+ "homework_question"?: import("./types.js").HomeworkQuestion | null;
3690
3710
  "classroom_id"?: string | null;
3691
3711
  "classroom_name"?: string | null;
3692
3712
  "user_id"?: string | null;
@@ -3747,6 +3767,8 @@ export interface HomeworkShowAssignmentGetResponseData extends JsonObject {
3747
3767
  "id": string;
3748
3768
  "homework_id": string;
3749
3769
  "homework_name"?: string | null;
3770
+ "homework"?: import("./types.js").Homework | null;
3771
+ "homework_question"?: import("./types.js").HomeworkQuestion | null;
3750
3772
  "classroom_id"?: string | null;
3751
3773
  "classroom_name"?: string | null;
3752
3774
  "user_id"?: string | null;
@@ -3818,6 +3840,8 @@ export interface HomeworkUpdateAssignmentPatchResponseData extends JsonObject {
3818
3840
  "id": string;
3819
3841
  "homework_id": string;
3820
3842
  "homework_name"?: string | null;
3843
+ "homework"?: import("./types.js").Homework | null;
3844
+ "homework_question"?: import("./types.js").HomeworkQuestion | null;
3821
3845
  "classroom_id"?: string | null;
3822
3846
  "classroom_name"?: string | null;
3823
3847
  "user_id"?: string | null;
@@ -3852,6 +3876,7 @@ export interface HomeworkIndexQuestionGetQuery extends QueryParams {
3852
3876
  export interface HomeworkIndexQuestionGetResponseItem extends JsonObject {
3853
3877
  "id": string;
3854
3878
  "homework_id": string;
3879
+ "name": string;
3855
3880
  "question_text": string;
3856
3881
  "description"?: string | null;
3857
3882
  "answer"?: string | null;
@@ -3880,6 +3905,7 @@ export interface HomeworkIndexQuestionGetResponse extends ApiEnvelope<HomeworkIn
3880
3905
  /** Backend request type: models::CreateQuestionRequest. */
3881
3906
  export interface HomeworkStoreQuestionPostInput extends JsonObject {
3882
3907
  "homework_id": string;
3908
+ "name"?: string | null;
3883
3909
  "question_text": string;
3884
3910
  "description"?: string | null;
3885
3911
  "answer"?: string | null;
@@ -3895,6 +3921,7 @@ export interface HomeworkStoreQuestionPostInput extends JsonObject {
3895
3921
  export interface HomeworkStoreQuestionPostResponseData extends JsonObject {
3896
3922
  "id": string;
3897
3923
  "homework_id": string;
3924
+ "name": string;
3898
3925
  "question_text": string;
3899
3926
  "description"?: string | null;
3900
3927
  "answer"?: string | null;
@@ -3914,6 +3941,7 @@ export interface HomeworkStoreQuestionPostResponse extends ApiEnvelope<HomeworkS
3914
3941
  export interface HomeworkShowQuestionGetResponseData extends JsonObject {
3915
3942
  "id": string;
3916
3943
  "homework_id": string;
3944
+ "name": string;
3917
3945
  "question_text": string;
3918
3946
  "description"?: string | null;
3919
3947
  "answer"?: string | null;
@@ -3932,6 +3960,7 @@ export interface HomeworkShowQuestionGetResponse extends ApiEnvelope<HomeworkSho
3932
3960
  /** Backend request type: models::UpdateQuestionRequest. */
3933
3961
  export interface HomeworkUpdateQuestionPatchInput extends JsonObject {
3934
3962
  "homework_id"?: string | null;
3963
+ "name"?: string | null;
3935
3964
  "question_text"?: string | null;
3936
3965
  "description"?: string | null;
3937
3966
  "answer"?: string | null;
@@ -3947,6 +3976,7 @@ export interface HomeworkUpdateQuestionPatchInput extends JsonObject {
3947
3976
  export interface HomeworkUpdateQuestionPatchResponseData extends JsonObject {
3948
3977
  "id": string;
3949
3978
  "homework_id": string;
3979
+ "name": string;
3950
3980
  "question_text": string;
3951
3981
  "description"?: string | null;
3952
3982
  "answer"?: string | null;