@x12i/memorix-service 3.0.2 → 3.0.3
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/README.md +6 -2
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Remote apps should **call** this service over HTTP — not reinvent wiring by in
|
|
|
7
7
|
## Install / run
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npm install @x12i/memorix-service@3.0.
|
|
10
|
+
npm install @x12i/memorix-service@3.0.3 # composition library / CLI
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
Prefer the monorepo stack (service + Studio + ops-source):
|
|
@@ -26,8 +26,12 @@ MEMORIX_SERVICE_MODE=dev npm run dev # metadata in-memory; durable routes 503
|
|
|
26
26
|
|
|
27
27
|
| | |
|
|
28
28
|
|--|--|
|
|
29
|
-
| Default port | **5100** (`MEMORIX_SERVICE_PORT`) |
|
|
29
|
+
| Default port | **5100** (`MEMORIX_SERVICE_PORT`, zone `memorix`) |
|
|
30
30
|
| OpenAPI | `GET /api/openapi.json` |
|
|
31
|
+
| Live view | `GET /_live` (`@x12i/core-service` → `@x12i/api-live-view`) |
|
|
32
|
+
| Health | `GET /health` |
|
|
33
|
+
|
|
34
|
+
Compliance: this process uses **`@x12i/core-service`** (zone port, health, live view, correlation-id).
|
|
31
35
|
|
|
32
36
|
## Library exports
|
|
33
37
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@x12i/memorix-service",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.3",
|
|
4
4
|
"description": "Memorix production service composition root — one versioned API over accepted packages (Phase 10 / G10).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -33,18 +33,18 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@fastify/cors": "^10.0.1",
|
|
35
35
|
"@x12i/core-service": "^1.0.0",
|
|
36
|
-
"@x12i/memorix-data": "^3.0.
|
|
36
|
+
"@x12i/memorix-data": "^3.0.2",
|
|
37
37
|
"@x12i/api-live-view": "^1.0.2",
|
|
38
|
-
"@x12i/memorix-data-journey": "^3.0.
|
|
39
|
-
"@x12i/memorix-format": "^3.0.
|
|
40
|
-
"@x12i/memorix-intelligence": "^3.0.
|
|
41
|
-
"@x12i/memorix-mapping": "^3.0.
|
|
42
|
-
"@x12i/memorix-memory": "^3.0.
|
|
43
|
-
"@x12i/memorix-metadata": "^3.0.
|
|
44
|
-
"@x12i/memorix-metadata-runtime": "^3.0.
|
|
45
|
-
"@x12i/memorix-pipeline": "^3.0.
|
|
46
|
-
"@x12i/memorix-relationship-store": "^3.0.
|
|
47
|
-
"@x12i/memorix-relationships": "^3.0.
|
|
38
|
+
"@x12i/memorix-data-journey": "^3.0.2",
|
|
39
|
+
"@x12i/memorix-format": "^3.0.2",
|
|
40
|
+
"@x12i/memorix-intelligence": "^3.0.2",
|
|
41
|
+
"@x12i/memorix-mapping": "^3.0.2",
|
|
42
|
+
"@x12i/memorix-memory": "^3.0.2",
|
|
43
|
+
"@x12i/memorix-metadata": "^3.0.2",
|
|
44
|
+
"@x12i/memorix-metadata-runtime": "^3.0.2",
|
|
45
|
+
"@x12i/memorix-pipeline": "^3.0.2",
|
|
46
|
+
"@x12i/memorix-relationship-store": "^3.0.2",
|
|
47
|
+
"@x12i/memorix-relationships": "^3.0.2",
|
|
48
48
|
"fastify": "^5.1.0",
|
|
49
49
|
"mongodb": "^6.21.0"
|
|
50
50
|
},
|