@xyo-network/react-standard-node 2.66.4 → 2.67.0
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/lib/Builders/MemoryNodeBuilder.d.cts +18 -18
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.mts +18 -18
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.ts +18 -18
- package/dist/browser/lib/Builders/SentinelBuilder.d.cts +24 -24
- package/dist/browser/lib/Builders/SentinelBuilder.d.mts +24 -24
- package/dist/browser/lib/Builders/SentinelBuilder.d.ts +24 -24
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.cts +24 -24
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.mts +24 -24
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.ts +24 -24
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.cts +18 -18
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.mts +18 -18
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.ts +18 -18
- package/dist/node/lib/Builders/SentinelBuilder.d.cts +24 -24
- package/dist/node/lib/Builders/SentinelBuilder.d.mts +24 -24
- package/dist/node/lib/Builders/SentinelBuilder.d.ts +24 -24
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.cts +24 -24
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.mts +24 -24
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.ts +24 -24
- package/package.json +20 -20
|
@@ -10,9 +10,9 @@ export interface MemoryNodeBuilderConfig {
|
|
|
10
10
|
}
|
|
11
11
|
export declare class MemoryNodeBuilder {
|
|
12
12
|
private _node;
|
|
13
|
-
get node(): MemoryNode<import("@xyo-network/
|
|
13
|
+
get node(): MemoryNode<import("@xyo-network/object").BaseParamsFields & {
|
|
14
14
|
account?: AccountInstance | "random" | undefined;
|
|
15
|
-
config: import("@xyo-network/payload-model").SchemaFields & Omit<{
|
|
15
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<{
|
|
16
16
|
accountDerivationPath?: string | undefined;
|
|
17
17
|
readonly archivist?: import("@xyo-network/module").ArchivistModuleConfig | undefined;
|
|
18
18
|
readonly labels?: import("@xyo-network/module").Labels | undefined;
|
|
@@ -28,7 +28,9 @@ export declare class MemoryNodeBuilder {
|
|
|
28
28
|
readonly sign?: boolean | undefined;
|
|
29
29
|
readonly storeQueries?: boolean | undefined;
|
|
30
30
|
readonly timestamp?: boolean | undefined;
|
|
31
|
-
} & import("@xyo-network/module").ArchivingModuleConfig &
|
|
31
|
+
} & import("@xyo-network/module").ArchivingModuleConfig & {
|
|
32
|
+
schema: string;
|
|
33
|
+
} & Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
32
34
|
accountDerivationPath?: string | undefined;
|
|
33
35
|
readonly archivist?: import("@xyo-network/module").ArchivistModuleConfig | undefined;
|
|
34
36
|
readonly labels?: import("@xyo-network/module").Labels | undefined;
|
|
@@ -48,9 +50,7 @@ export declare class MemoryNodeBuilder {
|
|
|
48
50
|
archivist?: string | undefined;
|
|
49
51
|
} & {
|
|
50
52
|
schema: "network.xyo.node.config";
|
|
51
|
-
}, "schema"> & {
|
|
52
|
-
schema: string;
|
|
53
|
-
}, "schema"> & {
|
|
53
|
+
}, "schema">, "schema"> & {
|
|
54
54
|
schema: string;
|
|
55
55
|
};
|
|
56
56
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
@@ -62,9 +62,9 @@ export declare class MemoryNodeBuilder {
|
|
|
62
62
|
addArchivistMemory(moduleName?: string, account?: AccountInstance): Promise<void>;
|
|
63
63
|
addArchivistStorage(account: AccountInstance, moduleName?: string, namespace?: string): Promise<void>;
|
|
64
64
|
addBridge(apiDomain: string, moduleName?: string, account?: AccountInstance): Promise<void>;
|
|
65
|
-
addSentinel(config: SentinelConfig, account: AccountInstance): Promise<import("@xyo-network/sentinel").MemorySentinel<import("@xyo-network/
|
|
65
|
+
addSentinel(config: SentinelConfig, account: AccountInstance): Promise<import("@xyo-network/sentinel").MemorySentinel<import("@xyo-network/object").BaseParamsFields & {
|
|
66
66
|
account?: AccountInstance | "random" | undefined;
|
|
67
|
-
config: import("@xyo-network/payload-model").SchemaFields & Omit<{
|
|
67
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<{
|
|
68
68
|
accountDerivationPath?: string | undefined;
|
|
69
69
|
readonly archivist?: import("@xyo-network/module").ArchivistModuleConfig | undefined;
|
|
70
70
|
readonly labels?: import("@xyo-network/module").Labels | undefined;
|
|
@@ -80,7 +80,9 @@ export declare class MemoryNodeBuilder {
|
|
|
80
80
|
readonly sign?: boolean | undefined;
|
|
81
81
|
readonly storeQueries?: boolean | undefined;
|
|
82
82
|
readonly timestamp?: boolean | undefined;
|
|
83
|
-
} & import("@xyo-network/module").ArchivingModuleConfig &
|
|
83
|
+
} & import("@xyo-network/module").ArchivingModuleConfig & {
|
|
84
|
+
schema: string;
|
|
85
|
+
} & Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
84
86
|
accountDerivationPath?: string | undefined;
|
|
85
87
|
readonly archivist?: import("@xyo-network/module").ArchivistModuleConfig | undefined;
|
|
86
88
|
readonly labels?: import("@xyo-network/module").Labels | undefined;
|
|
@@ -101,16 +103,14 @@ export declare class MemoryNodeBuilder {
|
|
|
101
103
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
102
104
|
} & {
|
|
103
105
|
schema: "network.xyo.sentinel.config";
|
|
104
|
-
}, "schema"> & {
|
|
105
|
-
schema: string;
|
|
106
|
-
}, "schema"> & {
|
|
106
|
+
}, "schema">, "schema"> & {
|
|
107
107
|
schema: string;
|
|
108
108
|
};
|
|
109
109
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
110
110
|
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
111
|
-
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xyo-network/
|
|
111
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
112
112
|
account?: AccountInstance | "random" | undefined;
|
|
113
|
-
config: import("@xyo-network/payload-model").SchemaFields & Omit<{
|
|
113
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<{
|
|
114
114
|
accountDerivationPath?: string | undefined;
|
|
115
115
|
readonly archivist?: import("@xyo-network/module").ArchivistModuleConfig | undefined;
|
|
116
116
|
readonly labels?: import("@xyo-network/module").Labels | undefined;
|
|
@@ -126,7 +126,9 @@ export declare class MemoryNodeBuilder {
|
|
|
126
126
|
readonly sign?: boolean | undefined;
|
|
127
127
|
readonly storeQueries?: boolean | undefined;
|
|
128
128
|
readonly timestamp?: boolean | undefined;
|
|
129
|
-
} & import("@xyo-network/module").ArchivingModuleConfig &
|
|
129
|
+
} & import("@xyo-network/module").ArchivingModuleConfig & {
|
|
130
|
+
schema: string;
|
|
131
|
+
} & Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
130
132
|
accountDerivationPath?: string | undefined;
|
|
131
133
|
readonly archivist?: import("@xyo-network/module").ArchivistModuleConfig | undefined;
|
|
132
134
|
readonly labels?: import("@xyo-network/module").Labels | undefined;
|
|
@@ -147,9 +149,7 @@ export declare class MemoryNodeBuilder {
|
|
|
147
149
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
148
150
|
} & {
|
|
149
151
|
schema: "network.xyo.sentinel.config";
|
|
150
|
-
}, "schema"> & {
|
|
151
|
-
schema: string;
|
|
152
|
-
}, "schema"> & {
|
|
152
|
+
}, "schema">, "schema"> & {
|
|
153
153
|
schema: string;
|
|
154
154
|
};
|
|
155
155
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
@@ -10,9 +10,9 @@ export interface MemoryNodeBuilderConfig {
|
|
|
10
10
|
}
|
|
11
11
|
export declare class MemoryNodeBuilder {
|
|
12
12
|
private _node;
|
|
13
|
-
get node(): MemoryNode<import("@xyo-network/
|
|
13
|
+
get node(): MemoryNode<import("@xyo-network/object").BaseParamsFields & {
|
|
14
14
|
account?: AccountInstance | "random" | undefined;
|
|
15
|
-
config: import("@xyo-network/payload-model").SchemaFields & Omit<{
|
|
15
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<{
|
|
16
16
|
accountDerivationPath?: string | undefined;
|
|
17
17
|
readonly archivist?: import("@xyo-network/module").ArchivistModuleConfig | undefined;
|
|
18
18
|
readonly labels?: import("@xyo-network/module").Labels | undefined;
|
|
@@ -28,7 +28,9 @@ export declare class MemoryNodeBuilder {
|
|
|
28
28
|
readonly sign?: boolean | undefined;
|
|
29
29
|
readonly storeQueries?: boolean | undefined;
|
|
30
30
|
readonly timestamp?: boolean | undefined;
|
|
31
|
-
} & import("@xyo-network/module").ArchivingModuleConfig &
|
|
31
|
+
} & import("@xyo-network/module").ArchivingModuleConfig & {
|
|
32
|
+
schema: string;
|
|
33
|
+
} & Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
32
34
|
accountDerivationPath?: string | undefined;
|
|
33
35
|
readonly archivist?: import("@xyo-network/module").ArchivistModuleConfig | undefined;
|
|
34
36
|
readonly labels?: import("@xyo-network/module").Labels | undefined;
|
|
@@ -48,9 +50,7 @@ export declare class MemoryNodeBuilder {
|
|
|
48
50
|
archivist?: string | undefined;
|
|
49
51
|
} & {
|
|
50
52
|
schema: "network.xyo.node.config";
|
|
51
|
-
}, "schema"> & {
|
|
52
|
-
schema: string;
|
|
53
|
-
}, "schema"> & {
|
|
53
|
+
}, "schema">, "schema"> & {
|
|
54
54
|
schema: string;
|
|
55
55
|
};
|
|
56
56
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
@@ -62,9 +62,9 @@ export declare class MemoryNodeBuilder {
|
|
|
62
62
|
addArchivistMemory(moduleName?: string, account?: AccountInstance): Promise<void>;
|
|
63
63
|
addArchivistStorage(account: AccountInstance, moduleName?: string, namespace?: string): Promise<void>;
|
|
64
64
|
addBridge(apiDomain: string, moduleName?: string, account?: AccountInstance): Promise<void>;
|
|
65
|
-
addSentinel(config: SentinelConfig, account: AccountInstance): Promise<import("@xyo-network/sentinel").MemorySentinel<import("@xyo-network/
|
|
65
|
+
addSentinel(config: SentinelConfig, account: AccountInstance): Promise<import("@xyo-network/sentinel").MemorySentinel<import("@xyo-network/object").BaseParamsFields & {
|
|
66
66
|
account?: AccountInstance | "random" | undefined;
|
|
67
|
-
config: import("@xyo-network/payload-model").SchemaFields & Omit<{
|
|
67
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<{
|
|
68
68
|
accountDerivationPath?: string | undefined;
|
|
69
69
|
readonly archivist?: import("@xyo-network/module").ArchivistModuleConfig | undefined;
|
|
70
70
|
readonly labels?: import("@xyo-network/module").Labels | undefined;
|
|
@@ -80,7 +80,9 @@ export declare class MemoryNodeBuilder {
|
|
|
80
80
|
readonly sign?: boolean | undefined;
|
|
81
81
|
readonly storeQueries?: boolean | undefined;
|
|
82
82
|
readonly timestamp?: boolean | undefined;
|
|
83
|
-
} & import("@xyo-network/module").ArchivingModuleConfig &
|
|
83
|
+
} & import("@xyo-network/module").ArchivingModuleConfig & {
|
|
84
|
+
schema: string;
|
|
85
|
+
} & Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
84
86
|
accountDerivationPath?: string | undefined;
|
|
85
87
|
readonly archivist?: import("@xyo-network/module").ArchivistModuleConfig | undefined;
|
|
86
88
|
readonly labels?: import("@xyo-network/module").Labels | undefined;
|
|
@@ -101,16 +103,14 @@ export declare class MemoryNodeBuilder {
|
|
|
101
103
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
102
104
|
} & {
|
|
103
105
|
schema: "network.xyo.sentinel.config";
|
|
104
|
-
}, "schema"> & {
|
|
105
|
-
schema: string;
|
|
106
|
-
}, "schema"> & {
|
|
106
|
+
}, "schema">, "schema"> & {
|
|
107
107
|
schema: string;
|
|
108
108
|
};
|
|
109
109
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
110
110
|
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
111
|
-
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xyo-network/
|
|
111
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
112
112
|
account?: AccountInstance | "random" | undefined;
|
|
113
|
-
config: import("@xyo-network/payload-model").SchemaFields & Omit<{
|
|
113
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<{
|
|
114
114
|
accountDerivationPath?: string | undefined;
|
|
115
115
|
readonly archivist?: import("@xyo-network/module").ArchivistModuleConfig | undefined;
|
|
116
116
|
readonly labels?: import("@xyo-network/module").Labels | undefined;
|
|
@@ -126,7 +126,9 @@ export declare class MemoryNodeBuilder {
|
|
|
126
126
|
readonly sign?: boolean | undefined;
|
|
127
127
|
readonly storeQueries?: boolean | undefined;
|
|
128
128
|
readonly timestamp?: boolean | undefined;
|
|
129
|
-
} & import("@xyo-network/module").ArchivingModuleConfig &
|
|
129
|
+
} & import("@xyo-network/module").ArchivingModuleConfig & {
|
|
130
|
+
schema: string;
|
|
131
|
+
} & Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
130
132
|
accountDerivationPath?: string | undefined;
|
|
131
133
|
readonly archivist?: import("@xyo-network/module").ArchivistModuleConfig | undefined;
|
|
132
134
|
readonly labels?: import("@xyo-network/module").Labels | undefined;
|
|
@@ -147,9 +149,7 @@ export declare class MemoryNodeBuilder {
|
|
|
147
149
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
148
150
|
} & {
|
|
149
151
|
schema: "network.xyo.sentinel.config";
|
|
150
|
-
}, "schema"> & {
|
|
151
|
-
schema: string;
|
|
152
|
-
}, "schema"> & {
|
|
152
|
+
}, "schema">, "schema"> & {
|
|
153
153
|
schema: string;
|
|
154
154
|
};
|
|
155
155
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
@@ -5,9 +5,9 @@ export declare class SentinelBuilder {
|
|
|
5
5
|
private account;
|
|
6
6
|
private _sentinel;
|
|
7
7
|
protected constructor(config: SentinelConfig, account: AccountInstance);
|
|
8
|
-
get sentinel(): MemorySentinel<import("@xyo-network/
|
|
8
|
+
get sentinel(): MemorySentinel<import("@xyo-network/object").BaseParamsFields & {
|
|
9
9
|
account?: AccountInstance | "random" | undefined;
|
|
10
|
-
config: import("@xyo-network/payload-model").SchemaFields & Omit<{
|
|
10
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<{
|
|
11
11
|
accountDerivationPath?: string | undefined;
|
|
12
12
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
13
13
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -23,7 +23,9 @@ export declare class SentinelBuilder {
|
|
|
23
23
|
readonly sign?: boolean | undefined;
|
|
24
24
|
readonly storeQueries?: boolean | undefined;
|
|
25
25
|
readonly timestamp?: boolean | undefined;
|
|
26
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig &
|
|
26
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
27
|
+
schema: string;
|
|
28
|
+
} & Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
27
29
|
accountDerivationPath?: string | undefined;
|
|
28
30
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
29
31
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -44,16 +46,14 @@ export declare class SentinelBuilder {
|
|
|
44
46
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
45
47
|
} & {
|
|
46
48
|
schema: "network.xyo.sentinel.config";
|
|
47
|
-
}, "schema"> & {
|
|
48
|
-
schema: string;
|
|
49
|
-
}, "schema"> & {
|
|
49
|
+
}, "schema">, "schema"> & {
|
|
50
50
|
schema: string;
|
|
51
51
|
};
|
|
52
52
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
53
53
|
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
54
|
-
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xyo-network/
|
|
54
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
55
55
|
account?: AccountInstance | "random" | undefined;
|
|
56
|
-
config: import("@xyo-network/payload-model").SchemaFields & Omit<{
|
|
56
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<{
|
|
57
57
|
accountDerivationPath?: string | undefined;
|
|
58
58
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
59
59
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -69,7 +69,9 @@ export declare class SentinelBuilder {
|
|
|
69
69
|
readonly sign?: boolean | undefined;
|
|
70
70
|
readonly storeQueries?: boolean | undefined;
|
|
71
71
|
readonly timestamp?: boolean | undefined;
|
|
72
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig &
|
|
72
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
73
|
+
schema: string;
|
|
74
|
+
} & Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
73
75
|
accountDerivationPath?: string | undefined;
|
|
74
76
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
75
77
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -90,18 +92,16 @@ export declare class SentinelBuilder {
|
|
|
90
92
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
91
93
|
} & {
|
|
92
94
|
schema: "network.xyo.sentinel.config";
|
|
93
|
-
}, "schema"> & {
|
|
94
|
-
schema: string;
|
|
95
|
-
}, "schema"> & {
|
|
95
|
+
}, "schema">, "schema"> & {
|
|
96
96
|
schema: string;
|
|
97
97
|
};
|
|
98
98
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
99
99
|
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
100
100
|
}>>>;
|
|
101
101
|
static create(config: SentinelConfig, account: AccountInstance): Promise<SentinelBuilder>;
|
|
102
|
-
buildSentinel(): Promise<MemorySentinel<import("@xyo-network/
|
|
102
|
+
buildSentinel(): Promise<MemorySentinel<import("@xyo-network/object").BaseParamsFields & {
|
|
103
103
|
account?: AccountInstance | "random" | undefined;
|
|
104
|
-
config: import("@xyo-network/payload-model").SchemaFields & Omit<{
|
|
104
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<{
|
|
105
105
|
accountDerivationPath?: string | undefined;
|
|
106
106
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
107
107
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -117,7 +117,9 @@ export declare class SentinelBuilder {
|
|
|
117
117
|
readonly sign?: boolean | undefined;
|
|
118
118
|
readonly storeQueries?: boolean | undefined;
|
|
119
119
|
readonly timestamp?: boolean | undefined;
|
|
120
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig &
|
|
120
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
121
|
+
schema: string;
|
|
122
|
+
} & Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
121
123
|
accountDerivationPath?: string | undefined;
|
|
122
124
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
123
125
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -138,16 +140,14 @@ export declare class SentinelBuilder {
|
|
|
138
140
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
139
141
|
} & {
|
|
140
142
|
schema: "network.xyo.sentinel.config";
|
|
141
|
-
}, "schema"> & {
|
|
142
|
-
schema: string;
|
|
143
|
-
}, "schema"> & {
|
|
143
|
+
}, "schema">, "schema"> & {
|
|
144
144
|
schema: string;
|
|
145
145
|
};
|
|
146
146
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
147
147
|
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
148
|
-
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xyo-network/
|
|
148
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
149
149
|
account?: AccountInstance | "random" | undefined;
|
|
150
|
-
config: import("@xyo-network/payload-model").SchemaFields & Omit<{
|
|
150
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<{
|
|
151
151
|
accountDerivationPath?: string | undefined;
|
|
152
152
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
153
153
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -163,7 +163,9 @@ export declare class SentinelBuilder {
|
|
|
163
163
|
readonly sign?: boolean | undefined;
|
|
164
164
|
readonly storeQueries?: boolean | undefined;
|
|
165
165
|
readonly timestamp?: boolean | undefined;
|
|
166
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig &
|
|
166
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
167
|
+
schema: string;
|
|
168
|
+
} & Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
167
169
|
accountDerivationPath?: string | undefined;
|
|
168
170
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
169
171
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -184,9 +186,7 @@ export declare class SentinelBuilder {
|
|
|
184
186
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
185
187
|
} & {
|
|
186
188
|
schema: "network.xyo.sentinel.config";
|
|
187
|
-
}, "schema"> & {
|
|
188
|
-
schema: string;
|
|
189
|
-
}, "schema"> & {
|
|
189
|
+
}, "schema">, "schema"> & {
|
|
190
190
|
schema: string;
|
|
191
191
|
};
|
|
192
192
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
@@ -5,9 +5,9 @@ export declare class SentinelBuilder {
|
|
|
5
5
|
private account;
|
|
6
6
|
private _sentinel;
|
|
7
7
|
protected constructor(config: SentinelConfig, account: AccountInstance);
|
|
8
|
-
get sentinel(): MemorySentinel<import("@xyo-network/
|
|
8
|
+
get sentinel(): MemorySentinel<import("@xyo-network/object").BaseParamsFields & {
|
|
9
9
|
account?: AccountInstance | "random" | undefined;
|
|
10
|
-
config: import("@xyo-network/payload-model").SchemaFields & Omit<{
|
|
10
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<{
|
|
11
11
|
accountDerivationPath?: string | undefined;
|
|
12
12
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
13
13
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -23,7 +23,9 @@ export declare class SentinelBuilder {
|
|
|
23
23
|
readonly sign?: boolean | undefined;
|
|
24
24
|
readonly storeQueries?: boolean | undefined;
|
|
25
25
|
readonly timestamp?: boolean | undefined;
|
|
26
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig &
|
|
26
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
27
|
+
schema: string;
|
|
28
|
+
} & Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
27
29
|
accountDerivationPath?: string | undefined;
|
|
28
30
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
29
31
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -44,16 +46,14 @@ export declare class SentinelBuilder {
|
|
|
44
46
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
45
47
|
} & {
|
|
46
48
|
schema: "network.xyo.sentinel.config";
|
|
47
|
-
}, "schema"> & {
|
|
48
|
-
schema: string;
|
|
49
|
-
}, "schema"> & {
|
|
49
|
+
}, "schema">, "schema"> & {
|
|
50
50
|
schema: string;
|
|
51
51
|
};
|
|
52
52
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
53
53
|
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
54
|
-
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xyo-network/
|
|
54
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
55
55
|
account?: AccountInstance | "random" | undefined;
|
|
56
|
-
config: import("@xyo-network/payload-model").SchemaFields & Omit<{
|
|
56
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<{
|
|
57
57
|
accountDerivationPath?: string | undefined;
|
|
58
58
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
59
59
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -69,7 +69,9 @@ export declare class SentinelBuilder {
|
|
|
69
69
|
readonly sign?: boolean | undefined;
|
|
70
70
|
readonly storeQueries?: boolean | undefined;
|
|
71
71
|
readonly timestamp?: boolean | undefined;
|
|
72
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig &
|
|
72
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
73
|
+
schema: string;
|
|
74
|
+
} & Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
73
75
|
accountDerivationPath?: string | undefined;
|
|
74
76
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
75
77
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -90,18 +92,16 @@ export declare class SentinelBuilder {
|
|
|
90
92
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
91
93
|
} & {
|
|
92
94
|
schema: "network.xyo.sentinel.config";
|
|
93
|
-
}, "schema"> & {
|
|
94
|
-
schema: string;
|
|
95
|
-
}, "schema"> & {
|
|
95
|
+
}, "schema">, "schema"> & {
|
|
96
96
|
schema: string;
|
|
97
97
|
};
|
|
98
98
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
99
99
|
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
100
100
|
}>>>;
|
|
101
101
|
static create(config: SentinelConfig, account: AccountInstance): Promise<SentinelBuilder>;
|
|
102
|
-
buildSentinel(): Promise<MemorySentinel<import("@xyo-network/
|
|
102
|
+
buildSentinel(): Promise<MemorySentinel<import("@xyo-network/object").BaseParamsFields & {
|
|
103
103
|
account?: AccountInstance | "random" | undefined;
|
|
104
|
-
config: import("@xyo-network/payload-model").SchemaFields & Omit<{
|
|
104
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<{
|
|
105
105
|
accountDerivationPath?: string | undefined;
|
|
106
106
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
107
107
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -117,7 +117,9 @@ export declare class SentinelBuilder {
|
|
|
117
117
|
readonly sign?: boolean | undefined;
|
|
118
118
|
readonly storeQueries?: boolean | undefined;
|
|
119
119
|
readonly timestamp?: boolean | undefined;
|
|
120
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig &
|
|
120
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
121
|
+
schema: string;
|
|
122
|
+
} & Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
121
123
|
accountDerivationPath?: string | undefined;
|
|
122
124
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
123
125
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -138,16 +140,14 @@ export declare class SentinelBuilder {
|
|
|
138
140
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
139
141
|
} & {
|
|
140
142
|
schema: "network.xyo.sentinel.config";
|
|
141
|
-
}, "schema"> & {
|
|
142
|
-
schema: string;
|
|
143
|
-
}, "schema"> & {
|
|
143
|
+
}, "schema">, "schema"> & {
|
|
144
144
|
schema: string;
|
|
145
145
|
};
|
|
146
146
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
147
147
|
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
148
|
-
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xyo-network/
|
|
148
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
149
149
|
account?: AccountInstance | "random" | undefined;
|
|
150
|
-
config: import("@xyo-network/payload-model").SchemaFields & Omit<{
|
|
150
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<{
|
|
151
151
|
accountDerivationPath?: string | undefined;
|
|
152
152
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
153
153
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -163,7 +163,9 @@ export declare class SentinelBuilder {
|
|
|
163
163
|
readonly sign?: boolean | undefined;
|
|
164
164
|
readonly storeQueries?: boolean | undefined;
|
|
165
165
|
readonly timestamp?: boolean | undefined;
|
|
166
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig &
|
|
166
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
167
|
+
schema: string;
|
|
168
|
+
} & Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
167
169
|
accountDerivationPath?: string | undefined;
|
|
168
170
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
169
171
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -184,9 +186,7 @@ export declare class SentinelBuilder {
|
|
|
184
186
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
185
187
|
} & {
|
|
186
188
|
schema: "network.xyo.sentinel.config";
|
|
187
|
-
}, "schema"> & {
|
|
188
|
-
schema: string;
|
|
189
|
-
}, "schema"> & {
|
|
189
|
+
}, "schema">, "schema"> & {
|
|
190
190
|
schema: string;
|
|
191
191
|
};
|
|
192
192
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
@@ -5,9 +5,9 @@ export declare class SentinelBuilder {
|
|
|
5
5
|
private account;
|
|
6
6
|
private _sentinel;
|
|
7
7
|
protected constructor(config: SentinelConfig, account: AccountInstance);
|
|
8
|
-
get sentinel(): MemorySentinel<import("@xyo-network/
|
|
8
|
+
get sentinel(): MemorySentinel<import("@xyo-network/object").BaseParamsFields & {
|
|
9
9
|
account?: AccountInstance | "random" | undefined;
|
|
10
|
-
config: import("@xyo-network/payload-model").SchemaFields & Omit<{
|
|
10
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<{
|
|
11
11
|
accountDerivationPath?: string | undefined;
|
|
12
12
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
13
13
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -23,7 +23,9 @@ export declare class SentinelBuilder {
|
|
|
23
23
|
readonly sign?: boolean | undefined;
|
|
24
24
|
readonly storeQueries?: boolean | undefined;
|
|
25
25
|
readonly timestamp?: boolean | undefined;
|
|
26
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig &
|
|
26
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
27
|
+
schema: string;
|
|
28
|
+
} & Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
27
29
|
accountDerivationPath?: string | undefined;
|
|
28
30
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
29
31
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -44,16 +46,14 @@ export declare class SentinelBuilder {
|
|
|
44
46
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
45
47
|
} & {
|
|
46
48
|
schema: "network.xyo.sentinel.config";
|
|
47
|
-
}, "schema"> & {
|
|
48
|
-
schema: string;
|
|
49
|
-
}, "schema"> & {
|
|
49
|
+
}, "schema">, "schema"> & {
|
|
50
50
|
schema: string;
|
|
51
51
|
};
|
|
52
52
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
53
53
|
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
54
|
-
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xyo-network/
|
|
54
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
55
55
|
account?: AccountInstance | "random" | undefined;
|
|
56
|
-
config: import("@xyo-network/payload-model").SchemaFields & Omit<{
|
|
56
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<{
|
|
57
57
|
accountDerivationPath?: string | undefined;
|
|
58
58
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
59
59
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -69,7 +69,9 @@ export declare class SentinelBuilder {
|
|
|
69
69
|
readonly sign?: boolean | undefined;
|
|
70
70
|
readonly storeQueries?: boolean | undefined;
|
|
71
71
|
readonly timestamp?: boolean | undefined;
|
|
72
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig &
|
|
72
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
73
|
+
schema: string;
|
|
74
|
+
} & Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
73
75
|
accountDerivationPath?: string | undefined;
|
|
74
76
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
75
77
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -90,18 +92,16 @@ export declare class SentinelBuilder {
|
|
|
90
92
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
91
93
|
} & {
|
|
92
94
|
schema: "network.xyo.sentinel.config";
|
|
93
|
-
}, "schema"> & {
|
|
94
|
-
schema: string;
|
|
95
|
-
}, "schema"> & {
|
|
95
|
+
}, "schema">, "schema"> & {
|
|
96
96
|
schema: string;
|
|
97
97
|
};
|
|
98
98
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
99
99
|
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
100
100
|
}>>>;
|
|
101
101
|
static create(config: SentinelConfig, account: AccountInstance): Promise<SentinelBuilder>;
|
|
102
|
-
buildSentinel(): Promise<MemorySentinel<import("@xyo-network/
|
|
102
|
+
buildSentinel(): Promise<MemorySentinel<import("@xyo-network/object").BaseParamsFields & {
|
|
103
103
|
account?: AccountInstance | "random" | undefined;
|
|
104
|
-
config: import("@xyo-network/payload-model").SchemaFields & Omit<{
|
|
104
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<{
|
|
105
105
|
accountDerivationPath?: string | undefined;
|
|
106
106
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
107
107
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -117,7 +117,9 @@ export declare class SentinelBuilder {
|
|
|
117
117
|
readonly sign?: boolean | undefined;
|
|
118
118
|
readonly storeQueries?: boolean | undefined;
|
|
119
119
|
readonly timestamp?: boolean | undefined;
|
|
120
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig &
|
|
120
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
121
|
+
schema: string;
|
|
122
|
+
} & Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
121
123
|
accountDerivationPath?: string | undefined;
|
|
122
124
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
123
125
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -138,16 +140,14 @@ export declare class SentinelBuilder {
|
|
|
138
140
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
139
141
|
} & {
|
|
140
142
|
schema: "network.xyo.sentinel.config";
|
|
141
|
-
}, "schema"> & {
|
|
142
|
-
schema: string;
|
|
143
|
-
}, "schema"> & {
|
|
143
|
+
}, "schema">, "schema"> & {
|
|
144
144
|
schema: string;
|
|
145
145
|
};
|
|
146
146
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
147
147
|
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
148
|
-
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xyo-network/
|
|
148
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
149
149
|
account?: AccountInstance | "random" | undefined;
|
|
150
|
-
config: import("@xyo-network/payload-model").SchemaFields & Omit<{
|
|
150
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<{
|
|
151
151
|
accountDerivationPath?: string | undefined;
|
|
152
152
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
153
153
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -163,7 +163,9 @@ export declare class SentinelBuilder {
|
|
|
163
163
|
readonly sign?: boolean | undefined;
|
|
164
164
|
readonly storeQueries?: boolean | undefined;
|
|
165
165
|
readonly timestamp?: boolean | undefined;
|
|
166
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig &
|
|
166
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
167
|
+
schema: string;
|
|
168
|
+
} & Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
167
169
|
accountDerivationPath?: string | undefined;
|
|
168
170
|
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
169
171
|
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
@@ -184,9 +186,7 @@ export declare class SentinelBuilder {
|
|
|
184
186
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
185
187
|
} & {
|
|
186
188
|
schema: "network.xyo.sentinel.config";
|
|
187
|
-
}, "schema"> & {
|
|
188
|
-
schema: string;
|
|
189
|
-
}, "schema"> & {
|
|
189
|
+
}, "schema">, "schema"> & {
|
|
190
190
|
schema: string;
|
|
191
191
|
};
|
|
192
192
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|