@parra/parra-js-sdk 0.2.62 → 0.2.63
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 +3 -3
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
|
@@ -258,12 +258,12 @@ export declare enum QuestionKind {
|
|
|
258
258
|
}
|
|
259
259
|
export interface MutableChoiceQuestionOption {
|
|
260
260
|
title: string | null;
|
|
261
|
-
value
|
|
261
|
+
value?: string | null;
|
|
262
262
|
is_other?: boolean | null;
|
|
263
263
|
}
|
|
264
264
|
export interface ChoiceQuestionOption {
|
|
265
265
|
title: string | null;
|
|
266
|
-
value
|
|
266
|
+
value?: string | null;
|
|
267
267
|
is_other?: boolean | null;
|
|
268
268
|
id: string | null;
|
|
269
269
|
}
|
|
@@ -340,7 +340,7 @@ export interface ChoiceQuestionMetricsBody {
|
|
|
340
340
|
}
|
|
341
341
|
export interface ChoiceQuestionMetricsOption {
|
|
342
342
|
title: string | null;
|
|
343
|
-
value
|
|
343
|
+
value?: string | null;
|
|
344
344
|
is_other?: boolean | null;
|
|
345
345
|
id: string | null;
|
|
346
346
|
answer_count: number;
|