@parra/parra-js-sdk 0.2.89 → 0.2.90
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/ParraAPI.d.ts +6 -6
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -409,9 +409,9 @@ export interface UpdateQuestionRequestBody {
|
|
|
409
409
|
active?: boolean;
|
|
410
410
|
expires_at?: string | null;
|
|
411
411
|
answer_quota?: number | null;
|
|
412
|
-
show_expires_at
|
|
413
|
-
show_answer_count
|
|
414
|
-
show_answer_quota
|
|
412
|
+
show_expires_at: boolean;
|
|
413
|
+
show_answer_count: boolean;
|
|
414
|
+
show_answer_quota: boolean;
|
|
415
415
|
}
|
|
416
416
|
export interface CreateQuestionRequestBody {
|
|
417
417
|
title: string;
|
|
@@ -421,9 +421,9 @@ export interface CreateQuestionRequestBody {
|
|
|
421
421
|
active?: boolean;
|
|
422
422
|
expires_at?: string | null;
|
|
423
423
|
answer_quota?: number | null;
|
|
424
|
-
show_expires_at
|
|
425
|
-
show_answer_count
|
|
426
|
-
show_answer_quota
|
|
424
|
+
show_expires_at: boolean;
|
|
425
|
+
show_answer_count: boolean;
|
|
426
|
+
show_answer_quota: boolean;
|
|
427
427
|
type: QuestionType;
|
|
428
428
|
kind: QuestionKind;
|
|
429
429
|
}
|