@jskit-ai/console-core 0.1.111 → 0.1.113
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 +111 -7
- package/package.descriptor.mjs +0 -115
package/package.json
CHANGED
|
@@ -1,17 +1,121 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jskit-ai/console-core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.113",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "node --test"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@jskit-ai/auth-core": "0.1.
|
|
10
|
-
"@jskit-ai/database-runtime": "0.1.
|
|
11
|
-
"@jskit-ai/http-runtime": "0.1.
|
|
12
|
-
"@jskit-ai/kernel": "0.1.
|
|
13
|
-
"@jskit-ai/resource-crud-core": "0.1.
|
|
14
|
-
"@jskit-ai/users-core": "0.1.
|
|
9
|
+
"@jskit-ai/auth-core": "0.1.148",
|
|
10
|
+
"@jskit-ai/database-runtime": "0.1.150",
|
|
11
|
+
"@jskit-ai/http-runtime": "0.1.148",
|
|
12
|
+
"@jskit-ai/kernel": "0.1.150",
|
|
13
|
+
"@jskit-ai/resource-crud-core": "0.1.92",
|
|
14
|
+
"@jskit-ai/users-core": "0.1.163",
|
|
15
15
|
"json-rest-schema": "^1.0.17"
|
|
16
|
+
},
|
|
17
|
+
"description": "Console runtime: console settings schema, bootstrap flags, actions, and HTTP routes.",
|
|
18
|
+
"jskit": {
|
|
19
|
+
"kind": "runtime",
|
|
20
|
+
"capabilities": {
|
|
21
|
+
"provides": [
|
|
22
|
+
"console.core",
|
|
23
|
+
"console.server-routes"
|
|
24
|
+
],
|
|
25
|
+
"requires": [
|
|
26
|
+
"runtime.actions",
|
|
27
|
+
"runtime.database",
|
|
28
|
+
"users.core"
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
"runtime": {
|
|
32
|
+
"server": {
|
|
33
|
+
"providers": [
|
|
34
|
+
{
|
|
35
|
+
"entrypoint": "src/server/ConsoleCoreServiceProvider.js",
|
|
36
|
+
"export": "ConsoleCoreServiceProvider"
|
|
37
|
+
}
|
|
38
|
+
]
|
|
39
|
+
},
|
|
40
|
+
"client": {
|
|
41
|
+
"providers": []
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"metadata": {
|
|
45
|
+
"jskit": {
|
|
46
|
+
"tableOwnership": {
|
|
47
|
+
"tables": [
|
|
48
|
+
{
|
|
49
|
+
"tableName": "console_settings",
|
|
50
|
+
"provenance": "runtime-package",
|
|
51
|
+
"ownerKind": "package-runtime"
|
|
52
|
+
}
|
|
53
|
+
]
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"apiSummary": {
|
|
57
|
+
"surfaces": [
|
|
58
|
+
{
|
|
59
|
+
"subpath": "./server",
|
|
60
|
+
"summary": "Exports ConsoleCoreServiceProvider plus console settings services, routes, and action definitions."
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"subpath": "./shared",
|
|
64
|
+
"summary": "Exports the shared console settings resource contract."
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"subpath": "./client",
|
|
68
|
+
"summary": "Exports no runtime API today (reserved client entrypoint)."
|
|
69
|
+
}
|
|
70
|
+
],
|
|
71
|
+
"containerTokens": {
|
|
72
|
+
"server": [],
|
|
73
|
+
"client": []
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"server": {
|
|
77
|
+
"routes": [
|
|
78
|
+
{
|
|
79
|
+
"method": "GET",
|
|
80
|
+
"path": "/api/console/settings",
|
|
81
|
+
"summary": "Get console settings."
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"method": "PATCH",
|
|
85
|
+
"path": "/api/console/settings",
|
|
86
|
+
"summary": "Update console settings."
|
|
87
|
+
}
|
|
88
|
+
]
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
"mutations": {
|
|
92
|
+
"dependencies": {
|
|
93
|
+
"runtime": {
|
|
94
|
+
"@jskit-ai/auth-core": "0.1.148",
|
|
95
|
+
"@jskit-ai/database-runtime": "0.1.150",
|
|
96
|
+
"@jskit-ai/http-runtime": "0.1.148",
|
|
97
|
+
"@jskit-ai/kernel": "0.1.150",
|
|
98
|
+
"@jskit-ai/resource-crud-core": "0.1.92",
|
|
99
|
+
"@jskit-ai/users-core": "0.1.163"
|
|
100
|
+
},
|
|
101
|
+
"dev": {}
|
|
102
|
+
},
|
|
103
|
+
"packageJson": {
|
|
104
|
+
"scripts": {}
|
|
105
|
+
},
|
|
106
|
+
"procfile": {},
|
|
107
|
+
"files": [
|
|
108
|
+
{
|
|
109
|
+
"op": "install-migration",
|
|
110
|
+
"from": "templates/migrations/console_core_generic_initial.cjs",
|
|
111
|
+
"toDir": "migrations",
|
|
112
|
+
"extension": ".cjs",
|
|
113
|
+
"reason": "Install console settings schema migration.",
|
|
114
|
+
"category": "migration",
|
|
115
|
+
"id": "console-core-generic-initial-schema"
|
|
116
|
+
}
|
|
117
|
+
],
|
|
118
|
+
"text": []
|
|
119
|
+
}
|
|
16
120
|
}
|
|
17
121
|
}
|
package/package.descriptor.mjs
DELETED
|
@@ -1,115 +0,0 @@
|
|
|
1
|
-
export default Object.freeze({
|
|
2
|
-
packageVersion: 1,
|
|
3
|
-
packageId: "@jskit-ai/console-core",
|
|
4
|
-
version: "0.1.111",
|
|
5
|
-
kind: "runtime",
|
|
6
|
-
description: "Console runtime: console settings schema, bootstrap flags, actions, and HTTP routes.",
|
|
7
|
-
dependsOn: [
|
|
8
|
-
"@jskit-ai/auth-core",
|
|
9
|
-
"@jskit-ai/database-runtime",
|
|
10
|
-
"@jskit-ai/http-runtime",
|
|
11
|
-
"@jskit-ai/resource-crud-core",
|
|
12
|
-
"@jskit-ai/users-core"
|
|
13
|
-
],
|
|
14
|
-
capabilities: {
|
|
15
|
-
provides: [
|
|
16
|
-
"console.core",
|
|
17
|
-
"console.server-routes"
|
|
18
|
-
],
|
|
19
|
-
requires: [
|
|
20
|
-
"runtime.actions",
|
|
21
|
-
"runtime.database",
|
|
22
|
-
"users.core"
|
|
23
|
-
]
|
|
24
|
-
},
|
|
25
|
-
runtime: {
|
|
26
|
-
server: {
|
|
27
|
-
providers: [
|
|
28
|
-
{
|
|
29
|
-
entrypoint: "src/server/ConsoleCoreServiceProvider.js",
|
|
30
|
-
export: "ConsoleCoreServiceProvider"
|
|
31
|
-
}
|
|
32
|
-
]
|
|
33
|
-
},
|
|
34
|
-
client: {
|
|
35
|
-
providers: []
|
|
36
|
-
}
|
|
37
|
-
},
|
|
38
|
-
metadata: {
|
|
39
|
-
jskit: {
|
|
40
|
-
tableOwnership: {
|
|
41
|
-
tables: [
|
|
42
|
-
{
|
|
43
|
-
tableName: "console_settings",
|
|
44
|
-
provenance: "runtime-package",
|
|
45
|
-
ownerKind: "package-runtime"
|
|
46
|
-
}
|
|
47
|
-
]
|
|
48
|
-
}
|
|
49
|
-
},
|
|
50
|
-
apiSummary: {
|
|
51
|
-
surfaces: [
|
|
52
|
-
{
|
|
53
|
-
subpath: "./server",
|
|
54
|
-
summary: "Exports ConsoleCoreServiceProvider plus console settings services, routes, and action definitions."
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
subpath: "./shared",
|
|
58
|
-
summary: "Exports the shared console settings resource contract."
|
|
59
|
-
},
|
|
60
|
-
{
|
|
61
|
-
subpath: "./client",
|
|
62
|
-
summary: "Exports no runtime API today (reserved client entrypoint)."
|
|
63
|
-
}
|
|
64
|
-
],
|
|
65
|
-
containerTokens: {
|
|
66
|
-
server: [],
|
|
67
|
-
client: []
|
|
68
|
-
}
|
|
69
|
-
},
|
|
70
|
-
server: {
|
|
71
|
-
routes: [
|
|
72
|
-
{
|
|
73
|
-
method: "GET",
|
|
74
|
-
path: "/api/console/settings",
|
|
75
|
-
summary: "Get console settings."
|
|
76
|
-
},
|
|
77
|
-
{
|
|
78
|
-
method: "PATCH",
|
|
79
|
-
path: "/api/console/settings",
|
|
80
|
-
summary: "Update console settings."
|
|
81
|
-
}
|
|
82
|
-
]
|
|
83
|
-
}
|
|
84
|
-
},
|
|
85
|
-
mutations: {
|
|
86
|
-
dependencies: {
|
|
87
|
-
runtime: {
|
|
88
|
-
"@jskit-ai/auth-core": "0.1.146",
|
|
89
|
-
"@jskit-ai/database-runtime": "0.1.147",
|
|
90
|
-
"@jskit-ai/http-runtime": "0.1.146",
|
|
91
|
-
"@jskit-ai/kernel": "0.1.147",
|
|
92
|
-
"@jskit-ai/resource-crud-core": "0.1.90",
|
|
93
|
-
"@jskit-ai/users-core": "0.1.161"
|
|
94
|
-
},
|
|
95
|
-
dev: {}
|
|
96
|
-
},
|
|
97
|
-
packageJson: {
|
|
98
|
-
scripts: {}
|
|
99
|
-
},
|
|
100
|
-
procfile: {},
|
|
101
|
-
files: [
|
|
102
|
-
{
|
|
103
|
-
op: "install-migration",
|
|
104
|
-
from: "templates/migrations/console_core_generic_initial.cjs",
|
|
105
|
-
toDir: "migrations",
|
|
106
|
-
extension: ".cjs",
|
|
107
|
-
reason: "Install console settings schema migration.",
|
|
108
|
-
category: "migration",
|
|
109
|
-
id: "console-core-generic-initial-schema"
|
|
110
|
-
}
|
|
111
|
-
],
|
|
112
|
-
text: [
|
|
113
|
-
]
|
|
114
|
-
}
|
|
115
|
-
});
|