@parra/parra-js-sdk 0.2.103 → 0.2.104
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
|
@@ -431,9 +431,15 @@ 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;
|
|
434
437
|
}
|
|
435
438
|
export interface MutableChoiceQuestionBody {
|
|
436
439
|
options: Array<MutableChoiceQuestionOption>;
|
|
440
|
+
leading_label?: string;
|
|
441
|
+
center_label?: string;
|
|
442
|
+
trailing_label?: string;
|
|
437
443
|
}
|
|
438
444
|
export interface MutableCheckboxQuestionOption {
|
|
439
445
|
title: string;
|