@objectstack/types 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,12 @@
1
1
  # @objectstack/types
2
2
 
3
+ ## 0.9.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @objectstack/spec@0.9.2
9
+
3
10
  ## 0.9.1
4
11
 
5
12
  ### Patch Changes
package/README.md CHANGED
@@ -15,6 +15,14 @@ The `@objectstack/types` package exists to:
15
15
  3. **Enable Type Safety** - Ensures type compatibility across the ObjectStack ecosystem
16
16
  4. **Minimal Footprint** - Ultra-lightweight with minimal dependencies
17
17
 
18
+ ## 🤖 AI Development Context
19
+
20
+ **Role**: Shared Type Definitions
21
+ **Usage**:
22
+ - Use this to import interfaces like `IKernel`, `RuntimePlugin`.
23
+ - Helps avoid circular dependencies.
24
+ - **Do not** add implementation code here, only types.
25
+
18
26
  ## Installation
19
27
 
20
28
  ```bash
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@objectstack/types",
3
- "version": "0.9.1",
3
+ "version": "0.9.2",
4
4
  "description": "Shared interfaces describing the ObjectStack Runtime environment",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "dependencies": {
8
- "@objectstack/spec": "0.9.1"
8
+ "@objectstack/spec": "0.9.2"
9
9
  },
10
10
  "devDependencies": {
11
11
  "typescript": "^5.0.0"