@powersync/service-module-mongodb-storage 0.0.0-dev-20250903124544 → 0.0.0-dev-20250910154512

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.
@@ -12,12 +12,10 @@ export type MongoCheckpointAPIOptions = {
12
12
  export class MongoWriteCheckpointAPI implements storage.WriteCheckpointAPI {
13
13
  readonly db: PowerSyncMongo;
14
14
  private _mode: storage.WriteCheckpointMode;
15
- private sync_rules_id: number;
16
15
 
17
16
  constructor(options: MongoCheckpointAPIOptions) {
18
17
  this.db = options.db;
19
18
  this._mode = options.mode;
20
- this.sync_rules_id = options.sync_rules_id;
21
19
  }
22
20
 
23
21
  get writeCheckpointMode() {