@powersync/common 0.0.0-dev-20251203144301 → 0.0.0-dev-20251209082930

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.
package/dist/bundle.cjs CHANGED
@@ -13426,11 +13426,11 @@ class AbstractPowerSyncDatabase extends BaseObserver {
13426
13426
  .map((n) => parseInt(n));
13427
13427
  }
13428
13428
  catch (e) {
13429
- throw new Error(`Unsupported powersync extension version. Need >=0.4.5 <1.0.0, got: ${this.sdkVersion}. Details: ${e.message}`);
13429
+ throw new Error(`Unsupported powersync extension version. Need >=0.4.10 <1.0.0, got: ${this.sdkVersion}. Details: ${e.message}`);
13430
13430
  }
13431
- // Validate >=0.4.5 <1.0.0
13432
- if (versionInts[0] != 0 || versionInts[1] < 4 || (versionInts[1] == 4 && versionInts[2] < 5)) {
13433
- throw new Error(`Unsupported powersync extension version. Need >=0.4.5 <1.0.0, got: ${this.sdkVersion}`);
13431
+ // Validate >=0.4.10 <1.0.0
13432
+ if (versionInts[0] != 0 || versionInts[1] < 4 || (versionInts[1] == 4 && versionInts[2] < 10)) {
13433
+ throw new Error(`Unsupported powersync extension version. Need >=0.4.10 <1.0.0, got: ${this.sdkVersion}`);
13434
13434
  }
13435
13435
  }
13436
13436
  async resolveOfflineSyncStatus() {