@jskit-ai/json-rest-api-core 0.1.115 → 0.1.117
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jskit-ai/json-rest-api-core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.117",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "node --test"
|
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
"./server/jsonRestApiHost": "./src/server/jsonRestApiHost.js"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@jskit-ai/database-runtime": "0.1.
|
|
13
|
-
"@jskit-ai/resource-crud-core": "0.1.
|
|
12
|
+
"@jskit-ai/database-runtime": "0.1.173",
|
|
13
|
+
"@jskit-ai/resource-crud-core": "0.1.115",
|
|
14
14
|
"hooked-api": "1.x.x",
|
|
15
|
-
"json-rest-api": "^1.0.
|
|
15
|
+
"json-rest-api": "^1.0.28"
|
|
16
16
|
},
|
|
17
17
|
"description": "Shared internal json-rest-api host runtime with autofilter, query-projection, and row-policy support.",
|
|
18
18
|
"jskit": {
|
|
@@ -50,6 +50,6 @@
|
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"@jskit-ai/kernel": "0.1.
|
|
53
|
+
"@jskit-ai/kernel": "0.1.173"
|
|
54
54
|
}
|
|
55
55
|
}
|
|
@@ -27,7 +27,7 @@ test("package exports include explicit server jsonRestApiHost entrypoint only",
|
|
|
27
27
|
const exportsMap = packageJson && typeof packageJson === "object" ? packageJson.exports : {};
|
|
28
28
|
assert.equal(exportsMap["./server/jsonRestApiHost"], "./src/server/jsonRestApiHost.js");
|
|
29
29
|
assert.equal(exportsMap["./server"], undefined);
|
|
30
|
-
assert.equal(packageJson.dependencies?.["json-rest-api"], "^1.0.
|
|
30
|
+
assert.equal(packageJson.dependencies?.["json-rest-api"], "^1.0.28");
|
|
31
31
|
});
|
|
32
32
|
|
|
33
33
|
test("server jsonRestApiHost entrypoint exposes only the focused host API", async () => {
|