@parra/parra-js-sdk 0.2.104 → 0.2.105
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
|
@@ -431,15 +431,9 @@ export interface ChoiceQuestionOption {
|
|
|
431
431
|
}
|
|
432
432
|
export interface ChoiceQuestionBody {
|
|
433
433
|
options: Array<ChoiceQuestionOption>;
|
|
434
|
-
leading_label?: string;
|
|
435
|
-
center_label?: string;
|
|
436
|
-
trailing_label?: string;
|
|
437
434
|
}
|
|
438
435
|
export interface MutableChoiceQuestionBody {
|
|
439
436
|
options: Array<MutableChoiceQuestionOption>;
|
|
440
|
-
leading_label?: string;
|
|
441
|
-
center_label?: string;
|
|
442
|
-
trailing_label?: string;
|
|
443
437
|
}
|
|
444
438
|
export interface MutableCheckboxQuestionOption {
|
|
445
439
|
title: string;
|
|
@@ -487,9 +481,15 @@ export interface RatingQuestionOption {
|
|
|
487
481
|
}
|
|
488
482
|
export interface RatingQuestionBody {
|
|
489
483
|
options: Array<RatingQuestionOption>;
|
|
484
|
+
leading_label?: string;
|
|
485
|
+
center_label?: string;
|
|
486
|
+
trailing_label?: string;
|
|
490
487
|
}
|
|
491
488
|
export interface MutableRatingQuestionBody {
|
|
492
489
|
options: Array<MutableRatingQuestionOption>;
|
|
490
|
+
leading_label?: string;
|
|
491
|
+
center_label?: string;
|
|
492
|
+
trailing_label?: string;
|
|
493
493
|
}
|
|
494
494
|
export interface StarQuestionBody {
|
|
495
495
|
star_count: number;
|