@objectstack/metadata 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/metadata
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,13 @@ The `@objectstack/metadata` package provides a unified interface for managing me
12
12
  - **Caching** - ETag-based caching for performance optimization
13
13
  - **File Watching** - Development mode with automatic reload on file changes
14
14
 
15
+ ## 🤖 AI Development Context
16
+
17
+ **Role**: Metadata IO & Persistence
18
+ **Usage**:
19
+ - Use `MetadataManager` to read/write `.object.ts`, `.view.yaml` files.
20
+ - Handles format loading (TS, JSON, YAML).
21
+
15
22
  ## Installation
16
23
 
17
24
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectstack/metadata",
3
- "version": "0.9.1",
3
+ "version": "0.9.2",
4
4
  "description": "Metadata loading, saving, and persistence for ObjectStack",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -16,9 +16,9 @@
16
16
  "js-yaml": "^4.1.0",
17
17
  "chokidar": "^3.5.3",
18
18
  "zod": "^4.3.6",
19
- "@objectstack/core": "0.9.1",
20
- "@objectstack/spec": "0.9.1",
21
- "@objectstack/types": "0.9.1"
19
+ "@objectstack/core": "0.9.2",
20
+ "@objectstack/spec": "0.9.2",
21
+ "@objectstack/types": "0.9.2"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@types/js-yaml": "^4.0.9",