-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.ts
More file actions
43 lines (42 loc) · 1.87 KB
/
Copy pathindex.ts
File metadata and controls
43 lines (42 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright (c) 2025 ObjectStack. Licensed under the Apache-2.0 license.
export * from './cli-extension.zod';
export * from './cluster.zod';
export * from './context.zod';
export * from './dependency-resolution.zod';
export * from './dev-plugin.zod';
export * from './events.zod';
// feature.zod (FeatureFlagSchema / FeatureStrategy / FeatureFlag factory) was
// REMOVED per ADR-0056 D8: zero runtime consumers, and its only protocol home —
// the static ObjectStackCapabilities.system.features descriptor — was itself
// removed as dead (#3605). Live toggles are the `feature_flags` settings
// manifest (ADR-0007, env-overridable via OS_FEATURE_FLAGS_*) and the
// PUBLIC_AUTH_FEATURES registry (public-auth-features.ts) for auth gates.
export * from './manifest.zod';
export * from './metadata-customization.zod';
export * from './namespace-prefix';
export * from './platform-capabilities';
export * from './metadata-loader.zod';
export * from './metadata-plugin.zod';
export * from './metadata-protection.zod';
export * from './metadata-type-schemas';
export * from './package-artifact.zod';
export * from './package-registry.zod';
export * from './package-upgrade.zod';
export * from './plugin-capability.zod';
export * from './plugin-lifecycle-advanced.zod';
export * from './plugin-lifecycle-events.zod';
export * from './plugin-loading.zod';
export * from './plugin-runtime.zod';
export * from './plugin-security-advanced.zod';
export * from './plugin-structure.zod';
export * from './plugin-validator.zod';
export * from './plugin-versioning.zod';
export * from './protocol-version';
export * from './plugin.zod';
export * from './public-auth-features';
export * from './service-registry.zod';
export * from './startup-orchestrator.zod';
export * from './plugin-registry.zod';
export * from './plugin-security.zod';
export * from './execution-context.zod';
export * from './metadata-create-seeds';