@xyo-network/os-runtime 5.0.12 → 5.0.13
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.mjs +8 -8
- package/dist/neutral/index.mjs.map +1 -1
- package/dist/node/index.mjs +8 -8
- package/dist/node/index.mjs.map +1 -1
- package/dist/node/scripts/xyos/index.mjs +8 -8
- package/dist/node/scripts/xyos/index.mjs.map +1 -1
- package/dist/types/XyOsBase.d.ts +2 -2
- package/dist/types/XyOsBase.d.ts.map +1 -1
- package/dist/types/adapter/Base.d.ts +2 -2
- package/dist/types/adapter/Base.d.ts.map +1 -1
- package/dist/types/event/bus/Connection.d.ts +2 -2
- package/dist/types/event/bus/Connection.d.ts.map +1 -1
- package/dist/types/stack/Base.d.ts +2 -2
- package/dist/types/stack/Base.d.ts.map +1 -1
- package/package.json +50 -52
- package/src/XyOsBase.ts +2 -2
- package/src/adapter/Base.ts +2 -2
- package/src/event/bus/Connection.ts +2 -2
- package/src/stack/Base.ts +2 -2
|
@@ -50,8 +50,8 @@ import { ModuleFactoryLocator as ModuleFactoryLocator6 } from "@xyo-network/modu
|
|
|
50
50
|
|
|
51
51
|
// src/event/bus/Connection.ts
|
|
52
52
|
import { assertEx } from "@xylabs/assert";
|
|
53
|
-
import {
|
|
54
|
-
var EventBusConnection = class extends
|
|
53
|
+
import { BaseEmitter } from "@xylabs/events";
|
|
54
|
+
var EventBusConnection = class extends BaseEmitter {
|
|
55
55
|
static {
|
|
56
56
|
__name(this, "EventBusConnection");
|
|
57
57
|
}
|
|
@@ -943,10 +943,10 @@ var dapp_window_manifest_default = {
|
|
|
943
943
|
|
|
944
944
|
// src/XyOsBase.ts
|
|
945
945
|
import { assertEx as assertEx5 } from "@xylabs/assert";
|
|
946
|
-
import {
|
|
946
|
+
import { BaseEmitter as BaseEmitter2 } from "@xylabs/events";
|
|
947
947
|
import { ModuleFactoryLocator as ModuleFactoryLocator2 } from "@xyo-network/module-factory-locator";
|
|
948
948
|
import { Mutex as Mutex2 } from "async-mutex";
|
|
949
|
-
var XyOsContextBase = class extends
|
|
949
|
+
var XyOsContextBase = class extends BaseEmitter2 {
|
|
950
950
|
static {
|
|
951
951
|
__name(this, "XyOsContextBase");
|
|
952
952
|
}
|
|
@@ -1488,11 +1488,11 @@ var Signers = class {
|
|
|
1488
1488
|
|
|
1489
1489
|
// src/stack/Base.ts
|
|
1490
1490
|
import { assertEx as assertEx8 } from "@xylabs/assert";
|
|
1491
|
+
import { BaseEmitter as BaseEmitter3 } from "@xylabs/events";
|
|
1491
1492
|
import { forget as forget3 } from "@xylabs/forget";
|
|
1492
|
-
import { ModuleBaseEmitter as ModuleBaseEmitter3 } from "@xyo-network/module-event-emitter";
|
|
1493
1493
|
import { isModuleInstance } from "@xyo-network/module-model";
|
|
1494
1494
|
import { asAttachableNodeInstance } from "@xyo-network/node-model";
|
|
1495
|
-
var StackBase = class extends
|
|
1495
|
+
var StackBase = class extends BaseEmitter3 {
|
|
1496
1496
|
static {
|
|
1497
1497
|
__name(this, "StackBase");
|
|
1498
1498
|
}
|
|
@@ -1652,12 +1652,12 @@ import { ExposedNodeOuterNodeName, PubSubBridgeNodeNodeName } from "@xyo-network
|
|
|
1652
1652
|
|
|
1653
1653
|
// src/adapter/Base.ts
|
|
1654
1654
|
import { assertEx as assertEx9 } from "@xylabs/assert";
|
|
1655
|
+
import { BaseEmitter as BaseEmitter4 } from "@xylabs/events";
|
|
1655
1656
|
import { forget as forget4 } from "@xylabs/forget";
|
|
1656
1657
|
import { asArchivistInstance as asArchivistInstance4 } from "@xyo-network/archivist";
|
|
1657
|
-
import { ModuleBaseEmitter as ModuleBaseEmitter4 } from "@xyo-network/module-event-emitter";
|
|
1658
1658
|
import { asAttachableNodeInstance as asAttachableNodeInstance2 } from "@xyo-network/node-model";
|
|
1659
1659
|
import { v4 as uuid3 } from "uuid";
|
|
1660
|
-
var NodeAdapterBase = class extends
|
|
1660
|
+
var NodeAdapterBase = class extends BaseEmitter4 {
|
|
1661
1661
|
static {
|
|
1662
1662
|
__name(this, "NodeAdapterBase");
|
|
1663
1663
|
}
|