@@ -11,6 +11,7 @@ import '../definitions/form.dart';
11
11
import '../definitions/interaction_affordances/interaction_affordance.dart' ;
12
12
import '../definitions/operation_type.dart' ;
13
13
import '../definitions/thing_description.dart' ;
14
+ import 'content.dart' ;
14
15
import 'interaction_output.dart' ;
15
16
import 'protocol_interfaces/protocol_client.dart' ;
16
17
import 'servient.dart' ;
@@ -153,7 +154,7 @@ class ConsumedThing implements scripting_api.ConsumedThing {
153
154
@override
154
155
Future <void > writeProperty (
155
156
String propertyName,
156
- InteractionInput input, {
157
+ InteractionInput ? input, {
157
158
int ? formIndex,
158
159
Map <String , Object >? uriVariables,
159
160
Object ? data,
@@ -179,15 +180,21 @@ class ConsumedThing implements scripting_api.ConsumedThing {
179
180
180
181
final form = clientAndForm.form;
181
182
final client = clientAndForm.client;
182
- final content = servient.contentSerdes
183
- .valueToContent (input, property, form.contentType);
183
+
184
+ final content = Content .fromInteractionInput (
185
+ input,
186
+ form.contentType,
187
+ servient.contentSerdes,
188
+ property,
189
+ );
190
+
184
191
await client.writeResource (form, content);
185
192
}
186
193
187
194
@override
188
195
Future <InteractionOutput > invokeAction (
189
196
String actionName, {
190
- InteractionInput input,
197
+ InteractionInput ? input,
191
198
Object ? data,
192
199
int ? formIndex,
193
200
Map <String , Object >? uriVariables,
@@ -213,8 +220,13 @@ class ConsumedThing implements scripting_api.ConsumedThing {
213
220
214
221
final form = clientAndForm.form;
215
222
final client = clientAndForm.client;
216
- final content = servient.contentSerdes
217
- .valueToContent (input, action.input, form.contentType);
223
+
224
+ final content = Content .fromInteractionInput (
225
+ input,
226
+ form.contentType,
227
+ servient.contentSerdes,
228
+ action.input,
229
+ );
218
230
219
231
final output = await client.invokeResource (form, content);
220
232
0 commit comments