@objectstack/core 2.0.7 → 3.0.1
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 +9 -9
- package/CHANGELOG.md +18 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -10
- package/dist/index.d.ts +1 -10
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/plugin-loader.ts +0 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectstack/core",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"description": "Microkernel Core for ObjectStack",
|
|
6
6
|
"type": "module",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"pino": "^10.3.0",
|
|
23
23
|
"pino-pretty": "^13.1.3",
|
|
24
24
|
"zod": "^4.3.6",
|
|
25
|
-
"@objectstack/spec": "
|
|
25
|
+
"@objectstack/spec": "3.0.1"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"pino": "^8.0.0"
|
package/src/plugin-loader.ts
CHANGED
|
@@ -34,16 +34,6 @@ export interface ServiceRegistration {
|
|
|
34
34
|
dependencies?: string[];
|
|
35
35
|
}
|
|
36
36
|
|
|
37
|
-
/**
|
|
38
|
-
* Plugin Configuration Validator Interface
|
|
39
|
-
* Uses Zod for runtime validation of plugin configurations
|
|
40
|
-
* @deprecated Use the PluginConfigValidator class from security module instead
|
|
41
|
-
*/
|
|
42
|
-
export interface IPluginConfigValidator {
|
|
43
|
-
schema: z.ZodSchema;
|
|
44
|
-
validate(config: any): any;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
37
|
/**
|
|
48
38
|
* Plugin Metadata with Enhanced Features
|
|
49
39
|
*/
|