@parra/parra-js-sdk 0.2.13 → 0.2.14

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.
@@ -76,11 +76,13 @@ export interface CardsResponse {
76
76
  items: Array<CardItem>;
77
77
  }
78
78
  export declare enum QuestionType {
79
- choice = "choice"
79
+ choice = "choice",
80
+ rating = "rating"
80
81
  }
81
82
  export declare enum QuestionKind {
82
83
  radio = "radio",
83
- checkbox = "checkbox"
84
+ checkbox = "checkbox",
85
+ star = "star"
84
86
  }
85
87
  export interface CreateChoiceQuestionOption {
86
88
  title: string;
package/dist/ParraAPI.js CHANGED
@@ -8,11 +8,13 @@ var CardItemType;
8
8
  var QuestionType;
9
9
  (function (QuestionType) {
10
10
  QuestionType["choice"] = "choice";
11
+ QuestionType["rating"] = "rating";
11
12
  })(QuestionType = exports.QuestionType || (exports.QuestionType = {}));
12
13
  var QuestionKind;
13
14
  (function (QuestionKind) {
14
15
  QuestionKind["radio"] = "radio";
15
16
  QuestionKind["checkbox"] = "checkbox";
17
+ QuestionKind["star"] = "star";
16
18
  })(QuestionKind = exports.QuestionKind || (exports.QuestionKind = {}));
17
19
  var ParraAPI = /** @class */ (function () {
18
20
  function ParraAPI(http, options) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@parra/parra-js-sdk",
3
- "version": "0.2.13",
3
+ "version": "0.2.14",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",