@xyo-network/kernel-model 6.0.4 → 6.0.5
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/browser/index.d.ts +81 -0
- package/dist/neutral/driver/NodeDriver.d.ts +12 -0
- package/dist/neutral/driver/NodeDriver.d.ts.map +1 -0
- package/dist/neutral/driver/index.d.ts +2 -0
- package/dist/neutral/driver/index.d.ts.map +1 -0
- package/dist/neutral/index.d.ts +81 -0
- package/dist/neutral/index.d.ts.map +1 -0
- package/dist/neutral/kernel/KernelExternal.d.ts +51 -0
- package/dist/neutral/kernel/KernelExternal.d.ts.map +1 -0
- package/dist/neutral/kernel/index.d.ts +2 -0
- package/dist/neutral/kernel/index.d.ts.map +1 -0
- package/dist/neutral/manifest/ManifestReplacementDictionary.d.ts +5 -0
- package/dist/neutral/manifest/ManifestReplacementDictionary.d.ts.map +1 -0
- package/dist/neutral/manifest/index.d.ts +2 -0
- package/dist/neutral/manifest/index.d.ts.map +1 -0
- package/dist/neutral/networks/Payload.d.ts +10 -0
- package/dist/neutral/networks/Payload.d.ts.map +1 -0
- package/dist/neutral/networks/Remote.d.ts +4 -0
- package/dist/neutral/networks/Remote.d.ts.map +1 -0
- package/dist/neutral/networks/index.d.ts +3 -0
- package/dist/neutral/networks/index.d.ts.map +1 -0
- package/package.json +11 -11
- package/dist/types/index.d.ts +0 -5
- /package/dist/{types → browser}/driver/NodeDriver.d.ts +0 -0
- /package/dist/{types → browser}/driver/NodeDriver.d.ts.map +0 -0
- /package/dist/{types → browser}/driver/index.d.ts +0 -0
- /package/dist/{types → browser}/driver/index.d.ts.map +0 -0
- /package/dist/{types → browser}/index.d.ts.map +0 -0
- /package/dist/{types → browser}/kernel/KernelExternal.d.ts +0 -0
- /package/dist/{types → browser}/kernel/KernelExternal.d.ts.map +0 -0
- /package/dist/{types → browser}/kernel/index.d.ts +0 -0
- /package/dist/{types → browser}/kernel/index.d.ts.map +0 -0
- /package/dist/{types → browser}/manifest/ManifestReplacementDictionary.d.ts +0 -0
- /package/dist/{types → browser}/manifest/ManifestReplacementDictionary.d.ts.map +0 -0
- /package/dist/{types → browser}/manifest/index.d.ts +0 -0
- /package/dist/{types → browser}/manifest/index.d.ts.map +0 -0
- /package/dist/{types → browser}/networks/Payload.d.ts +0 -0
- /package/dist/{types → browser}/networks/Payload.d.ts.map +0 -0
- /package/dist/{types → browser}/networks/Remote.d.ts +0 -0
- /package/dist/{types → browser}/networks/Remote.d.ts.map +0 -0
- /package/dist/{types → browser}/networks/index.d.ts +0 -0
- /package/dist/{types → browser}/networks/index.d.ts.map +0 -0
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { PackageManifestPayload } from '@xyo-network/manifest-model';
|
|
2
|
+
import { ModuleFactoryLocatorInstance } from '@xyo-network/module-model';
|
|
3
|
+
import { AttachableNodeInstance, NodeInstance } from '@xyo-network/node-model';
|
|
4
|
+
import { WalletInstance } from '@xyo-network/wallet-model';
|
|
5
|
+
import { BiosExternalInterface } from '@xyo-network/bios-model';
|
|
6
|
+
import { Payload } from '@xyo-network/payload-model';
|
|
7
|
+
|
|
8
|
+
interface NodeDriver {
|
|
9
|
+
locator: ModuleFactoryLocatorInstance;
|
|
10
|
+
manifest: PackageManifestPayload;
|
|
11
|
+
name: string;
|
|
12
|
+
walletPath: string | undefined;
|
|
13
|
+
initialize(wallet: WalletInstance): Promise<AttachableNodeInstance>;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
type KernelStatus = 'created' | 'booting' | 'booted' | 'errored';
|
|
17
|
+
type NativeKernelDrivers = 'pubsub' | 'xyo-public-bridge' | 'exposed' | 'os-settings' | 'http-host';
|
|
18
|
+
declare const DefaultKernelDrivers: NativeKernelDrivers[];
|
|
19
|
+
type DriverFactory = (params?: KernelBootParams) => NodeDriver;
|
|
20
|
+
interface KernelNetworkParams {
|
|
21
|
+
mainNetwork?: string;
|
|
22
|
+
mainNetworkUrl?: string;
|
|
23
|
+
xnsNetwork?: string;
|
|
24
|
+
xnsNodeUrl?: string;
|
|
25
|
+
}
|
|
26
|
+
interface KernelBootParams extends KernelNetworkParams {
|
|
27
|
+
additionalDrivers?: NodeDriver[];
|
|
28
|
+
kernelDrivers?: NativeKernelDrivers[];
|
|
29
|
+
locator?: ModuleFactoryLocatorInstance;
|
|
30
|
+
}
|
|
31
|
+
interface KernelExternal {
|
|
32
|
+
bios?: BiosExternalInterface;
|
|
33
|
+
/**
|
|
34
|
+
* The drivers that have been attempted to be initialized but errored
|
|
35
|
+
*/
|
|
36
|
+
errored: Readonly<Record<string, Readonly<NodeDriver>>>;
|
|
37
|
+
/**
|
|
38
|
+
* The drivers that have been initialized
|
|
39
|
+
*/
|
|
40
|
+
initialized: Readonly<Record<string, Readonly<AttachableNodeInstance>>>;
|
|
41
|
+
/**
|
|
42
|
+
* The drivers that have been registered with the kernel
|
|
43
|
+
*/
|
|
44
|
+
registered: Readonly<Record<string, Readonly<NodeDriver>>>;
|
|
45
|
+
/**
|
|
46
|
+
* The boot or other status of the kernel
|
|
47
|
+
*/
|
|
48
|
+
status: KernelStatus;
|
|
49
|
+
/**
|
|
50
|
+
* Boots the kernel
|
|
51
|
+
*/
|
|
52
|
+
boot(bios: BiosExternalInterface, params?: KernelBootParams): Promise<NodeInstance>;
|
|
53
|
+
/**
|
|
54
|
+
* The memory node that the kernel is running
|
|
55
|
+
*/
|
|
56
|
+
getNode(): Promise<Readonly<NodeInstance>>;
|
|
57
|
+
/**
|
|
58
|
+
* Loads a driver
|
|
59
|
+
*/
|
|
60
|
+
loadDriver(driver: NodeDriver): Promise<void> | void;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* A dictionary of replacements to be made in a manifest file.
|
|
65
|
+
*/
|
|
66
|
+
type ManifestReplacementDictionary = Record<string, string>;
|
|
67
|
+
|
|
68
|
+
declare const RemoteNetworkSchema = "network.xyo.remote.network";
|
|
69
|
+
type RemoteNetworkSchema = typeof RemoteNetworkSchema;
|
|
70
|
+
type RemoteNetwork = Payload<{
|
|
71
|
+
name: string;
|
|
72
|
+
schema: RemoteNetworkSchema;
|
|
73
|
+
slug: string;
|
|
74
|
+
url: string;
|
|
75
|
+
}, RemoteNetworkSchema>;
|
|
76
|
+
|
|
77
|
+
declare const IntersectNetworks: RemoteNetwork[];
|
|
78
|
+
declare const XyoPublicNetworks: RemoteNetwork[];
|
|
79
|
+
|
|
80
|
+
export { DefaultKernelDrivers, IntersectNetworks, RemoteNetworkSchema, XyoPublicNetworks };
|
|
81
|
+
export type { DriverFactory, KernelBootParams, KernelExternal, KernelNetworkParams, KernelStatus, ManifestReplacementDictionary, NativeKernelDrivers, NodeDriver, RemoteNetwork };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { PackageManifestPayload } from '@xyo-network/manifest-model';
|
|
2
|
+
import type { ModuleFactoryLocatorInstance } from '@xyo-network/module-model';
|
|
3
|
+
import type { AttachableNodeInstance } from '@xyo-network/node-model';
|
|
4
|
+
import type { WalletInstance } from '@xyo-network/wallet-model';
|
|
5
|
+
export interface NodeDriver {
|
|
6
|
+
locator: ModuleFactoryLocatorInstance;
|
|
7
|
+
manifest: PackageManifestPayload;
|
|
8
|
+
name: string;
|
|
9
|
+
walletPath: string | undefined;
|
|
10
|
+
initialize(wallet: WalletInstance): Promise<AttachableNodeInstance>;
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=NodeDriver.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NodeDriver.d.ts","sourceRoot":"","sources":["../../../src/driver/NodeDriver.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAA;AACzE,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,2BAA2B,CAAA;AAC7E,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,yBAAyB,CAAA;AACrE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAE/D,MAAM,WAAW,UAAU;IACzB,OAAO,EAAE,4BAA4B,CAAA;IACrC,QAAQ,EAAE,sBAAsB,CAAA;IAChC,IAAI,EAAE,MAAM,CAAA;IACZ,UAAU,EAAE,MAAM,GAAG,SAAS,CAAA;IAC9B,UAAU,CAAC,MAAM,EAAE,cAAc,GAAG,OAAO,CAAC,sBAAsB,CAAC,CAAA;CACpE"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/driver/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAA"}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { PackageManifestPayload } from '@xyo-network/manifest-model';
|
|
2
|
+
import { ModuleFactoryLocatorInstance } from '@xyo-network/module-model';
|
|
3
|
+
import { AttachableNodeInstance, NodeInstance } from '@xyo-network/node-model';
|
|
4
|
+
import { WalletInstance } from '@xyo-network/wallet-model';
|
|
5
|
+
import { BiosExternalInterface } from '@xyo-network/bios-model';
|
|
6
|
+
import { Payload } from '@xyo-network/payload-model';
|
|
7
|
+
|
|
8
|
+
interface NodeDriver {
|
|
9
|
+
locator: ModuleFactoryLocatorInstance;
|
|
10
|
+
manifest: PackageManifestPayload;
|
|
11
|
+
name: string;
|
|
12
|
+
walletPath: string | undefined;
|
|
13
|
+
initialize(wallet: WalletInstance): Promise<AttachableNodeInstance>;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
type KernelStatus = 'created' | 'booting' | 'booted' | 'errored';
|
|
17
|
+
type NativeKernelDrivers = 'pubsub' | 'xyo-public-bridge' | 'exposed' | 'os-settings' | 'http-host';
|
|
18
|
+
declare const DefaultKernelDrivers: NativeKernelDrivers[];
|
|
19
|
+
type DriverFactory = (params?: KernelBootParams) => NodeDriver;
|
|
20
|
+
interface KernelNetworkParams {
|
|
21
|
+
mainNetwork?: string;
|
|
22
|
+
mainNetworkUrl?: string;
|
|
23
|
+
xnsNetwork?: string;
|
|
24
|
+
xnsNodeUrl?: string;
|
|
25
|
+
}
|
|
26
|
+
interface KernelBootParams extends KernelNetworkParams {
|
|
27
|
+
additionalDrivers?: NodeDriver[];
|
|
28
|
+
kernelDrivers?: NativeKernelDrivers[];
|
|
29
|
+
locator?: ModuleFactoryLocatorInstance;
|
|
30
|
+
}
|
|
31
|
+
interface KernelExternal {
|
|
32
|
+
bios?: BiosExternalInterface;
|
|
33
|
+
/**
|
|
34
|
+
* The drivers that have been attempted to be initialized but errored
|
|
35
|
+
*/
|
|
36
|
+
errored: Readonly<Record<string, Readonly<NodeDriver>>>;
|
|
37
|
+
/**
|
|
38
|
+
* The drivers that have been initialized
|
|
39
|
+
*/
|
|
40
|
+
initialized: Readonly<Record<string, Readonly<AttachableNodeInstance>>>;
|
|
41
|
+
/**
|
|
42
|
+
* The drivers that have been registered with the kernel
|
|
43
|
+
*/
|
|
44
|
+
registered: Readonly<Record<string, Readonly<NodeDriver>>>;
|
|
45
|
+
/**
|
|
46
|
+
* The boot or other status of the kernel
|
|
47
|
+
*/
|
|
48
|
+
status: KernelStatus;
|
|
49
|
+
/**
|
|
50
|
+
* Boots the kernel
|
|
51
|
+
*/
|
|
52
|
+
boot(bios: BiosExternalInterface, params?: KernelBootParams): Promise<NodeInstance>;
|
|
53
|
+
/**
|
|
54
|
+
* The memory node that the kernel is running
|
|
55
|
+
*/
|
|
56
|
+
getNode(): Promise<Readonly<NodeInstance>>;
|
|
57
|
+
/**
|
|
58
|
+
* Loads a driver
|
|
59
|
+
*/
|
|
60
|
+
loadDriver(driver: NodeDriver): Promise<void> | void;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* A dictionary of replacements to be made in a manifest file.
|
|
65
|
+
*/
|
|
66
|
+
type ManifestReplacementDictionary = Record<string, string>;
|
|
67
|
+
|
|
68
|
+
declare const RemoteNetworkSchema = "network.xyo.remote.network";
|
|
69
|
+
type RemoteNetworkSchema = typeof RemoteNetworkSchema;
|
|
70
|
+
type RemoteNetwork = Payload<{
|
|
71
|
+
name: string;
|
|
72
|
+
schema: RemoteNetworkSchema;
|
|
73
|
+
slug: string;
|
|
74
|
+
url: string;
|
|
75
|
+
}, RemoteNetworkSchema>;
|
|
76
|
+
|
|
77
|
+
declare const IntersectNetworks: RemoteNetwork[];
|
|
78
|
+
declare const XyoPublicNetworks: RemoteNetwork[];
|
|
79
|
+
|
|
80
|
+
export { DefaultKernelDrivers, IntersectNetworks, RemoteNetworkSchema, XyoPublicNetworks };
|
|
81
|
+
export type { DriverFactory, KernelBootParams, KernelExternal, KernelNetworkParams, KernelStatus, ManifestReplacementDictionary, NativeKernelDrivers, NodeDriver, RemoteNetwork };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAA;AACjC,cAAc,mBAAmB,CAAA;AACjC,cAAc,qBAAqB,CAAA;AACnC,cAAc,qBAAqB,CAAA"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import type { BiosExternalInterface } from '@xyo-network/bios-model';
|
|
2
|
+
import type { ModuleFactoryLocatorInstance } from '@xyo-network/module-model';
|
|
3
|
+
import type { AttachableNodeInstance, NodeInstance } from '@xyo-network/node-model';
|
|
4
|
+
import type { NodeDriver } from '../driver/index.ts';
|
|
5
|
+
export type KernelStatus = 'created' | 'booting' | 'booted' | 'errored';
|
|
6
|
+
export type NativeKernelDrivers = 'pubsub' | 'xyo-public-bridge' | 'exposed' | 'os-settings' | 'http-host';
|
|
7
|
+
export declare const DefaultKernelDrivers: NativeKernelDrivers[];
|
|
8
|
+
export type DriverFactory = (params?: KernelBootParams) => NodeDriver;
|
|
9
|
+
export interface KernelNetworkParams {
|
|
10
|
+
mainNetwork?: string;
|
|
11
|
+
mainNetworkUrl?: string;
|
|
12
|
+
xnsNetwork?: string;
|
|
13
|
+
xnsNodeUrl?: string;
|
|
14
|
+
}
|
|
15
|
+
export interface KernelBootParams extends KernelNetworkParams {
|
|
16
|
+
additionalDrivers?: NodeDriver[];
|
|
17
|
+
kernelDrivers?: NativeKernelDrivers[];
|
|
18
|
+
locator?: ModuleFactoryLocatorInstance;
|
|
19
|
+
}
|
|
20
|
+
export interface KernelExternal {
|
|
21
|
+
bios?: BiosExternalInterface;
|
|
22
|
+
/**
|
|
23
|
+
* The drivers that have been attempted to be initialized but errored
|
|
24
|
+
*/
|
|
25
|
+
errored: Readonly<Record<string, Readonly<NodeDriver>>>;
|
|
26
|
+
/**
|
|
27
|
+
* The drivers that have been initialized
|
|
28
|
+
*/
|
|
29
|
+
initialized: Readonly<Record<string, Readonly<AttachableNodeInstance>>>;
|
|
30
|
+
/**
|
|
31
|
+
* The drivers that have been registered with the kernel
|
|
32
|
+
*/
|
|
33
|
+
registered: Readonly<Record<string, Readonly<NodeDriver>>>;
|
|
34
|
+
/**
|
|
35
|
+
* The boot or other status of the kernel
|
|
36
|
+
*/
|
|
37
|
+
status: KernelStatus;
|
|
38
|
+
/**
|
|
39
|
+
* Boots the kernel
|
|
40
|
+
*/
|
|
41
|
+
boot(bios: BiosExternalInterface, params?: KernelBootParams): Promise<NodeInstance>;
|
|
42
|
+
/**
|
|
43
|
+
* The memory node that the kernel is running
|
|
44
|
+
*/
|
|
45
|
+
getNode(): Promise<Readonly<NodeInstance>>;
|
|
46
|
+
/**
|
|
47
|
+
* Loads a driver
|
|
48
|
+
*/
|
|
49
|
+
loadDriver(driver: NodeDriver): Promise<void> | void;
|
|
50
|
+
}
|
|
51
|
+
//# sourceMappingURL=KernelExternal.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"KernelExternal.d.ts","sourceRoot":"","sources":["../../../src/kernel/KernelExternal.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAA;AACpE,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,2BAA2B,CAAA;AAC7E,OAAO,KAAK,EAAE,sBAAsB,EAAE,YAAY,EAAE,MAAM,yBAAyB,CAAA;AAEnF,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAA;AAEpD,MAAM,MAAM,YAAY,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,GAAG,SAAS,CAAA;AACvE,MAAM,MAAM,mBAAmB,GAAG,QAAQ,GAAG,mBAAmB,GAAG,SAAS,GAAG,aAAa,GAAG,WAAW,CAAA;AAE1G,eAAO,MAAM,oBAAoB,EAAE,mBAAmB,EAItC,CAAA;AAEhB,MAAM,MAAM,aAAa,GAAG,CAAC,MAAM,CAAC,EAAE,gBAAgB,KAAK,UAAU,CAAA;AAErE,MAAM,WAAW,mBAAmB;IAClC,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,UAAU,CAAC,EAAE,MAAM,CAAA;CACpB;AAED,MAAM,WAAW,gBAAiB,SAAQ,mBAAmB;IAC3D,iBAAiB,CAAC,EAAE,UAAU,EAAE,CAAA;IAChC,aAAa,CAAC,EAAE,mBAAmB,EAAE,CAAA;IACrC,OAAO,CAAC,EAAE,4BAA4B,CAAA;CACvC;AAED,MAAM,WAAW,cAAc;IAC7B,IAAI,CAAC,EAAE,qBAAqB,CAAA;IAC5B;;OAEG;IACH,OAAO,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,QAAQ,CAAC,UAAU,CAAC,CAAC,CAAC,CAAA;IACvD;;OAEG;IACH,WAAW,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAA;IACvE;;OAEG;IACH,UAAU,EAAE,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,QAAQ,CAAC,UAAU,CAAC,CAAC,CAAC,CAAA;IAE1D;;OAEG;IACH,MAAM,EAAE,YAAY,CAAA;IAEpB;;OAEG;IACH,IAAI,CACF,IAAI,EAAE,qBAAqB,EAC3B,MAAM,CAAC,EAAE,gBAAgB,GACxB,OAAO,CAAC,YAAY,CAAC,CAAA;IAExB;;OAEG;IACH,OAAO,IAAI,OAAO,CAAC,QAAQ,CAAC,YAAY,CAAC,CAAC,CAAA;IAE1C;;OAEG;IACH,UAAU,CAAC,MAAM,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC,GAAG,IAAI,CAAA;CACrD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/kernel/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ManifestReplacementDictionary.d.ts","sourceRoot":"","sources":["../../../src/manifest/ManifestReplacementDictionary.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,MAAM,6BAA6B,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/manifest/index.ts"],"names":[],"mappings":"AAAA,cAAc,oCAAoC,CAAA"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { Payload } from '@xyo-network/payload-model';
|
|
2
|
+
export declare const RemoteNetworkSchema = "network.xyo.remote.network";
|
|
3
|
+
export type RemoteNetworkSchema = typeof RemoteNetworkSchema;
|
|
4
|
+
export type RemoteNetwork = Payload<{
|
|
5
|
+
name: string;
|
|
6
|
+
schema: RemoteNetworkSchema;
|
|
7
|
+
slug: string;
|
|
8
|
+
url: string;
|
|
9
|
+
}, RemoteNetworkSchema>;
|
|
10
|
+
//# sourceMappingURL=Payload.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Payload.d.ts","sourceRoot":"","sources":["../../../src/networks/Payload.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAA;AAEzD,eAAO,MAAM,mBAAmB,+BAA+B,CAAA;AAC/D,MAAM,MAAM,mBAAmB,GAAG,OAAO,mBAAmB,CAAA;AAE5D,MAAM,MAAM,aAAa,GAAG,OAAO,CACjC;IACE,IAAI,EAAE,MAAM,CAAA;IACZ,MAAM,EAAE,mBAAmB,CAAA;IAC3B,IAAI,EAAE,MAAM,CAAA;IACZ,GAAG,EAAE,MAAM,CAAA;CACZ,EACD,mBAAmB,CACpB,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Remote.d.ts","sourceRoot":"","sources":["../../../src/networks/Remote.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,cAAc,CAAA;AAGjD,eAAO,MAAM,iBAAiB,EAAE,aAAa,EAmB5C,CAAA;AAED,eAAO,MAAM,iBAAiB,EAAE,aAAa,EAmB5C,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/networks/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAA;AAC5B,cAAc,aAAa,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/kernel-model",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.5",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -21,24 +21,24 @@
|
|
|
21
21
|
"type": "module",
|
|
22
22
|
"exports": {
|
|
23
23
|
".": {
|
|
24
|
-
"types": "./dist/
|
|
24
|
+
"types": "./dist/neutral/index.d.ts",
|
|
25
25
|
"default": "./dist/neutral/index.mjs"
|
|
26
26
|
},
|
|
27
27
|
"./package.json": "./package.json"
|
|
28
28
|
},
|
|
29
29
|
"module": "dist/neutral/index.mjs",
|
|
30
|
-
"types": "dist/
|
|
30
|
+
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@xyo-network/bios-model": "^6.0.
|
|
33
|
-
"@xyo-network/manifest-model": "^4.1.
|
|
34
|
-
"@xyo-network/module-model": "^4.1.
|
|
35
|
-
"@xyo-network/node-model": "^4.1.
|
|
36
|
-
"@xyo-network/payload-model": "^4.1.
|
|
37
|
-
"@xyo-network/wallet-model": "^4.1.
|
|
32
|
+
"@xyo-network/bios-model": "^6.0.5",
|
|
33
|
+
"@xyo-network/manifest-model": "^4.1.1",
|
|
34
|
+
"@xyo-network/module-model": "^4.1.1",
|
|
35
|
+
"@xyo-network/node-model": "^4.1.1",
|
|
36
|
+
"@xyo-network/payload-model": "^4.1.1",
|
|
37
|
+
"@xyo-network/wallet-model": "^4.1.1"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@xylabs/ts-scripts-yarn3": "^
|
|
41
|
-
"@xylabs/tsconfig": "^
|
|
40
|
+
"@xylabs/ts-scripts-yarn3": "^7.0.0-rc.24",
|
|
41
|
+
"@xylabs/tsconfig": "^7.0.0-rc.24",
|
|
42
42
|
"typescript": "^5.8.3"
|
|
43
43
|
},
|
|
44
44
|
"publishConfig": {
|
package/dist/types/index.d.ts
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|