@constructor-io/constructorio-client-javascript 2.42.0 → 2.42.1
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/lib/types/quizzes.d.ts +7 -1
- package/package.json +1 -1
package/lib/types/quizzes.d.ts
CHANGED
|
@@ -156,12 +156,18 @@ export interface QuestionImages extends Record<string, any> {
|
|
|
156
156
|
|
|
157
157
|
type ResultConfigFields = {
|
|
158
158
|
is_active: boolean;
|
|
159
|
-
text: Nullable<string
|
|
159
|
+
text: Nullable<string>;
|
|
160
|
+
};
|
|
161
|
+
|
|
162
|
+
type ResponseSummary = ResultConfigFields & {
|
|
163
|
+
items_separator: Nullable<string>;
|
|
164
|
+
last_separator: Nullable<string>;
|
|
160
165
|
}
|
|
161
166
|
|
|
162
167
|
type ViewportResultsConfig = {
|
|
163
168
|
title: Nullable<ResultConfigFields>;
|
|
164
169
|
description: Nullable<ResultConfigFields>;
|
|
170
|
+
response_summary: Nullable<ResponseSummary>;
|
|
165
171
|
};
|
|
166
172
|
|
|
167
173
|
export interface QuizResultsConfig extends Record<string, any> {
|