@xyo-network/react-standard-node 2.68.2 → 2.69.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/contexts/StandardRemoteNodes/State.d.cts +2 -1
- package/dist/browser/contexts/StandardRemoteNodes/State.d.cts.map +1 -1
- package/dist/browser/contexts/StandardRemoteNodes/State.d.mts +2 -1
- package/dist/browser/contexts/StandardRemoteNodes/State.d.mts.map +1 -1
- package/dist/browser/contexts/StandardRemoteNodes/State.d.ts +2 -1
- package/dist/browser/contexts/StandardRemoteNodes/State.d.ts.map +1 -1
- package/dist/browser/hooks/useActiveNodeAddress.d.cts +1 -1
- package/dist/browser/hooks/useActiveNodeAddress.d.cts.map +1 -1
- package/dist/browser/hooks/useActiveNodeAddress.d.mts +1 -1
- package/dist/browser/hooks/useActiveNodeAddress.d.mts.map +1 -1
- package/dist/browser/hooks/useActiveNodeAddress.d.ts +1 -1
- package/dist/browser/hooks/useActiveNodeAddress.d.ts.map +1 -1
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.cts +16 -16
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.mts +16 -16
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.ts +16 -16
- 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 +16 -16
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.mts +16 -16
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.ts +16 -16
- package/dist/node/contexts/StandardRemoteNodes/State.d.cts +2 -1
- package/dist/node/contexts/StandardRemoteNodes/State.d.cts.map +1 -1
- package/dist/node/contexts/StandardRemoteNodes/State.d.mts +2 -1
- package/dist/node/contexts/StandardRemoteNodes/State.d.mts.map +1 -1
- package/dist/node/contexts/StandardRemoteNodes/State.d.ts +2 -1
- package/dist/node/contexts/StandardRemoteNodes/State.d.ts.map +1 -1
- package/dist/node/hooks/useActiveNodeAddress.d.cts +1 -1
- package/dist/node/hooks/useActiveNodeAddress.d.cts.map +1 -1
- package/dist/node/hooks/useActiveNodeAddress.d.mts +1 -1
- package/dist/node/hooks/useActiveNodeAddress.d.mts.map +1 -1
- package/dist/node/hooks/useActiveNodeAddress.d.ts +1 -1
- package/dist/node/hooks/useActiveNodeAddress.d.ts.map +1 -1
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.cts +16 -16
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.mts +16 -16
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.ts +16 -16
- 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 +16 -16
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.mts +16 -16
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.ts +16 -16
- package/package.json +21 -20
- package/src/contexts/StandardRemoteNodes/State.ts +2 -1
|
@@ -24,8 +24,8 @@ export declare class StorageArchivistBuilder {
|
|
|
24
24
|
schema: "network.xyo.node.config";
|
|
25
25
|
readonly security?: {
|
|
26
26
|
readonly allowAnonymous?: boolean | undefined;
|
|
27
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
28
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
27
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
28
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
29
29
|
} | undefined;
|
|
30
30
|
readonly sign?: boolean | undefined;
|
|
31
31
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -41,8 +41,8 @@ export declare class StorageArchivistBuilder {
|
|
|
41
41
|
schema: "network.xyo.node.config";
|
|
42
42
|
readonly security?: {
|
|
43
43
|
readonly allowAnonymous?: boolean | undefined;
|
|
44
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
45
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
44
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
45
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
46
46
|
} | undefined;
|
|
47
47
|
readonly sign?: boolean | undefined;
|
|
48
48
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -68,8 +68,8 @@ export declare class StorageArchivistBuilder {
|
|
|
68
68
|
schema: "network.xyo.archivist.storage.config";
|
|
69
69
|
readonly security?: {
|
|
70
70
|
readonly allowAnonymous?: boolean | undefined;
|
|
71
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
72
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
71
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
72
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
73
73
|
} | undefined;
|
|
74
74
|
readonly sign?: boolean | undefined;
|
|
75
75
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -85,8 +85,8 @@ export declare class StorageArchivistBuilder {
|
|
|
85
85
|
schema: "network.xyo.archivist.storage.config";
|
|
86
86
|
readonly security?: {
|
|
87
87
|
readonly allowAnonymous?: boolean | undefined;
|
|
88
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
89
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
88
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
89
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
90
90
|
} | undefined;
|
|
91
91
|
readonly sign?: boolean | undefined;
|
|
92
92
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -122,8 +122,8 @@ export declare class StorageArchivistBuilder {
|
|
|
122
122
|
schema: "network.xyo.archivist.storage.config";
|
|
123
123
|
readonly security?: {
|
|
124
124
|
readonly allowAnonymous?: boolean | undefined;
|
|
125
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
126
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
125
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
126
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
127
127
|
} | undefined;
|
|
128
128
|
readonly sign?: boolean | undefined;
|
|
129
129
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -139,8 +139,8 @@ export declare class StorageArchivistBuilder {
|
|
|
139
139
|
schema: "network.xyo.archivist.storage.config";
|
|
140
140
|
readonly security?: {
|
|
141
141
|
readonly allowAnonymous?: boolean | undefined;
|
|
142
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
143
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
142
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
143
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
144
144
|
} | undefined;
|
|
145
145
|
readonly sign?: boolean | undefined;
|
|
146
146
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -176,8 +176,8 @@ export declare class StorageArchivistBuilder {
|
|
|
176
176
|
schema: "network.xyo.archivist.config";
|
|
177
177
|
readonly security?: {
|
|
178
178
|
readonly allowAnonymous?: boolean | undefined;
|
|
179
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
180
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
179
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
180
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
181
181
|
} | undefined;
|
|
182
182
|
readonly sign?: boolean | undefined;
|
|
183
183
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -193,8 +193,8 @@ export declare class StorageArchivistBuilder {
|
|
|
193
193
|
schema: "network.xyo.archivist.config";
|
|
194
194
|
readonly security?: {
|
|
195
195
|
readonly allowAnonymous?: boolean | undefined;
|
|
196
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
197
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
196
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
197
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
198
198
|
} | undefined;
|
|
199
199
|
readonly sign?: boolean | undefined;
|
|
200
200
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -24,8 +24,8 @@ export declare class StorageArchivistBuilder {
|
|
|
24
24
|
schema: "network.xyo.node.config";
|
|
25
25
|
readonly security?: {
|
|
26
26
|
readonly allowAnonymous?: boolean | undefined;
|
|
27
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
28
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
27
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
28
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
29
29
|
} | undefined;
|
|
30
30
|
readonly sign?: boolean | undefined;
|
|
31
31
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -41,8 +41,8 @@ export declare class StorageArchivistBuilder {
|
|
|
41
41
|
schema: "network.xyo.node.config";
|
|
42
42
|
readonly security?: {
|
|
43
43
|
readonly allowAnonymous?: boolean | undefined;
|
|
44
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
45
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
44
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
45
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
46
46
|
} | undefined;
|
|
47
47
|
readonly sign?: boolean | undefined;
|
|
48
48
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -68,8 +68,8 @@ export declare class StorageArchivistBuilder {
|
|
|
68
68
|
schema: "network.xyo.archivist.storage.config";
|
|
69
69
|
readonly security?: {
|
|
70
70
|
readonly allowAnonymous?: boolean | undefined;
|
|
71
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
72
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
71
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
72
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
73
73
|
} | undefined;
|
|
74
74
|
readonly sign?: boolean | undefined;
|
|
75
75
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -85,8 +85,8 @@ export declare class StorageArchivistBuilder {
|
|
|
85
85
|
schema: "network.xyo.archivist.storage.config";
|
|
86
86
|
readonly security?: {
|
|
87
87
|
readonly allowAnonymous?: boolean | undefined;
|
|
88
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
89
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
88
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
89
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
90
90
|
} | undefined;
|
|
91
91
|
readonly sign?: boolean | undefined;
|
|
92
92
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -122,8 +122,8 @@ export declare class StorageArchivistBuilder {
|
|
|
122
122
|
schema: "network.xyo.archivist.storage.config";
|
|
123
123
|
readonly security?: {
|
|
124
124
|
readonly allowAnonymous?: boolean | undefined;
|
|
125
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
126
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
125
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
126
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
127
127
|
} | undefined;
|
|
128
128
|
readonly sign?: boolean | undefined;
|
|
129
129
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -139,8 +139,8 @@ export declare class StorageArchivistBuilder {
|
|
|
139
139
|
schema: "network.xyo.archivist.storage.config";
|
|
140
140
|
readonly security?: {
|
|
141
141
|
readonly allowAnonymous?: boolean | undefined;
|
|
142
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
143
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
142
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
143
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
144
144
|
} | undefined;
|
|
145
145
|
readonly sign?: boolean | undefined;
|
|
146
146
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -176,8 +176,8 @@ export declare class StorageArchivistBuilder {
|
|
|
176
176
|
schema: "network.xyo.archivist.config";
|
|
177
177
|
readonly security?: {
|
|
178
178
|
readonly allowAnonymous?: boolean | undefined;
|
|
179
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
180
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
179
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
180
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
181
181
|
} | undefined;
|
|
182
182
|
readonly sign?: boolean | undefined;
|
|
183
183
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -193,8 +193,8 @@ export declare class StorageArchivistBuilder {
|
|
|
193
193
|
schema: "network.xyo.archivist.config";
|
|
194
194
|
readonly security?: {
|
|
195
195
|
readonly allowAnonymous?: boolean | undefined;
|
|
196
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
197
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
196
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
197
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
198
198
|
} | undefined;
|
|
199
199
|
readonly sign?: boolean | undefined;
|
|
200
200
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -24,8 +24,8 @@ export declare class StorageArchivistBuilder {
|
|
|
24
24
|
schema: "network.xyo.node.config";
|
|
25
25
|
readonly security?: {
|
|
26
26
|
readonly allowAnonymous?: boolean | undefined;
|
|
27
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
28
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
27
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
28
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
29
29
|
} | undefined;
|
|
30
30
|
readonly sign?: boolean | undefined;
|
|
31
31
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -41,8 +41,8 @@ export declare class StorageArchivistBuilder {
|
|
|
41
41
|
schema: "network.xyo.node.config";
|
|
42
42
|
readonly security?: {
|
|
43
43
|
readonly allowAnonymous?: boolean | undefined;
|
|
44
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
45
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
44
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
45
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
46
46
|
} | undefined;
|
|
47
47
|
readonly sign?: boolean | undefined;
|
|
48
48
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -68,8 +68,8 @@ export declare class StorageArchivistBuilder {
|
|
|
68
68
|
schema: "network.xyo.archivist.storage.config";
|
|
69
69
|
readonly security?: {
|
|
70
70
|
readonly allowAnonymous?: boolean | undefined;
|
|
71
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
72
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
71
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
72
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
73
73
|
} | undefined;
|
|
74
74
|
readonly sign?: boolean | undefined;
|
|
75
75
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -85,8 +85,8 @@ export declare class StorageArchivistBuilder {
|
|
|
85
85
|
schema: "network.xyo.archivist.storage.config";
|
|
86
86
|
readonly security?: {
|
|
87
87
|
readonly allowAnonymous?: boolean | undefined;
|
|
88
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
89
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
88
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
89
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
90
90
|
} | undefined;
|
|
91
91
|
readonly sign?: boolean | undefined;
|
|
92
92
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -122,8 +122,8 @@ export declare class StorageArchivistBuilder {
|
|
|
122
122
|
schema: "network.xyo.archivist.storage.config";
|
|
123
123
|
readonly security?: {
|
|
124
124
|
readonly allowAnonymous?: boolean | undefined;
|
|
125
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
126
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
125
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
126
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
127
127
|
} | undefined;
|
|
128
128
|
readonly sign?: boolean | undefined;
|
|
129
129
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -139,8 +139,8 @@ export declare class StorageArchivistBuilder {
|
|
|
139
139
|
schema: "network.xyo.archivist.storage.config";
|
|
140
140
|
readonly security?: {
|
|
141
141
|
readonly allowAnonymous?: boolean | undefined;
|
|
142
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
143
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
142
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
143
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
144
144
|
} | undefined;
|
|
145
145
|
readonly sign?: boolean | undefined;
|
|
146
146
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -176,8 +176,8 @@ export declare class StorageArchivistBuilder {
|
|
|
176
176
|
schema: "network.xyo.archivist.config";
|
|
177
177
|
readonly security?: {
|
|
178
178
|
readonly allowAnonymous?: boolean | undefined;
|
|
179
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
180
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
179
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
180
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
181
181
|
} | undefined;
|
|
182
182
|
readonly sign?: boolean | undefined;
|
|
183
183
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -193,8 +193,8 @@ export declare class StorageArchivistBuilder {
|
|
|
193
193
|
schema: "network.xyo.archivist.config";
|
|
194
194
|
readonly security?: {
|
|
195
195
|
readonly allowAnonymous?: boolean | undefined;
|
|
196
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
197
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
196
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
197
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
198
198
|
} | undefined;
|
|
199
199
|
readonly sign?: boolean | undefined;
|
|
200
200
|
readonly storeQueries?: boolean | undefined;
|
package/package.json
CHANGED
|
@@ -10,28 +10,29 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-react-js/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xylabs/
|
|
14
|
-
"@xylabs/react-
|
|
15
|
-
"@xylabs/react-
|
|
16
|
-
"@
|
|
17
|
-
"@xyo-network/
|
|
18
|
-
"@xyo-network/
|
|
19
|
-
"@xyo-network/
|
|
20
|
-
"@xyo-network/
|
|
21
|
-
"@xyo-network/node-
|
|
22
|
-
"@xyo-network/
|
|
23
|
-
"@xyo-network/
|
|
24
|
-
"@xyo-network/react-
|
|
25
|
-
"@xyo-network/react-
|
|
26
|
-
"@xyo-network/react-
|
|
27
|
-
"@xyo-network/
|
|
28
|
-
"@xyo-network/
|
|
29
|
-
"@xyo-network/
|
|
13
|
+
"@xylabs/hex": "^3.0.1",
|
|
14
|
+
"@xylabs/react-async-effect": "^3.1.0",
|
|
15
|
+
"@xylabs/react-promise": "^3.1.0",
|
|
16
|
+
"@xylabs/react-shared": "^3.1.0",
|
|
17
|
+
"@xyo-network/account-model": "^2.91.0",
|
|
18
|
+
"@xyo-network/archivist": "^2.91.0",
|
|
19
|
+
"@xyo-network/http-bridge": "^2.91.0",
|
|
20
|
+
"@xyo-network/module-model": "^2.91.0",
|
|
21
|
+
"@xyo-network/node-memory": "^2.91.0",
|
|
22
|
+
"@xyo-network/node-model": "^2.91.0",
|
|
23
|
+
"@xyo-network/payloadset-plugin": "^2.91.0",
|
|
24
|
+
"@xyo-network/react-network": "~2.69.0",
|
|
25
|
+
"@xyo-network/react-node": "~2.69.0",
|
|
26
|
+
"@xyo-network/react-shared": "~2.69.0",
|
|
27
|
+
"@xyo-network/react-wallet": "~2.69.0",
|
|
28
|
+
"@xyo-network/sentinel": "^2.91.0",
|
|
29
|
+
"@xyo-network/wallet-model": "^2.91.0",
|
|
30
|
+
"@xyo-network/witness-model": "^2.91.0"
|
|
30
31
|
},
|
|
31
32
|
"devDependencies": {
|
|
32
33
|
"@storybook/react": "^7.6.16",
|
|
33
|
-
"@xylabs/ts-scripts-yarn3": "^3.
|
|
34
|
-
"@xylabs/tsconfig-react": "^3.
|
|
34
|
+
"@xylabs/ts-scripts-yarn3": "^3.4.1",
|
|
35
|
+
"@xylabs/tsconfig-react": "^3.4.1",
|
|
35
36
|
"typescript": "^5.3.3"
|
|
36
37
|
},
|
|
37
38
|
"peerDependencies": {
|
|
@@ -92,6 +93,6 @@
|
|
|
92
93
|
},
|
|
93
94
|
"sideEffects": false,
|
|
94
95
|
"types": "dist/browser/index.d.ts",
|
|
95
|
-
"version": "2.
|
|
96
|
+
"version": "2.69.0",
|
|
96
97
|
"type": "module"
|
|
97
98
|
}
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { Address } from '@xylabs/hex'
|
|
1
2
|
import { MemoryNode } from '@xyo-network/node-memory'
|
|
2
3
|
import { ContextExState } from '@xyo-network/react-shared'
|
|
3
4
|
|
|
4
5
|
export interface StandardNodesState extends ContextExState {
|
|
5
|
-
findAddressByName?: (name?: string) =>
|
|
6
|
+
findAddressByName?: (name?: string) => Address | undefined
|
|
6
7
|
nodes?: MemoryNode[]
|
|
7
8
|
}
|