@jskit-ai/http-runtime 0.1.146 → 0.1.147

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/http-runtime",
3
- "version": "0.1.146",
3
+ "version": "0.1.147",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "test": "node --test"
@@ -18,7 +18,83 @@
18
18
  "./shared/validators/operationValidation": "./src/shared/validators/operationValidation.js"
19
19
  },
20
20
  "dependencies": {
21
- "@jskit-ai/kernel": "0.1.147",
21
+ "@jskit-ai/kernel": "0.1.149",
22
22
  "json-rest-schema": "^1.0.17"
23
+ },
24
+ "jskit": {
25
+ "kind": "runtime",
26
+ "capabilities": {
27
+ "provides": [
28
+ "validators.http",
29
+ "runtime.http-client"
30
+ ],
31
+ "requires": []
32
+ },
33
+ "runtime": {
34
+ "server": {
35
+ "providerEntrypoint": "src/server/providers/HttpValidatorsServiceProvider.js",
36
+ "providers": [
37
+ {
38
+ "entrypoint": "src/server/providers/HttpValidatorsServiceProvider.js",
39
+ "export": "HttpValidatorsServiceProvider"
40
+ },
41
+ {
42
+ "entrypoint": "src/server/providers/HttpClientRuntimeServiceProvider.js",
43
+ "export": "HttpClientRuntimeServiceProvider"
44
+ }
45
+ ]
46
+ },
47
+ "client": {
48
+ "providers": [
49
+ {
50
+ "entrypoint": "src/client/providers/HttpValidatorsClientProvider.js",
51
+ "export": "HttpValidatorsClientProvider"
52
+ },
53
+ {
54
+ "entrypoint": "src/client/providers/HttpClientRuntimeClientProvider.js",
55
+ "export": "HttpClientRuntimeClientProvider"
56
+ }
57
+ ]
58
+ }
59
+ },
60
+ "metadata": {
61
+ "apiSummary": {
62
+ "surfaces": [
63
+ {
64
+ "subpath": "./client",
65
+ "summary": "Exports HTTP client runtime APIs (createHttpClient and transport helpers) plus client providers."
66
+ },
67
+ {
68
+ "subpath": "./server",
69
+ "summary": "Exports service providers only (HttpValidatorsServiceProvider, HttpClientRuntimeServiceProvider)."
70
+ },
71
+ {
72
+ "subpath": "./shared",
73
+ "summary": "Exports HTTP validator/schema utilities, with structured validator subpaths under ./shared/validators/*."
74
+ }
75
+ ],
76
+ "containerTokens": {
77
+ "server": [
78
+ "runtime.http-client"
79
+ ],
80
+ "client": [
81
+ "runtime.http-client.client"
82
+ ]
83
+ }
84
+ }
85
+ },
86
+ "mutations": {
87
+ "dependencies": {
88
+ "runtime": {
89
+ "@jskit-ai/kernel": "0.1.149"
90
+ },
91
+ "dev": {}
92
+ },
93
+ "packageJson": {
94
+ "scripts": {}
95
+ },
96
+ "procfile": {},
97
+ "files": []
98
+ }
23
99
  }
24
100
  }
@@ -1,80 +0,0 @@
1
- export default Object.freeze({
2
- "packageVersion": 1,
3
- "packageId": "@jskit-ai/http-runtime",
4
- "version": "0.1.146",
5
- "kind": "runtime",
6
- "dependsOn": [],
7
- "capabilities": {
8
- "provides": [
9
- "validators.http",
10
- "runtime.http-client"
11
- ],
12
- "requires": []
13
- },
14
- "runtime": {
15
- "server": {
16
- "providerEntrypoint": "src/server/providers/HttpValidatorsServiceProvider.js",
17
- "providers": [
18
- {
19
- "entrypoint": "src/server/providers/HttpValidatorsServiceProvider.js",
20
- "export": "HttpValidatorsServiceProvider"
21
- },
22
- {
23
- "entrypoint": "src/server/providers/HttpClientRuntimeServiceProvider.js",
24
- "export": "HttpClientRuntimeServiceProvider"
25
- }
26
- ]
27
- },
28
- "client": {
29
- "providers": [
30
- {
31
- "entrypoint": "src/client/providers/HttpValidatorsClientProvider.js",
32
- "export": "HttpValidatorsClientProvider"
33
- },
34
- {
35
- "entrypoint": "src/client/providers/HttpClientRuntimeClientProvider.js",
36
- "export": "HttpClientRuntimeClientProvider"
37
- }
38
- ]
39
- }
40
- },
41
- "metadata": {
42
- "apiSummary": {
43
- "surfaces": [
44
- {
45
- "subpath": "./client",
46
- "summary": "Exports HTTP client runtime APIs (createHttpClient and transport helpers) plus client providers."
47
- },
48
- {
49
- "subpath": "./server",
50
- "summary": "Exports service providers only (HttpValidatorsServiceProvider, HttpClientRuntimeServiceProvider)."
51
- },
52
- {
53
- "subpath": "./shared",
54
- "summary": "Exports HTTP validator/schema utilities, with structured validator subpaths under ./shared/validators/*."
55
- }
56
- ],
57
- "containerTokens": {
58
- "server": [
59
- "runtime.http-client"
60
- ],
61
- "client": [
62
- "runtime.http-client.client"
63
- ]
64
- }
65
- }
66
- },
67
- "mutations": {
68
- "dependencies": {
69
- "runtime": {
70
- "@jskit-ai/kernel": "0.1.147"
71
- },
72
- "dev": {}
73
- },
74
- "packageJson": {
75
- "scripts": {}
76
- },
77
- "procfile": {},
78
- "files": []
79
- }
80
- });