Skip to content

Commit 4c9a4c8

Browse files
committed
Create a new version based on the latest tag
1 parent 261e9b8 commit 4c9a4c8

377 files changed

Lines changed: 13380 additions & 875 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/typedoc/globals.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
- [CheckboxResponse](interfaces/CheckboxResponse.md)
1010
- [ComponentBlock](interfaces/ComponentBlock.md)
1111
- [ComponentBlockCondition](interfaces/ComponentBlockCondition.md)
12+
- [CustomResponse](interfaces/CustomResponse.md)
1213
- [DeterministicInterruption](interfaces/DeterministicInterruption.md)
1314
- [DividerResponse](interfaces/DividerResponse.md)
1415
- [DropdownResponse](interfaces/DropdownResponse.md)
@@ -17,6 +18,7 @@
1718
- [ImageComponent](interfaces/ImageComponent.md)
1819
- [IndividualComponentAllResponsesCondition](interfaces/IndividualComponentAllResponsesCondition.md)
1920
- [IndividualComponentSingleResponseCondition](interfaces/IndividualComponentSingleResponseCondition.md)
21+
- [JsonObject](interfaces/JsonObject.md)
2022
- [LibraryConfig](interfaces/LibraryConfig.md)
2123
- [LikertResponse](interfaces/LikertResponse.md)
2224
- [LongTextResponse](interfaces/LongTextResponse.md)
@@ -27,6 +29,7 @@
2729
- [NumericalResponse](interfaces/NumericalResponse.md)
2830
- [ParsedStringOption](interfaces/ParsedStringOption.md)
2931
- [ParticipantData](interfaces/ParticipantData.md)
32+
- [ParticipantDataWithStatus](interfaces/ParticipantDataWithStatus.md)
3033
- [ParticipantMetadata](interfaces/ParticipantMetadata.md)
3134
- [QuestionnaireComponent](interfaces/QuestionnaireComponent.md)
3235
- [RadioResponse](interfaces/RadioResponse.md)
@@ -61,6 +64,9 @@
6164
- [InheritedComponent](type-aliases/InheritedComponent.md)
6265
- [InputRules](type-aliases/InputRules.md)
6366
- [InterruptionBlock](type-aliases/InterruptionBlock.md)
67+
- [JsonArray](type-aliases/JsonArray.md)
68+
- [JsonPrimitive](type-aliases/JsonPrimitive.md)
69+
- [JsonValue](type-aliases/JsonValue.md)
6470
- [MatrixResponse](type-aliases/MatrixResponse.md)
6571
- [Response](type-aliases/Response.md)
6672
- [SkipConditions](type-aliases/SkipConditions.md)

docs/typedoc/interfaces/Answer.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Answer
22

3-
Defined in: [parser/types.ts:927](https://github.com/revisit-studies/study/blob/0246def09f8a8d3a9193428f2d57948507c787cd/src/parser/types.ts#L927)
3+
Defined in: [parser/types.ts:975](https://github.com/revisit-studies/study/blob/1342408885dd25e64fbef15c6478d0a8d7cedb45/src/parser/types.ts#L975)
44

55
The Answer interface is used to define the properties of an answer. Answers are used to define the correct answer for a task. These are generally used in training tasks or if skip logic is required based on the answer.
66

@@ -33,7 +33,7 @@ In this example, the correct answer to the question "What is 2 + 2?" is 4. If th
3333

3434
| Property | Type | Description | Defined in |
3535
| ------ | ------ | ------ | ------ |
36-
| <a id="acceptablehigh"></a> `acceptableHigh?` | `number` | The acceptable high value for the answer. This is used to define a range of acceptable answers. | [parser/types.ts:936](https://github.com/revisit-studies/study/blob/0246def09f8a8d3a9193428f2d57948507c787cd/src/parser/types.ts#L936) |
37-
| <a id="acceptablelow"></a> `acceptableLow?` | `number` | The acceptable low value for the answer. This is used to define a range of acceptable answers. | [parser/types.ts:934](https://github.com/revisit-studies/study/blob/0246def09f8a8d3a9193428f2d57948507c787cd/src/parser/types.ts#L934) |
38-
| <a id="answer"></a> `answer` | `any` | The correct answer to the question. | [parser/types.ts:932](https://github.com/revisit-studies/study/blob/0246def09f8a8d3a9193428f2d57948507c787cd/src/parser/types.ts#L932) |
39-
| <a id="id"></a> `id` | `string` | The id of the answer. This is used to identify the answer in the data file. | [parser/types.ts:929](https://github.com/revisit-studies/study/blob/0246def09f8a8d3a9193428f2d57948507c787cd/src/parser/types.ts#L929) |
36+
| <a id="acceptablehigh"></a> `acceptableHigh?` | `number` | The acceptable high value for the answer. This is used to define a range of acceptable answers. | [parser/types.ts:984](https://github.com/revisit-studies/study/blob/1342408885dd25e64fbef15c6478d0a8d7cedb45/src/parser/types.ts#L984) |
37+
| <a id="acceptablelow"></a> `acceptableLow?` | `number` | The acceptable low value for the answer. This is used to define a range of acceptable answers. | [parser/types.ts:982](https://github.com/revisit-studies/study/blob/1342408885dd25e64fbef15c6478d0a8d7cedb45/src/parser/types.ts#L982) |
38+
| <a id="answer"></a> `answer` | `any` | The correct answer to the question. | [parser/types.ts:980](https://github.com/revisit-studies/study/blob/1342408885dd25e64fbef15c6478d0a8d7cedb45/src/parser/types.ts#L980) |
39+
| <a id="id"></a> `id` | `string` | The id of the answer. This is used to identify the answer in the data file. | [parser/types.ts:977](https://github.com/revisit-studies/study/blob/1342408885dd25e64fbef15c6478d0a8d7cedb45/src/parser/types.ts#L977) |

0 commit comments

Comments
 (0)