@xemahq/xema 0.15.13 → 0.16.1
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/assets/appliance-base/distribution.lock.json +1830 -702
- package/dist/assets/appliance-base/images.lock.json +272 -313
- package/dist/assets/appliance-lean/distribution.lock.json +1171 -447
- package/dist/assets/appliance-lean/images.lock.json +218 -201
- package/dist/assets/boot-graph.json +30 -11
- package/dist/assets/cloud/distribution.lock.json +1872 -777
- package/dist/assets/cloud/images.lock.json +284 -276
- package/dist/assets/core/distribution.lock.json +1199 -473
- package/dist/assets/core/images.lock.json +218 -196
- package/dist/assets/distribution-assets.manifest.json +30 -30
- package/dist/assets/minimal/distribution.lock.json +1089 -436
- package/dist/assets/minimal/images.lock.json +183 -188
- package/dist/assets/oss/distribution.lock.json +1851 -768
- package/dist/assets/oss/images.lock.json +274 -315
- package/dist/assets/starter/distribution.lock.json +1252 -514
- package/dist/assets/starter/images.lock.json +223 -228
- package/dist/commands/biome.js +1 -1
- package/dist/commands/biome.js.map +1 -1
- package/dist/runtime/biome-dev.d.ts.map +1 -1
- package/dist/runtime/biome-dev.js +0 -5
- package/dist/runtime/biome-dev.js.map +1 -1
- package/dist/runtime/biome-scaffold-manifest.d.ts +3 -8
- package/dist/runtime/biome-scaffold-manifest.d.ts.map +1 -1
- package/dist/runtime/biome-scaffold-manifest.js +2 -9
- package/dist/runtime/biome-scaffold-manifest.js.map +1 -1
- package/dist/runtime/biome-scaffold.d.ts +3 -3
- package/dist/runtime/biome-scaffold.d.ts.map +1 -1
- package/dist/runtime/biome-scaffold.js.map +1 -1
- package/dist/runtime/biome-validate.d.ts.map +1 -1
- package/dist/runtime/biome-validate.js +28 -50
- package/dist/runtime/biome-validate.js.map +1 -1
- package/dist/runtime/distribution/available-biome.d.ts.map +1 -1
- package/dist/runtime/distribution/available-biome.js +80 -14
- package/dist/runtime/distribution/available-biome.js.map +1 -1
- package/dist/runtime/distribution/compose.d.ts.map +1 -1
- package/dist/runtime/distribution/compose.js +2 -9
- package/dist/runtime/distribution/compose.js.map +1 -1
- package/dist/runtime/platform-services.d.ts.map +1 -1
- package/dist/runtime/platform-services.js +2 -2
- package/dist/runtime/platform-services.js.map +1 -1
- package/dist/runtime/sources/manifest-walk.d.ts +1 -0
- package/dist/runtime/sources/manifest-walk.d.ts.map +1 -1
- package/dist/runtime/sources/manifest-walk.js +9 -2
- package/dist/runtime/sources/manifest-walk.js.map +1 -1
- package/dist/runtime/waves.d.ts.map +1 -1
- package/dist/runtime/waves.js.map +1 -1
- package/package.json +5 -9
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$comment": "GENERATED by tooling/codegen/generate-boot-graph.mjs.
|
|
2
|
+
"$comment": "GENERATED by tooling/codegen/generate-boot-graph.mjs. Node tiers come from each biome manifest's xema.scope; hard startup edges come from xema-biome.json xema.components[].protocol.requiresServices (the v5 component contract — the v4 ships.apis[] spelling is retired). A component with scheduler \"runtime\" is an image payload another service launches, not a standing workload, and is not a node. Non-biome services come from the platformServices[] of every resolved distribution lock. Edit the sources, never this file; regenerate with `pnpm gen:boot-graph`, which writes tooling/boundaries/boot-graph.json and repos-infra/xema-deploy/generated/boot-graph.json — the third copy, repos/xema-cli/apps/xema-cli/assets/boot-graph.json, is refreshed by that CLI package’s own sync script and asserted by --check.",
|
|
3
3
|
"tiers": {
|
|
4
4
|
"base": 2,
|
|
5
5
|
"edge": 4,
|
|
@@ -26,10 +26,15 @@
|
|
|
26
26
|
"agent-session-api": {
|
|
27
27
|
"tier": "base",
|
|
28
28
|
"startupRequires": [
|
|
29
|
+
"authorization-api",
|
|
29
30
|
"biome-host-api",
|
|
31
|
+
"capability-registry-api",
|
|
32
|
+
"decision-api",
|
|
30
33
|
"identity-api",
|
|
31
34
|
"object-registry-api",
|
|
32
35
|
"org-database-pool-api",
|
|
36
|
+
"public-gateway-api",
|
|
37
|
+
"resource-governance-api",
|
|
33
38
|
"workload-runtime-api",
|
|
34
39
|
"xema-capability-router"
|
|
35
40
|
]
|
|
@@ -78,7 +83,8 @@
|
|
|
78
83
|
"authorization-api": {
|
|
79
84
|
"tier": "system",
|
|
80
85
|
"startupRequires": [
|
|
81
|
-
"identity-api"
|
|
86
|
+
"identity-api",
|
|
87
|
+
"resource-governance-api"
|
|
82
88
|
]
|
|
83
89
|
},
|
|
84
90
|
"backlog-api": {
|
|
@@ -88,7 +94,7 @@
|
|
|
88
94
|
]
|
|
89
95
|
},
|
|
90
96
|
"biome-fetcher-api": {
|
|
91
|
-
"tier": "
|
|
97
|
+
"tier": "base",
|
|
92
98
|
"startupRequires": []
|
|
93
99
|
},
|
|
94
100
|
"biome-host-api": {
|
|
@@ -120,7 +126,9 @@
|
|
|
120
126
|
"connector-gateway-api": {
|
|
121
127
|
"tier": "base",
|
|
122
128
|
"startupRequires": [
|
|
129
|
+
"authorization-api",
|
|
123
130
|
"capability-registry-api",
|
|
131
|
+
"decision-api",
|
|
124
132
|
"identity-api"
|
|
125
133
|
]
|
|
126
134
|
},
|
|
@@ -149,9 +157,8 @@
|
|
|
149
157
|
]
|
|
150
158
|
},
|
|
151
159
|
"decision-api": {
|
|
152
|
-
"tier": "
|
|
160
|
+
"tier": "system",
|
|
153
161
|
"startupRequires": [
|
|
154
|
-
"authorization-api",
|
|
155
162
|
"identity-api"
|
|
156
163
|
]
|
|
157
164
|
},
|
|
@@ -159,7 +166,8 @@
|
|
|
159
166
|
"tier": "base",
|
|
160
167
|
"startupRequires": [
|
|
161
168
|
"biome-host-api",
|
|
162
|
-
"identity-api"
|
|
169
|
+
"identity-api",
|
|
170
|
+
"resource-governance-api"
|
|
163
171
|
]
|
|
164
172
|
},
|
|
165
173
|
"design-system-builder-api": {
|
|
@@ -186,7 +194,8 @@
|
|
|
186
194
|
"tier": "base",
|
|
187
195
|
"startupRequires": [
|
|
188
196
|
"capability-registry-api",
|
|
189
|
-
"identity-api"
|
|
197
|
+
"identity-api",
|
|
198
|
+
"template-registry-api"
|
|
190
199
|
]
|
|
191
200
|
},
|
|
192
201
|
"fleet-control-api": {
|
|
@@ -200,7 +209,8 @@
|
|
|
200
209
|
"startupRequires": [
|
|
201
210
|
"authorization-api",
|
|
202
211
|
"capability-registry-api",
|
|
203
|
-
"identity-api"
|
|
212
|
+
"identity-api",
|
|
213
|
+
"public-gateway-api"
|
|
204
214
|
]
|
|
205
215
|
},
|
|
206
216
|
"license-api": {
|
|
@@ -215,6 +225,7 @@
|
|
|
215
225
|
"biome-host-api",
|
|
216
226
|
"identity-api",
|
|
217
227
|
"llm-gateway-api",
|
|
228
|
+
"resource-governance-api",
|
|
218
229
|
"xema-capability-router"
|
|
219
230
|
]
|
|
220
231
|
},
|
|
@@ -224,6 +235,7 @@
|
|
|
224
235
|
"artifact-store-api",
|
|
225
236
|
"authorization-api",
|
|
226
237
|
"capability-registry-api",
|
|
238
|
+
"connector-gateway-api",
|
|
227
239
|
"credential-broker-api",
|
|
228
240
|
"identity-api",
|
|
229
241
|
"workflow-engine-api",
|
|
@@ -291,6 +303,7 @@
|
|
|
291
303
|
"redis-pool-api": {
|
|
292
304
|
"tier": "system",
|
|
293
305
|
"startupRequires": [
|
|
306
|
+
"event-hub-api",
|
|
294
307
|
"identity-api"
|
|
295
308
|
]
|
|
296
309
|
},
|
|
@@ -303,6 +316,7 @@
|
|
|
303
316
|
"scm-connector-api": {
|
|
304
317
|
"tier": "platform",
|
|
305
318
|
"startupRequires": [
|
|
319
|
+
"capability-registry-api",
|
|
306
320
|
"connector-gateway-api",
|
|
307
321
|
"identity-api",
|
|
308
322
|
"llm-registry-api",
|
|
@@ -336,6 +350,7 @@
|
|
|
336
350
|
"template-registry-api": {
|
|
337
351
|
"tier": "system",
|
|
338
352
|
"startupRequires": [
|
|
353
|
+
"event-hub-api",
|
|
339
354
|
"identity-api"
|
|
340
355
|
]
|
|
341
356
|
},
|
|
@@ -367,7 +382,8 @@
|
|
|
367
382
|
"tier": "base",
|
|
368
383
|
"startupRequires": [
|
|
369
384
|
"biome-host-api",
|
|
370
|
-
"identity-api"
|
|
385
|
+
"identity-api",
|
|
386
|
+
"resource-governance-api"
|
|
371
387
|
]
|
|
372
388
|
},
|
|
373
389
|
"workflow-runtime-worker": {
|
|
@@ -399,6 +415,7 @@
|
|
|
399
415
|
"biome-host-api",
|
|
400
416
|
"identity-api",
|
|
401
417
|
"llm-gateway-api",
|
|
418
|
+
"resource-governance-api",
|
|
402
419
|
"workload-runtime-api",
|
|
403
420
|
"workspace-storage-pool-api",
|
|
404
421
|
"xema-capability-router"
|
|
@@ -433,7 +450,7 @@
|
|
|
433
450
|
"startupRequires": []
|
|
434
451
|
},
|
|
435
452
|
"xema-shell-api": {
|
|
436
|
-
"tier": "
|
|
453
|
+
"tier": "base",
|
|
437
454
|
"startupRequires": [
|
|
438
455
|
"identity-api"
|
|
439
456
|
]
|
|
@@ -442,7 +459,9 @@
|
|
|
442
459
|
"tier": "base",
|
|
443
460
|
"startupRequires": [
|
|
444
461
|
"authorization-api",
|
|
445
|
-
"
|
|
462
|
+
"decision-api",
|
|
463
|
+
"identity-api",
|
|
464
|
+
"resource-governance-api"
|
|
446
465
|
]
|
|
447
466
|
}
|
|
448
467
|
}
|