We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d104fd2 commit b1dbad1Copy full SHA for b1dbad1
packages/powersync_core/lib/src/sync/streaming_sync.dart
@@ -588,7 +588,13 @@ final class _ActiveRustStreamingIteration {
588
589
Future<void> syncIteration() async {
590
try {
591
- await _control('start', convert.json.encode(sync.options.params));
+ await _control(
592
+ 'start',
593
+ convert.json.encode({
594
+ 'parameters': sync.options.params,
595
+ 'schema': 'TODO: Pass-through schema (probably in serialized form)',
596
+ }),
597
+ );
598
assert(_completedStream.isCompleted, 'Should have started streaming');
599
await _completedStream.future;
600
} finally {
0 commit comments