@objectstack/core 2.0.7 → 3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectstack/core",
3
- "version": "2.0.7",
3
+ "version": "3.0.0",
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": "2.0.7"
25
+ "@objectstack/spec": "3.0.0"
26
26
  },
27
27
  "peerDependencies": {
28
28
  "pino": "^8.0.0"
@@ -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
  */