@almadar/runtime 1.0.1 → 1.0.12
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/dist/{OrbitalServerRuntime-W9FnSt1J.d.ts → OrbitalServerRuntime-Bp1YgmI1.d.ts} +11 -1
- package/dist/OrbitalServerRuntime.d.ts +1 -1
- package/dist/OrbitalServerRuntime.js +264 -2300
- package/dist/OrbitalServerRuntime.js.map +1 -1
- package/dist/chunk-VW6RWQA5.js +1870 -0
- package/dist/chunk-VW6RWQA5.js.map +1 -0
- package/dist/external-loader-FJVQACFN.js +319 -0
- package/dist/external-loader-FJVQACFN.js.map +1 -0
- package/dist/index.d.ts +3 -1
- package/dist/index.js +1 -1554
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
|
@@ -595,7 +595,13 @@ declare class OrbitalServerRuntime {
|
|
|
595
595
|
*
|
|
596
596
|
* For explicit preprocessing control, use `registerWithPreprocess()`.
|
|
597
597
|
*/
|
|
598
|
-
register(schema: RuntimeOrbitalSchema): void
|
|
598
|
+
register(schema: RuntimeOrbitalSchema): Promise<void>;
|
|
599
|
+
/**
|
|
600
|
+
* Register an OrbitalSchema synchronously (for backward compatibility).
|
|
601
|
+
* Note: This version doesn't wait for instance seeding to complete.
|
|
602
|
+
* Use async register() for guaranteed instance seeding.
|
|
603
|
+
*/
|
|
604
|
+
registerSync(schema: RuntimeOrbitalSchema): void;
|
|
599
605
|
/**
|
|
600
606
|
* Register an OrbitalSchema with preprocessing to resolve `uses` imports.
|
|
601
607
|
*
|
|
@@ -651,6 +657,10 @@ declare class OrbitalServerRuntime {
|
|
|
651
657
|
/**
|
|
652
658
|
* Register a single orbital
|
|
653
659
|
*/
|
|
660
|
+
private registerOrbitalAsync;
|
|
661
|
+
/**
|
|
662
|
+
* Register a single orbital (sync wrapper for backward compatibility)
|
|
663
|
+
*/
|
|
654
664
|
private registerOrbital;
|
|
655
665
|
/**
|
|
656
666
|
* Set up event listeners for cross-orbital communication
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import 'express';
|
|
2
|
-
export { n as EffectResult, L as LoaderConfig, O as OrbitalEventRequest, c as OrbitalEventResponse, o as OrbitalServerRuntime, d as OrbitalServerRuntimeConfig, P as PersistenceAdapter, R as RuntimeOrbital, h as RuntimeOrbitalSchema, i as RuntimeTrait, q as RuntimeTraitTick, r as createOrbitalServerRuntime } from './OrbitalServerRuntime-
|
|
2
|
+
export { n as EffectResult, L as LoaderConfig, O as OrbitalEventRequest, c as OrbitalEventResponse, o as OrbitalServerRuntime, d as OrbitalServerRuntimeConfig, P as PersistenceAdapter, R as RuntimeOrbital, h as RuntimeOrbitalSchema, i as RuntimeTrait, q as RuntimeTraitTick, r as createOrbitalServerRuntime } from './OrbitalServerRuntime-Bp1YgmI1.js';
|
|
3
3
|
import './types-LiBPiu-u.js';
|
|
4
4
|
import '@almadar/core';
|