@objectstack/types 0.4.1 → 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 +8 -0
- package/package.json +2 -2
- package/src/index.ts +1 -0
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectstack/types",
|
|
3
|
-
"version": "0.4.
|
|
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.4.
|
|
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;
|