@atscript/moost-db 0.1.85 → 0.1.87
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.cjs +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +15 -15
package/dist/index.cjs
CHANGED
|
@@ -1045,6 +1045,7 @@ let AsDbReadableController = class AsDbReadableController extends AsReadableCont
|
|
|
1045
1045
|
return out;
|
|
1046
1046
|
}
|
|
1047
1047
|
hasField(path) {
|
|
1048
|
+
if (typeof this.readable.isValidFieldPath === "function") return this.readable.isValidFieldPath(path);
|
|
1048
1049
|
return this.readable.flatMap.has(path);
|
|
1049
1050
|
}
|
|
1050
1051
|
/**
|
package/dist/index.mjs
CHANGED
|
@@ -1044,6 +1044,7 @@ let AsDbReadableController = class AsDbReadableController extends AsReadableCont
|
|
|
1044
1044
|
return out;
|
|
1045
1045
|
}
|
|
1046
1046
|
hasField(path) {
|
|
1047
|
+
if (typeof this.readable.isValidFieldPath === "function") return this.readable.isValidFieldPath(path);
|
|
1047
1048
|
return this.readable.flatMap.has(path);
|
|
1048
1049
|
}
|
|
1049
1050
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atscript/moost-db",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.87",
|
|
4
4
|
"description": "Generic database controller for Moost with Atscript.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"annotations",
|
|
@@ -41,24 +41,24 @@
|
|
|
41
41
|
"@uniqu/url": "^0.1.6"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@atscript/core": "^0.1.
|
|
45
|
-
"@atscript/typescript": "^0.1.
|
|
46
|
-
"@moostjs/event-http": "^0.6.
|
|
44
|
+
"@atscript/core": "^0.1.61",
|
|
45
|
+
"@atscript/typescript": "^0.1.61",
|
|
46
|
+
"@moostjs/event-http": "^0.6.16",
|
|
47
47
|
"@uniqu/core": "^0.1.6",
|
|
48
|
-
"@wooksjs/event-core": "^0.7.
|
|
49
|
-
"@wooksjs/event-http": "^0.7.
|
|
50
|
-
"@wooksjs/http-body": "^0.7.
|
|
51
|
-
"moost": "^0.6.
|
|
52
|
-
"unplugin-atscript": "^0.1.
|
|
48
|
+
"@wooksjs/event-core": "^0.7.14",
|
|
49
|
+
"@wooksjs/event-http": "^0.7.14",
|
|
50
|
+
"@wooksjs/http-body": "^0.7.14",
|
|
51
|
+
"moost": "^0.6.16",
|
|
52
|
+
"unplugin-atscript": "^0.1.61"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
|
-
"@atscript/typescript": "^0.1.
|
|
56
|
-
"@moostjs/event-http": "^0.6.
|
|
55
|
+
"@atscript/typescript": "^0.1.61",
|
|
56
|
+
"@moostjs/event-http": "^0.6.16",
|
|
57
57
|
"@uniqu/core": "^0.1.6",
|
|
58
|
-
"@wooksjs/event-core": "^0.7.
|
|
59
|
-
"@wooksjs/http-body": "^0.7.
|
|
60
|
-
"moost": "^0.6.
|
|
61
|
-
"@atscript/db": "^0.1.
|
|
58
|
+
"@wooksjs/event-core": "^0.7.14",
|
|
59
|
+
"@wooksjs/http-body": "^0.7.14",
|
|
60
|
+
"moost": "^0.6.16",
|
|
61
|
+
"@atscript/db": "^0.1.87"
|
|
62
62
|
},
|
|
63
63
|
"scripts": {
|
|
64
64
|
"postinstall": "asc -f dts",
|