File tree 6 files changed +17
-8
lines changed
6 files changed +17
-8
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @jspsych/plugin-animation " : patch
3
+ " @jspsych/plugin-free-sort " : patch
4
+ " @jspsych/plugin-instructions " : patch
5
+ " @jspsych/plugin-maxdiff " : patch
6
+ " @jspsych/plugin-sketchpad " : patch
7
+ ---
8
+
9
+ fix data values with ` COMPLEX ` type to use proper metadata syntax
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ const info = <const>{
65
65
animation_sequence : {
66
66
type : ParameterType . COMPLEX ,
67
67
array : true ,
68
- parameters : {
68
+ nested : {
69
69
stimulus : {
70
70
type : ParameterType . STRING ,
71
71
} ,
@@ -83,7 +83,7 @@ const info = <const>{
83
83
response : {
84
84
type : ParameterType . COMPLEX ,
85
85
array : true ,
86
- parameters : {
86
+ nested : {
87
87
stimulus : {
88
88
type : ParameterType . STRING ,
89
89
} ,
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ const info = <const>{
134
134
moves : {
135
135
type : ParameterType . COMPLEX ,
136
136
array : true ,
137
- parameters : {
137
+ nested : {
138
138
src : {
139
139
type : ParameterType . STRING ,
140
140
} ,
@@ -150,7 +150,7 @@ const info = <const>{
150
150
final_locations : {
151
151
type : ParameterType . COMPLEX ,
152
152
array : true ,
153
- parameters : {
153
+ nested : {
154
154
src : {
155
155
type : ParameterType . STRING ,
156
156
} ,
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ const info = <const>{
78
78
view_history : {
79
79
type : ParameterType . COMPLEX ,
80
80
array : true ,
81
- parameters : {
81
+ nested : {
82
82
page_index : {
83
83
type : ParameterType . INT ,
84
84
} ,
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ const info = <const>{
52
52
* columns. This will be encoded as a JSON string when data is saved using the `.json()` or `.csv()` functions. */
53
53
labels : {
54
54
type : ParameterType . COMPLEX ,
55
- parameters : {
55
+ nested : {
56
56
left : {
57
57
type : ParameterType . STRING ,
58
58
} ,
@@ -65,7 +65,7 @@ const info = <const>{
65
65
* This will be encoded as a JSON string when data is saved using the `.json()` or `.csv()` functions. */
66
66
response : {
67
67
type : ParameterType . COMPLEX ,
68
- parameters : {
68
+ nested : {
69
69
left : {
70
70
type : ParameterType . STRING ,
71
71
} ,
Original file line number Diff line number Diff line change @@ -232,7 +232,7 @@ const info = <const>{
232
232
strokes : {
233
233
type : ParameterType . COMPLEX ,
234
234
array : true ,
235
- parameters : {
235
+ nested : {
236
236
action : {
237
237
type : ParameterType . STRING ,
238
238
} ,
You can’t perform that action at this time.
0 commit comments