@objectstack/core 1.0.6 → 1.0.7
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/.turbo/turbo-build.log +10 -10
- package/CHANGELOG.md +6 -0
- package/dist/index.cjs +1 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/api-registry-plugin.ts +1 -0
- package/src/types.ts +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectstack/core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.7",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Microkernel Core for ObjectStack",
|
|
6
6
|
"type": "module",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"pino": "^10.3.0",
|
|
16
16
|
"pino-pretty": "^13.1.3",
|
|
17
17
|
"zod": "^4.3.6",
|
|
18
|
-
"@objectstack/spec": "1.0.
|
|
18
|
+
"@objectstack/spec": "1.0.7"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
21
|
"pino": "^8.0.0"
|
package/src/types.ts
CHANGED
|
@@ -73,6 +73,12 @@ export interface Plugin {
|
|
|
73
73
|
*/
|
|
74
74
|
version?: string;
|
|
75
75
|
|
|
76
|
+
/**
|
|
77
|
+
* Plugin type (standard, ui, driver, server, app, theme, agent)
|
|
78
|
+
* @default 'standard'
|
|
79
|
+
*/
|
|
80
|
+
type?: string;
|
|
81
|
+
|
|
76
82
|
/**
|
|
77
83
|
* List of other plugin names that this plugin depends on.
|
|
78
84
|
* The kernel ensures these plugins are initialized before this one.
|