@parra/parra-js-sdk 0.2.102 → 0.2.103
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 +8 -8
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -487,15 +487,15 @@ export interface MutableRatingQuestionBody {
|
|
|
487
487
|
}
|
|
488
488
|
export interface StarQuestionBody {
|
|
489
489
|
star_count: number;
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
490
|
+
leading_label?: string;
|
|
491
|
+
center_label?: string;
|
|
492
|
+
trailing_label?: string;
|
|
493
493
|
}
|
|
494
494
|
export interface MutableStarQuestionBody {
|
|
495
495
|
star_count: number;
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
496
|
+
leading_label?: string;
|
|
497
|
+
center_label?: string;
|
|
498
|
+
trailing_label?: string;
|
|
499
499
|
}
|
|
500
500
|
export interface ShortTextQuestionBody {
|
|
501
501
|
placeholder?: string;
|
|
@@ -519,11 +519,11 @@ export interface MutableLongTextQuestionBody {
|
|
|
519
519
|
}
|
|
520
520
|
export interface MutableBooleanQuestionOption {
|
|
521
521
|
title: string;
|
|
522
|
-
value:
|
|
522
|
+
value: string;
|
|
523
523
|
}
|
|
524
524
|
export interface BooleanQuestionOption {
|
|
525
525
|
title: string;
|
|
526
|
-
value:
|
|
526
|
+
value: string;
|
|
527
527
|
id: string;
|
|
528
528
|
}
|
|
529
529
|
export interface BooleanQuestionBody {
|