@jskit-ai/json-rest-api-core 0.1.92 → 0.1.93

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.92",
3
+ "version": "0.1.93",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "test": "node --test"
@@ -9,8 +9,62 @@
9
9
  "./server/jsonRestApiHost": "./src/server/jsonRestApiHost.js"
10
10
  },
11
11
  "dependencies": {
12
+ "@jskit-ai/database-runtime": "0.1.149",
13
+ "@jskit-ai/kernel": "0.1.149",
12
14
  "hooked-api": "1.x.x",
13
- "json-rest-api": "^1.0.27",
14
- "@jskit-ai/kernel": "0.1.147"
15
+ "json-rest-api": "^1.0.27"
16
+ },
17
+ "description": "Shared internal json-rest-api host runtime with autofilter, query-projection, and row-policy support.",
18
+ "jskit": {
19
+ "kind": "runtime",
20
+ "capabilities": {
21
+ "provides": [
22
+ "json-rest-api.core"
23
+ ],
24
+ "requires": [
25
+ "runtime.database"
26
+ ]
27
+ },
28
+ "runtime": {
29
+ "server": {
30
+ "providers": [
31
+ {
32
+ "entrypoint": "src/server/JsonRestApiCoreServiceProvider.js",
33
+ "export": "JsonRestApiCoreServiceProvider"
34
+ }
35
+ ]
36
+ },
37
+ "client": {
38
+ "providers": []
39
+ }
40
+ },
41
+ "metadata": {
42
+ "apiSummary": {
43
+ "surfaces": [
44
+ {
45
+ "subpath": "./server",
46
+ "summary": "Exports the shared internal json-rest-api host token and resource registration helpers, including server-only row policies."
47
+ }
48
+ ],
49
+ "containerTokens": {
50
+ "server": [
51
+ "internal.json-rest-api"
52
+ ],
53
+ "client": []
54
+ }
55
+ }
56
+ },
57
+ "mutations": {
58
+ "dependencies": {
59
+ "runtime": {},
60
+ "dev": {}
61
+ },
62
+ "packageJson": {
63
+ "scripts": {}
64
+ },
65
+ "procfile": {},
66
+ "files": [],
67
+ "text": []
68
+ }
15
69
  }
16
70
  }
@@ -1,60 +0,0 @@
1
- export default Object.freeze({
2
- packageVersion: 1,
3
- packageId: "@jskit-ai/json-rest-api-core",
4
- version: "0.1.92",
5
- kind: "runtime",
6
- description: "Shared internal json-rest-api host runtime with autofilter, query-projection, and row-policy support.",
7
- dependsOn: [
8
- "@jskit-ai/database-runtime",
9
- "@jskit-ai/kernel"
10
- ],
11
- capabilities: {
12
- provides: [
13
- "json-rest-api.core"
14
- ],
15
- requires: [
16
- "runtime.database"
17
- ]
18
- },
19
- runtime: {
20
- server: {
21
- providers: [
22
- {
23
- entrypoint: "src/server/JsonRestApiCoreServiceProvider.js",
24
- export: "JsonRestApiCoreServiceProvider"
25
- }
26
- ]
27
- },
28
- client: {
29
- providers: []
30
- }
31
- },
32
- metadata: {
33
- apiSummary: {
34
- surfaces: [
35
- {
36
- subpath: "./server",
37
- summary: "Exports the shared internal json-rest-api host token and resource registration helpers, including server-only row policies."
38
- }
39
- ],
40
- containerTokens: {
41
- server: [
42
- "internal.json-rest-api"
43
- ],
44
- client: []
45
- }
46
- }
47
- },
48
- mutations: {
49
- dependencies: {
50
- runtime: {},
51
- dev: {}
52
- },
53
- packageJson: {
54
- scripts: {}
55
- },
56
- procfile: {},
57
- files: [],
58
- text: []
59
- }
60
- });