@parra/parra-js-sdk 0.2.22 → 0.2.23
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 +2 -2
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -151,9 +151,9 @@ export interface QuestionMetrics {
|
|
|
151
151
|
}
|
|
152
152
|
export declare type QuestionMetricsData = ChoiceQuestionMetricsBody;
|
|
153
153
|
export interface ChoiceQuestionMetricsBody {
|
|
154
|
-
options: Array<
|
|
154
|
+
options: Array<ChoiceQuestionMetricsOption>;
|
|
155
155
|
}
|
|
156
|
-
export interface
|
|
156
|
+
export interface ChoiceQuestionMetricsOption {
|
|
157
157
|
title: string;
|
|
158
158
|
value: string;
|
|
159
159
|
is_other?: boolean | null;
|