@astrale-os/sdk 0.5.0-beta.44 → 0.5.0-beta.45
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.
|
@@ -11,6 +11,8 @@ export type { AuthorityOperation, AuthorityRelation, Kernel } from '@astrale-os/
|
|
|
11
11
|
/**
|
|
12
12
|
* Re-admit the Kernel Schema into the SDK's DSL instance. Package-manager trees may retain a
|
|
13
13
|
* different DSL instance below Kernel Core; acceptance context is intentionally process-local.
|
|
14
|
+
* The SDK-owned interface also gives downstream declaration emit a portable public type name.
|
|
14
15
|
*/
|
|
15
|
-
export
|
|
16
|
-
|
|
16
|
+
export interface KernelSchema extends CoreKernelSchema {
|
|
17
|
+
}
|
|
18
|
+
export declare const KernelSchema: KernelSchema;
|
|
@@ -5,8 +5,4 @@ export * from '@astrale-os/kernel-dsl/v1';
|
|
|
5
5
|
export { patterns } from '@astrale-os/kernel-dsl/v1/addressing';
|
|
6
6
|
/** Kernel-owned Schema values used by authored product Schemas and graph operations. */
|
|
7
7
|
export { AuthorityOperationOrder, AuthorityOperations, AuthorityRelations, K, KernelRootFunctions, OperationCore, operationOf, } from '@astrale-os/kernel-core/schema';
|
|
8
|
-
/**
|
|
9
|
-
* Re-admit the Kernel Schema into the SDK's DSL instance. Package-manager trees may retain a
|
|
10
|
-
* different DSL instance below Kernel Core; acceptance context is intentionally process-local.
|
|
11
|
-
*/
|
|
12
8
|
export const KernelSchema = language.accept(CoreKernelSchema);
|