@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 CHANGED
@@ -1,5 +1,14 @@
1
1
  # @objectstack/runtime
2
2
 
3
+ ## 0.9.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @objectstack/spec@0.9.2
9
+ - @objectstack/core@0.9.2
10
+ - @objectstack/types@0.9.2
11
+
3
12
  ## 0.9.1
4
13
 
5
14
  ### Patch Changes
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.1",
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.1",
10
- "@objectstack/types": "0.9.1",
11
- "@objectstack/spec": "0.9.1"
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"