@fireproof/core 0.20.0-dev-preview-10 → 0.20.0-dev-preview-11
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/index.cjs +4 -10
- package/index.cjs.map +1 -1
- package/index.d.cts +1 -5
- package/index.d.ts +1 -5
- package/index.js +4 -10
- package/index.js.map +1 -1
- package/metafile-cjs.json +1 -1
- package/metafile-esm.json +1 -1
- package/package.json +1 -1
- package/react/index.cjs +1 -1
- package/react/index.cjs.map +1 -1
- package/react/index.js +1 -1
- package/react/index.js.map +1 -1
- package/react/metafile-cjs.json +1 -1
- package/react/metafile-esm.json +1 -1
- package/tests/blockstore/interceptor-gateway.test.ts +1 -1
- package/tests/fireproof/all-gateway.test.ts +2 -2
- package/tests/fireproof/database.test.ts +9 -9
- package/tests/fireproof/fireproof.test.ts +19 -19
- package/tests/fireproof/hello.test.ts +5 -5
- package/tests/fireproof/indexer.test.ts +7 -7
- package/tests/fireproof/multiple-ledger.test.ts +1 -1
- package/tests/gateway/file/loader-config.test.ts +4 -4
- package/tests/gateway/indexdb/loader-config.test.ts +1 -1
package/index.cjs
CHANGED
@@ -4586,15 +4586,9 @@ function toStoreURIRuntime(sthis, name, sopts) {
|
|
4586
4586
|
}
|
4587
4587
|
};
|
4588
4588
|
}
|
4589
|
-
|
4590
|
-
|
4591
|
-
|
4592
|
-
}
|
4593
|
-
DB(name, opts) {
|
4594
|
-
return new DatabaseImpl(this.Ledger(name, opts));
|
4595
|
-
}
|
4596
|
-
};
|
4597
|
-
var fireproof = new Fireproof();
|
4589
|
+
function fireproof(name, opts) {
|
4590
|
+
return new DatabaseImpl(LedgerFactory(name, opts));
|
4591
|
+
}
|
4598
4592
|
|
4599
4593
|
// src/runtime/index.ts
|
4600
4594
|
var runtime_exports = {};
|
@@ -4646,6 +4640,6 @@ __export(file_exports, {
|
|
4646
4640
|
|
4647
4641
|
// src/version.ts
|
4648
4642
|
var PACKAGE_VERSION = Object.keys({
|
4649
|
-
"0.20.0-dev-preview-
|
4643
|
+
"0.20.0-dev-preview-11": "xxxx"
|
4650
4644
|
})[0];
|
4651
4645
|
//# sourceMappingURL=index.cjs.map
|