@powersync/common 0.0.0-dev-20250910123823 → 0.0.0-dev-20250915110424

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.
@@ -148,6 +148,9 @@ export class DifferentialQueryProcessor extends AbstractQueryProcessor {
148
148
  data: diff.all
149
149
  });
150
150
  }
151
+ if (this.state.error) {
152
+ partialStateUpdate.error = null;
153
+ }
151
154
  if (Object.keys(partialStateUpdate).length > 0) {
152
155
  await this.updateState(partialStateUpdate);
153
156
  }
@@ -58,6 +58,9 @@ export class OnChangeQueryProcessor extends AbstractQueryProcessor {
58
58
  data: result
59
59
  });
60
60
  }
61
+ if (this.state.error) {
62
+ partialStateUpdate.error = null;
63
+ }
61
64
  if (Object.keys(partialStateUpdate).length > 0) {
62
65
  await this.updateState(partialStateUpdate);
63
66
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powersync/common",
3
- "version": "0.0.0-dev-20250910123823",
3
+ "version": "0.0.0-dev-20250915110424",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"