@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/.turbo/turbo-build.log +8 -8
- package/CHANGELOG.md +11 -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/dist/index.d.cts
CHANGED
|
@@ -32,15 +32,6 @@ interface ServiceRegistration {
|
|
|
32
32
|
lifecycle: ServiceLifecycle;
|
|
33
33
|
dependencies?: string[];
|
|
34
34
|
}
|
|
35
|
-
/**
|
|
36
|
-
* Plugin Configuration Validator Interface
|
|
37
|
-
* Uses Zod for runtime validation of plugin configurations
|
|
38
|
-
* @deprecated Use the PluginConfigValidator class from security module instead
|
|
39
|
-
*/
|
|
40
|
-
interface IPluginConfigValidator {
|
|
41
|
-
schema: z.ZodSchema;
|
|
42
|
-
validate(config: any): any;
|
|
43
|
-
}
|
|
44
35
|
/**
|
|
45
36
|
* Plugin Metadata with Enhanced Features
|
|
46
37
|
*/
|
|
@@ -1795,4 +1786,4 @@ declare class DependencyResolver {
|
|
|
1795
1786
|
isAcyclic(dependencies: Map<string, string[]>): boolean;
|
|
1796
1787
|
}
|
|
1797
1788
|
|
|
1798
|
-
export { ApiRegistry, type ApiRegistryPluginConfig, DependencyResolver, HotReloadManager, type
|
|
1789
|
+
export { ApiRegistry, type ApiRegistryPluginConfig, DependencyResolver, HotReloadManager, type KernelState, LiteKernel, ObjectKernel, ObjectKernelBase, type ObjectKernelConfig, ObjectLogger, type PermissionCheckResult$1 as PermissionCheckResult, type PermissionGrant, type Plugin, PluginConfigValidator, type PluginContext, PluginHealthMonitor, type PluginHealthStatus, type PluginLoadResult, PluginLoader, type PluginMetadata, type PermissionCheckResult as PluginPermissionCheckResult, PluginPermissionEnforcer, PluginPermissionManager, type PluginPermissions, PluginSandboxRuntime, PluginSecurityScanner, type PluginSignatureConfig, PluginSignatureVerifier, type PluginStartupResult, index as QA, type ResourceUsage, type SandboxContext, type ScanTarget, SecurePluginContext, type SecurityIssue, SemanticVersionManager, type ServiceFactory, ServiceLifecycle, type ServiceRegistration, type SignatureVerificationResult, type VersionCompatibility, createApiRegistryPlugin, createLogger, createPluginConfigValidator, createPluginPermissionEnforcer, getEnv, getMemoryUsage, isNode, safeExit };
|
package/dist/index.d.ts
CHANGED
|
@@ -32,15 +32,6 @@ interface ServiceRegistration {
|
|
|
32
32
|
lifecycle: ServiceLifecycle;
|
|
33
33
|
dependencies?: string[];
|
|
34
34
|
}
|
|
35
|
-
/**
|
|
36
|
-
* Plugin Configuration Validator Interface
|
|
37
|
-
* Uses Zod for runtime validation of plugin configurations
|
|
38
|
-
* @deprecated Use the PluginConfigValidator class from security module instead
|
|
39
|
-
*/
|
|
40
|
-
interface IPluginConfigValidator {
|
|
41
|
-
schema: z.ZodSchema;
|
|
42
|
-
validate(config: any): any;
|
|
43
|
-
}
|
|
44
35
|
/**
|
|
45
36
|
* Plugin Metadata with Enhanced Features
|
|
46
37
|
*/
|
|
@@ -1795,4 +1786,4 @@ declare class DependencyResolver {
|
|
|
1795
1786
|
isAcyclic(dependencies: Map<string, string[]>): boolean;
|
|
1796
1787
|
}
|
|
1797
1788
|
|
|
1798
|
-
export { ApiRegistry, type ApiRegistryPluginConfig, DependencyResolver, HotReloadManager, type
|
|
1789
|
+
export { ApiRegistry, type ApiRegistryPluginConfig, DependencyResolver, HotReloadManager, type KernelState, LiteKernel, ObjectKernel, ObjectKernelBase, type ObjectKernelConfig, ObjectLogger, type PermissionCheckResult$1 as PermissionCheckResult, type PermissionGrant, type Plugin, PluginConfigValidator, type PluginContext, PluginHealthMonitor, type PluginHealthStatus, type PluginLoadResult, PluginLoader, type PluginMetadata, type PermissionCheckResult as PluginPermissionCheckResult, PluginPermissionEnforcer, PluginPermissionManager, type PluginPermissions, PluginSandboxRuntime, PluginSecurityScanner, type PluginSignatureConfig, PluginSignatureVerifier, type PluginStartupResult, index as QA, type ResourceUsage, type SandboxContext, type ScanTarget, SecurePluginContext, type SecurityIssue, SemanticVersionManager, type ServiceFactory, ServiceLifecycle, type ServiceRegistration, type SignatureVerificationResult, type VersionCompatibility, createApiRegistryPlugin, createLogger, createPluginConfigValidator, createPluginPermissionEnforcer, getEnv, getMemoryUsage, isNode, safeExit };
|