@objectstack/types 0.3.3 → 0.4.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,32 @@
1
1
  # @objectstack/types
2
2
 
3
+ ## 0.4.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Unify all package versions to 0.4.2
8
+ - Updated dependencies
9
+ - @objectstack/spec@0.4.2
10
+
11
+ ## 0.4.1
12
+
13
+ ### Patch Changes
14
+
15
+ - Version synchronization and dependency updates
16
+
17
+ - Synchronized plugin-msw version to 0.4.1
18
+ - Updated runtime peer dependency versions to ^0.4.1
19
+ - Fixed internal dependency version mismatches
20
+
21
+ - Updated dependencies
22
+ - @objectstack/spec@0.4.1
23
+
24
+ ## 0.4.0
25
+
26
+ ### Minor Changes
27
+
28
+ - Release version 0.4.0
29
+
3
30
  ## 0.3.3
4
31
 
5
32
  ### Patch Changes
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@objectstack/types",
3
- "version": "0.3.3",
3
+ "version": "0.4.2",
4
4
  "description": "Shared interfaces describing the ObjectStack Runtime environment",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
7
7
  "dependencies": {
8
- "@objectstack/spec": "0.3.3"
8
+ "@objectstack/spec": "0.4.2"
9
9
  },
10
10
  "devDependencies": {
11
11
  "typescript": "^5.0.0"
package/src/index.ts CHANGED
@@ -3,6 +3,7 @@
3
3
  export interface IKernel {
4
4
  // We can add specific methods here that plugins are allowed to call
5
5
  // forcing a stricter contract than exposing the whole class.
6
+ ql?: any; // ObjectQL instance (optional to support initialization phase)
6
7
  start(): Promise<void>;
7
8
  // ... expose other needed public methods
8
9
  [key: string]: any;