@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.
@@ -258,12 +258,12 @@ export declare enum QuestionKind {
258
258
  }
259
259
  export interface MutableChoiceQuestionOption {
260
260
  title: string | null;
261
- value: string | null;
261
+ value?: string | null;
262
262
  is_other?: boolean | null;
263
263
  }
264
264
  export interface ChoiceQuestionOption {
265
265
  title: string | null;
266
- value: string | null;
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: string | null;
343
+ value?: string | null;
344
344
  is_other?: boolean | null;
345
345
  id: string | null;
346
346
  answer_count: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.2.62",
3
+ "version": "0.2.63",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",