@xyo-network/os-runtime 3.0.4 → 3.0.6
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/neutral/index.d.ts +4 -2
- package/dist/neutral/index.mjs +3 -1
- package/dist/neutral/index.mjs.map +1 -1
- package/package.json +31 -29
- package/src/XyOs.ts +7 -3
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1554,7 +1554,9 @@ declare class XyOsContextBase<TParams extends XyOsContextParams | void = void> e
|
|
|
1554
1554
|
}
|
|
1555
1555
|
|
|
1556
1556
|
interface XyOsParams<TManifest extends PackageManifest = PackageManifest> extends XyOsContextParams<TManifest> {
|
|
1557
|
-
|
|
1557
|
+
dappsConfiguration?: DappRegistrationServiceParams;
|
|
1558
|
+
developmentMode?: boolean;
|
|
1559
|
+
kernel?: XyOsContext['kernel'];
|
|
1558
1560
|
}
|
|
1559
1561
|
declare class XyOs extends XyOsContextBase<XyOsParams> implements XyOsContext {
|
|
1560
1562
|
protected _exposedNode: NodeInstance | undefined;
|
|
@@ -1563,7 +1565,7 @@ declare class XyOs extends XyOsContextBase<XyOsParams> implements XyOsContext {
|
|
|
1563
1565
|
protected _locator: ModuleFactoryLocator;
|
|
1564
1566
|
protected dappRegistrationService: DappRegistrationService;
|
|
1565
1567
|
private stackManager;
|
|
1566
|
-
constructor({ eventBus, kernel, locator, ...params }
|
|
1568
|
+
constructor({ eventBus, kernel, locator, dappsConfiguration, developmentMode, ...params }?: XyOsParams);
|
|
1567
1569
|
static get monitoring(): XyOsMonitor | undefined;
|
|
1568
1570
|
static get xyOsGlobal(): XyOsGlobal;
|
|
1569
1571
|
get bios(): KernelExternal['bios'] | undefined;
|
package/dist/neutral/index.mjs
CHANGED
|
@@ -1945,8 +1945,10 @@ var XyOs = class _XyOs extends XyOsContextBase {
|
|
|
1945
1945
|
eventBus = new EventBus(),
|
|
1946
1946
|
kernel = new Kernel(),
|
|
1947
1947
|
locator = new ModuleFactoryLocator5(),
|
|
1948
|
+
dappsConfiguration,
|
|
1949
|
+
developmentMode,
|
|
1948
1950
|
...params
|
|
1949
|
-
}
|
|
1951
|
+
} = {}) {
|
|
1950
1952
|
super({
|
|
1951
1953
|
eventBus,
|
|
1952
1954
|
kernel,
|