@peerbit/indexer-sqlite3 3.0.0-cba1bcc → 3.0.0-dac5207

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/index.min.js CHANGED
@@ -21940,7 +21940,7 @@ async function getIgnoreFK(stmt, values) {
21940
21940
  throw e;
21941
21941
  }
21942
21942
  }
21943
- var SQLLiteIndex = class {
21943
+ var SQLiteIndex = class {
21944
21944
  properties;
21945
21945
  // SQLite writes are inherently serialized per connection.
21946
21946
  // We still need an explicit async barrier because our API is async and
@@ -22389,7 +22389,7 @@ var SQLiteIndices = class _SQLiteIndices {
22389
22389
  if (existing) {
22390
22390
  return existing.index;
22391
22391
  }
22392
- const index = new SQLLiteIndex({
22392
+ const index = new SQLiteIndex({
22393
22393
  db: this.properties.db,
22394
22394
  schema: properties.schema,
22395
22395
  scope: this._scope
@@ -22918,7 +22918,7 @@ var create3 = async (directory) => {
22918
22918
  return new SQLiteIndices({ db, directory });
22919
22919
  };
22920
22920
  export {
22921
- SQLLiteIndex,
22921
+ SQLiteIndex,
22922
22922
  SQLiteIndices,
22923
22923
  create3 as create,
22924
22924
  encodeName