@muze-nl/jsfs-solid 0.1.6 → 0.1.7
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/browser.js +2 -7
- package/dist/browser.js.map +2 -2
- package/dist/browser.min.js +1 -1
- package/dist/browser.min.js.map +3 -3
- package/package.json +1 -1
- package/package.json~ +2 -2
- package/src/SolidAdapter.js +11 -13
package/dist/browser.js
CHANGED
|
@@ -14686,20 +14686,15 @@
|
|
|
14686
14686
|
|
|
14687
14687
|
// src/SolidAdapter.js
|
|
14688
14688
|
var SolidAdapter = class extends HttpAdapter {
|
|
14689
|
-
#client;
|
|
14690
|
-
#path;
|
|
14691
14689
|
constructor(metroClient, path = "/", solidConfiguration = {}) {
|
|
14690
|
+
metroClient = client(metroClient).with(browser_default.oidcmw(solidConfiguration)).with(src_default3(solidConfiguration));
|
|
14691
|
+
path = new Path(path);
|
|
14692
14692
|
super(metroClient, path);
|
|
14693
|
-
this.#client = client(metroClient).with(browser_default.oidcmw(solidConfiguration)).with(src_default3(solidConfiguration));
|
|
14694
|
-
this.#path = new Path(path);
|
|
14695
14693
|
}
|
|
14696
14694
|
get name() {
|
|
14697
14695
|
return "SolidAdapter";
|
|
14698
14696
|
}
|
|
14699
14697
|
async list(path) {
|
|
14700
|
-
let supportedContentTypes = [
|
|
14701
|
-
"text/turtle"
|
|
14702
|
-
];
|
|
14703
14698
|
let result2 = await this.read(path);
|
|
14704
14699
|
if (result2.data) {
|
|
14705
14700
|
from(result2.data).where({
|