@parra/parra-js-sdk 0.2.103 → 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 -0
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -481,9 +481,15 @@ export interface RatingQuestionOption {
|
|
|
481
481
|
}
|
|
482
482
|
export interface RatingQuestionBody {
|
|
483
483
|
options: Array<RatingQuestionOption>;
|
|
484
|
+
leading_label?: string;
|
|
485
|
+
center_label?: string;
|
|
486
|
+
trailing_label?: string;
|
|
484
487
|
}
|
|
485
488
|
export interface MutableRatingQuestionBody {
|
|
486
489
|
options: Array<MutableRatingQuestionOption>;
|
|
490
|
+
leading_label?: string;
|
|
491
|
+
center_label?: string;
|
|
492
|
+
trailing_label?: string;
|
|
487
493
|
}
|
|
488
494
|
export interface StarQuestionBody {
|
|
489
495
|
star_count: number;
|