@objectstack/runtime 0.9.1 → 0.9.2
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/CHANGELOG.md +9 -0
- package/README.md +10 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -12,6 +12,16 @@ The runtime package provides the **Standard Library** for the ObjectStack Operat
|
|
|
12
12
|
- **Core Integration**: Re-exports `ObjectKernel` for convenience
|
|
13
13
|
- **Capability Contracts**: Abstract interfaces for HTTP server and data persistence
|
|
14
14
|
|
|
15
|
+
## 🤖 AI Development Context
|
|
16
|
+
|
|
17
|
+
**Role**: Server Runtime & REST API
|
|
18
|
+
**Usage**:
|
|
19
|
+
- Use `RestServer` to spawn HTTP endpoints.
|
|
20
|
+
- Configures the HTTP layer.
|
|
21
|
+
|
|
22
|
+
**Key Concepts**:
|
|
23
|
+
- `RestServer`: Generates `/api/*` endpoints from ObjectQL schemas.
|
|
24
|
+
|
|
15
25
|
## Installation
|
|
16
26
|
|
|
17
27
|
```bash
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectstack/runtime",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.2",
|
|
4
4
|
"description": "ObjectStack Core Runtime & Query Engine",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@objectstack/core": "0.9.
|
|
10
|
-
"@objectstack/
|
|
11
|
-
"@objectstack/
|
|
9
|
+
"@objectstack/core": "0.9.2",
|
|
10
|
+
"@objectstack/spec": "0.9.2",
|
|
11
|
+
"@objectstack/types": "0.9.2"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
14
|
"typescript": "^5.0.0"
|