@objectstack/types 0.9.1 → 1.0.0
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 +21 -0
- package/README.md +8 -0
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @objectstack/types
|
|
2
2
|
|
|
3
|
+
## 1.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- Major version release for ObjectStack Protocol v1.0.
|
|
8
|
+
- Stabilized Protocol Definitions
|
|
9
|
+
- Enhanced Runtime Plugin Support
|
|
10
|
+
- Fixed Type Compliance across Monorepo
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @objectstack/spec@1.0.0
|
|
16
|
+
|
|
17
|
+
## 0.9.2
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- @objectstack/spec@0.9.2
|
|
23
|
+
|
|
3
24
|
## 0.9.1
|
|
4
25
|
|
|
5
26
|
### 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,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectstack/types",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"license": "Apache-2.0",
|
|
4
5
|
"description": "Shared interfaces describing the ObjectStack Runtime environment",
|
|
5
6
|
"main": "dist/index.js",
|
|
6
7
|
"types": "dist/index.d.ts",
|
|
7
8
|
"dependencies": {
|
|
8
|
-
"@objectstack/spec": "0.
|
|
9
|
+
"@objectstack/spec": "1.0.0"
|
|
9
10
|
},
|
|
10
11
|
"devDependencies": {
|
|
11
12
|
"typescript": "^5.0.0"
|