@parra/parra-js-sdk 0.2.102 → 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 +14 -8
- 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;
|
|
@@ -487,15 +493,15 @@ export interface MutableRatingQuestionBody {
|
|
|
487
493
|
}
|
|
488
494
|
export interface StarQuestionBody {
|
|
489
495
|
star_count: number;
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
496
|
+
leading_label?: string;
|
|
497
|
+
center_label?: string;
|
|
498
|
+
trailing_label?: string;
|
|
493
499
|
}
|
|
494
500
|
export interface MutableStarQuestionBody {
|
|
495
501
|
star_count: number;
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
502
|
+
leading_label?: string;
|
|
503
|
+
center_label?: string;
|
|
504
|
+
trailing_label?: string;
|
|
499
505
|
}
|
|
500
506
|
export interface ShortTextQuestionBody {
|
|
501
507
|
placeholder?: string;
|
|
@@ -519,11 +525,11 @@ export interface MutableLongTextQuestionBody {
|
|
|
519
525
|
}
|
|
520
526
|
export interface MutableBooleanQuestionOption {
|
|
521
527
|
title: string;
|
|
522
|
-
value:
|
|
528
|
+
value: string;
|
|
523
529
|
}
|
|
524
530
|
export interface BooleanQuestionOption {
|
|
525
531
|
title: string;
|
|
526
|
-
value:
|
|
532
|
+
value: string;
|
|
527
533
|
id: string;
|
|
528
534
|
}
|
|
529
535
|
export interface BooleanQuestionBody {
|