@xyo-network/react-standard-node 2.68.3 → 2.69.1
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 +22 -21
- package/src/contexts/StandardRemoteNodes/State.ts +2 -1
|
@@ -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
|
export interface StandardNodesState extends ContextExState {
|
|
4
|
-
findAddressByName?: (name?: string) =>
|
|
5
|
+
findAddressByName?: (name?: string) => Address | undefined;
|
|
5
6
|
nodes?: MemoryNode[];
|
|
6
7
|
}
|
|
7
8
|
//# sourceMappingURL=State.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"State.d.ts","sourceRoot":"","sources":["../../../../src/contexts/StandardRemoteNodes/State.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AACrD,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAE1D,MAAM,WAAW,kBAAmB,SAAQ,cAAc;IACxD,iBAAiB,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,MAAM,KAAK,
|
|
1
|
+
{"version":3,"file":"State.d.ts","sourceRoot":"","sources":["../../../../src/contexts/StandardRemoteNodes/State.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAA;AACrC,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AACrD,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAE1D,MAAM,WAAW,kBAAmB,SAAQ,cAAc;IACxD,iBAAiB,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,MAAM,KAAK,OAAO,GAAG,SAAS,CAAA;IAC1D,KAAK,CAAC,EAAE,UAAU,EAAE,CAAA;CACrB"}
|
|
@@ -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
|
export interface StandardNodesState extends ContextExState {
|
|
4
|
-
findAddressByName?: (name?: string) =>
|
|
5
|
+
findAddressByName?: (name?: string) => Address | undefined;
|
|
5
6
|
nodes?: MemoryNode[];
|
|
6
7
|
}
|
|
7
8
|
//# sourceMappingURL=State.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"State.d.ts","sourceRoot":"","sources":["../../../../src/contexts/StandardRemoteNodes/State.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AACrD,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAE1D,MAAM,WAAW,kBAAmB,SAAQ,cAAc;IACxD,iBAAiB,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,MAAM,KAAK,
|
|
1
|
+
{"version":3,"file":"State.d.ts","sourceRoot":"","sources":["../../../../src/contexts/StandardRemoteNodes/State.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAA;AACrC,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AACrD,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAE1D,MAAM,WAAW,kBAAmB,SAAQ,cAAc;IACxD,iBAAiB,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,MAAM,KAAK,OAAO,GAAG,SAAS,CAAA;IAC1D,KAAK,CAAC,EAAE,UAAU,EAAE,CAAA;CACrB"}
|
|
@@ -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
|
export interface StandardNodesState extends ContextExState {
|
|
4
|
-
findAddressByName?: (name?: string) =>
|
|
5
|
+
findAddressByName?: (name?: string) => Address | undefined;
|
|
5
6
|
nodes?: MemoryNode[];
|
|
6
7
|
}
|
|
7
8
|
//# sourceMappingURL=State.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"State.d.ts","sourceRoot":"","sources":["../../../../src/contexts/StandardRemoteNodes/State.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AACrD,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAE1D,MAAM,WAAW,kBAAmB,SAAQ,cAAc;IACxD,iBAAiB,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,MAAM,KAAK,
|
|
1
|
+
{"version":3,"file":"State.d.ts","sourceRoot":"","sources":["../../../../src/contexts/StandardRemoteNodes/State.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAA;AACrC,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AACrD,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAE1D,MAAM,WAAW,kBAAmB,SAAQ,cAAc;IACxD,iBAAiB,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,MAAM,KAAK,OAAO,GAAG,SAAS,CAAA;IAC1D,KAAK,CAAC,EAAE,UAAU,EAAE,CAAA;CACrB"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const useActiveNodeAddress: (networkName?: string) => string | undefined;
|
|
1
|
+
export declare const useActiveNodeAddress: (networkName?: string) => Lowercase<string> | undefined;
|
|
2
2
|
//# sourceMappingURL=useActiveNodeAddress.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useActiveNodeAddress.d.ts","sourceRoot":"","sources":["../../../src/hooks/useActiveNodeAddress.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,oBAAoB,iBAAkB,MAAM,
|
|
1
|
+
{"version":3,"file":"useActiveNodeAddress.d.ts","sourceRoot":"","sources":["../../../src/hooks/useActiveNodeAddress.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,oBAAoB,iBAAkB,MAAM,kCAWxD,CAAA"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const useActiveNodeAddress: (networkName?: string) => string | undefined;
|
|
1
|
+
export declare const useActiveNodeAddress: (networkName?: string) => Lowercase<string> | undefined;
|
|
2
2
|
//# sourceMappingURL=useActiveNodeAddress.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useActiveNodeAddress.d.ts","sourceRoot":"","sources":["../../../src/hooks/useActiveNodeAddress.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,oBAAoB,iBAAkB,MAAM,
|
|
1
|
+
{"version":3,"file":"useActiveNodeAddress.d.ts","sourceRoot":"","sources":["../../../src/hooks/useActiveNodeAddress.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,oBAAoB,iBAAkB,MAAM,kCAWxD,CAAA"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const useActiveNodeAddress: (networkName?: string) => string | undefined;
|
|
1
|
+
export declare const useActiveNodeAddress: (networkName?: string) => Lowercase<string> | undefined;
|
|
2
2
|
//# sourceMappingURL=useActiveNodeAddress.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useActiveNodeAddress.d.ts","sourceRoot":"","sources":["../../../src/hooks/useActiveNodeAddress.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,oBAAoB,iBAAkB,MAAM,
|
|
1
|
+
{"version":3,"file":"useActiveNodeAddress.d.ts","sourceRoot":"","sources":["../../../src/hooks/useActiveNodeAddress.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,oBAAoB,iBAAkB,MAAM,kCAWxD,CAAA"}
|
|
@@ -23,8 +23,8 @@ export declare class MemoryNodeBuilder {
|
|
|
23
23
|
schema: "network.xyo.node.config";
|
|
24
24
|
readonly security?: {
|
|
25
25
|
readonly allowAnonymous?: boolean | undefined;
|
|
26
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
27
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
26
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
27
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
28
28
|
} | undefined;
|
|
29
29
|
readonly sign?: boolean | undefined;
|
|
30
30
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -40,8 +40,8 @@ export declare class MemoryNodeBuilder {
|
|
|
40
40
|
schema: "network.xyo.node.config";
|
|
41
41
|
readonly security?: {
|
|
42
42
|
readonly allowAnonymous?: boolean | undefined;
|
|
43
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
44
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
43
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
44
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
45
45
|
} | undefined;
|
|
46
46
|
readonly sign?: boolean | undefined;
|
|
47
47
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -73,8 +73,8 @@ export declare class MemoryNodeBuilder {
|
|
|
73
73
|
schema: "network.xyo.sentinel.config";
|
|
74
74
|
readonly security?: {
|
|
75
75
|
readonly allowAnonymous?: boolean | undefined;
|
|
76
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
77
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
76
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
77
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
78
78
|
} | undefined;
|
|
79
79
|
readonly sign?: boolean | undefined;
|
|
80
80
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -90,8 +90,8 @@ export declare class MemoryNodeBuilder {
|
|
|
90
90
|
schema: "network.xyo.sentinel.config";
|
|
91
91
|
readonly security?: {
|
|
92
92
|
readonly allowAnonymous?: boolean | undefined;
|
|
93
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
94
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
93
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
94
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
95
95
|
} | undefined;
|
|
96
96
|
readonly sign?: boolean | undefined;
|
|
97
97
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -119,8 +119,8 @@ export declare class MemoryNodeBuilder {
|
|
|
119
119
|
schema: "network.xyo.sentinel.config";
|
|
120
120
|
readonly security?: {
|
|
121
121
|
readonly allowAnonymous?: boolean | undefined;
|
|
122
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
123
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
122
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
123
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
124
124
|
} | undefined;
|
|
125
125
|
readonly sign?: boolean | undefined;
|
|
126
126
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -136,8 +136,8 @@ export declare class MemoryNodeBuilder {
|
|
|
136
136
|
schema: "network.xyo.sentinel.config";
|
|
137
137
|
readonly security?: {
|
|
138
138
|
readonly allowAnonymous?: boolean | undefined;
|
|
139
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
140
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
139
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
140
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
141
141
|
} | undefined;
|
|
142
142
|
readonly sign?: boolean | undefined;
|
|
143
143
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -165,8 +165,8 @@ export declare class MemoryNodeBuilder {
|
|
|
165
165
|
schema: "network.xyo.module.config";
|
|
166
166
|
readonly security?: {
|
|
167
167
|
readonly allowAnonymous?: boolean | undefined;
|
|
168
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
169
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
168
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
169
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
170
170
|
} | undefined;
|
|
171
171
|
readonly sign?: boolean | undefined;
|
|
172
172
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -182,8 +182,8 @@ export declare class MemoryNodeBuilder {
|
|
|
182
182
|
schema: "network.xyo.module.config";
|
|
183
183
|
readonly security?: {
|
|
184
184
|
readonly allowAnonymous?: boolean | undefined;
|
|
185
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
186
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
185
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
186
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
187
187
|
} | undefined;
|
|
188
188
|
readonly sign?: boolean | undefined;
|
|
189
189
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -23,8 +23,8 @@ export declare class MemoryNodeBuilder {
|
|
|
23
23
|
schema: "network.xyo.node.config";
|
|
24
24
|
readonly security?: {
|
|
25
25
|
readonly allowAnonymous?: boolean | undefined;
|
|
26
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
27
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
26
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
27
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
28
28
|
} | undefined;
|
|
29
29
|
readonly sign?: boolean | undefined;
|
|
30
30
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -40,8 +40,8 @@ export declare class MemoryNodeBuilder {
|
|
|
40
40
|
schema: "network.xyo.node.config";
|
|
41
41
|
readonly security?: {
|
|
42
42
|
readonly allowAnonymous?: boolean | undefined;
|
|
43
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
44
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
43
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
44
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
45
45
|
} | undefined;
|
|
46
46
|
readonly sign?: boolean | undefined;
|
|
47
47
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -73,8 +73,8 @@ export declare class MemoryNodeBuilder {
|
|
|
73
73
|
schema: "network.xyo.sentinel.config";
|
|
74
74
|
readonly security?: {
|
|
75
75
|
readonly allowAnonymous?: boolean | undefined;
|
|
76
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
77
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
76
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
77
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
78
78
|
} | undefined;
|
|
79
79
|
readonly sign?: boolean | undefined;
|
|
80
80
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -90,8 +90,8 @@ export declare class MemoryNodeBuilder {
|
|
|
90
90
|
schema: "network.xyo.sentinel.config";
|
|
91
91
|
readonly security?: {
|
|
92
92
|
readonly allowAnonymous?: boolean | undefined;
|
|
93
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
94
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
93
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
94
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
95
95
|
} | undefined;
|
|
96
96
|
readonly sign?: boolean | undefined;
|
|
97
97
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -119,8 +119,8 @@ export declare class MemoryNodeBuilder {
|
|
|
119
119
|
schema: "network.xyo.sentinel.config";
|
|
120
120
|
readonly security?: {
|
|
121
121
|
readonly allowAnonymous?: boolean | undefined;
|
|
122
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
123
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
122
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
123
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
124
124
|
} | undefined;
|
|
125
125
|
readonly sign?: boolean | undefined;
|
|
126
126
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -136,8 +136,8 @@ export declare class MemoryNodeBuilder {
|
|
|
136
136
|
schema: "network.xyo.sentinel.config";
|
|
137
137
|
readonly security?: {
|
|
138
138
|
readonly allowAnonymous?: boolean | undefined;
|
|
139
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
140
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
139
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
140
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
141
141
|
} | undefined;
|
|
142
142
|
readonly sign?: boolean | undefined;
|
|
143
143
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -165,8 +165,8 @@ export declare class MemoryNodeBuilder {
|
|
|
165
165
|
schema: "network.xyo.module.config";
|
|
166
166
|
readonly security?: {
|
|
167
167
|
readonly allowAnonymous?: boolean | undefined;
|
|
168
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
169
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
168
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
169
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
170
170
|
} | undefined;
|
|
171
171
|
readonly sign?: boolean | undefined;
|
|
172
172
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -182,8 +182,8 @@ export declare class MemoryNodeBuilder {
|
|
|
182
182
|
schema: "network.xyo.module.config";
|
|
183
183
|
readonly security?: {
|
|
184
184
|
readonly allowAnonymous?: boolean | undefined;
|
|
185
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
186
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
185
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
186
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
187
187
|
} | undefined;
|
|
188
188
|
readonly sign?: boolean | undefined;
|
|
189
189
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -23,8 +23,8 @@ export declare class MemoryNodeBuilder {
|
|
|
23
23
|
schema: "network.xyo.node.config";
|
|
24
24
|
readonly security?: {
|
|
25
25
|
readonly allowAnonymous?: boolean | undefined;
|
|
26
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
27
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
26
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
27
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
28
28
|
} | undefined;
|
|
29
29
|
readonly sign?: boolean | undefined;
|
|
30
30
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -40,8 +40,8 @@ export declare class MemoryNodeBuilder {
|
|
|
40
40
|
schema: "network.xyo.node.config";
|
|
41
41
|
readonly security?: {
|
|
42
42
|
readonly allowAnonymous?: boolean | undefined;
|
|
43
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
44
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
43
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
44
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
45
45
|
} | undefined;
|
|
46
46
|
readonly sign?: boolean | undefined;
|
|
47
47
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -73,8 +73,8 @@ export declare class MemoryNodeBuilder {
|
|
|
73
73
|
schema: "network.xyo.sentinel.config";
|
|
74
74
|
readonly security?: {
|
|
75
75
|
readonly allowAnonymous?: boolean | undefined;
|
|
76
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
77
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
76
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
77
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
78
78
|
} | undefined;
|
|
79
79
|
readonly sign?: boolean | undefined;
|
|
80
80
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -90,8 +90,8 @@ export declare class MemoryNodeBuilder {
|
|
|
90
90
|
schema: "network.xyo.sentinel.config";
|
|
91
91
|
readonly security?: {
|
|
92
92
|
readonly allowAnonymous?: boolean | undefined;
|
|
93
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
94
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
93
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
94
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
95
95
|
} | undefined;
|
|
96
96
|
readonly sign?: boolean | undefined;
|
|
97
97
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -119,8 +119,8 @@ export declare class MemoryNodeBuilder {
|
|
|
119
119
|
schema: "network.xyo.sentinel.config";
|
|
120
120
|
readonly security?: {
|
|
121
121
|
readonly allowAnonymous?: boolean | undefined;
|
|
122
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
123
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
122
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
123
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
124
124
|
} | undefined;
|
|
125
125
|
readonly sign?: boolean | undefined;
|
|
126
126
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -136,8 +136,8 @@ export declare class MemoryNodeBuilder {
|
|
|
136
136
|
schema: "network.xyo.sentinel.config";
|
|
137
137
|
readonly security?: {
|
|
138
138
|
readonly allowAnonymous?: boolean | undefined;
|
|
139
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
140
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
139
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
140
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
141
141
|
} | undefined;
|
|
142
142
|
readonly sign?: boolean | undefined;
|
|
143
143
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -165,8 +165,8 @@ export declare class MemoryNodeBuilder {
|
|
|
165
165
|
schema: "network.xyo.module.config";
|
|
166
166
|
readonly security?: {
|
|
167
167
|
readonly allowAnonymous?: boolean | undefined;
|
|
168
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
169
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
168
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
169
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
170
170
|
} | undefined;
|
|
171
171
|
readonly sign?: boolean | undefined;
|
|
172
172
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -182,8 +182,8 @@ export declare class MemoryNodeBuilder {
|
|
|
182
182
|
schema: "network.xyo.module.config";
|
|
183
183
|
readonly security?: {
|
|
184
184
|
readonly allowAnonymous?: boolean | undefined;
|
|
185
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
186
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
185
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
186
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
187
187
|
} | undefined;
|
|
188
188
|
readonly sign?: boolean | undefined;
|
|
189
189
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -18,8 +18,8 @@ export declare class SentinelBuilder {
|
|
|
18
18
|
schema: "network.xyo.sentinel.config";
|
|
19
19
|
readonly security?: {
|
|
20
20
|
readonly allowAnonymous?: boolean | undefined;
|
|
21
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
22
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
21
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
22
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
23
23
|
} | undefined;
|
|
24
24
|
readonly sign?: boolean | undefined;
|
|
25
25
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -35,8 +35,8 @@ export declare class SentinelBuilder {
|
|
|
35
35
|
schema: "network.xyo.sentinel.config";
|
|
36
36
|
readonly security?: {
|
|
37
37
|
readonly allowAnonymous?: boolean | undefined;
|
|
38
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
39
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
38
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
39
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
40
40
|
} | undefined;
|
|
41
41
|
readonly sign?: boolean | undefined;
|
|
42
42
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -64,8 +64,8 @@ export declare class SentinelBuilder {
|
|
|
64
64
|
schema: "network.xyo.sentinel.config";
|
|
65
65
|
readonly security?: {
|
|
66
66
|
readonly allowAnonymous?: boolean | undefined;
|
|
67
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
68
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
67
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
68
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
69
69
|
} | undefined;
|
|
70
70
|
readonly sign?: boolean | undefined;
|
|
71
71
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -81,8 +81,8 @@ export declare class SentinelBuilder {
|
|
|
81
81
|
schema: "network.xyo.sentinel.config";
|
|
82
82
|
readonly security?: {
|
|
83
83
|
readonly allowAnonymous?: boolean | undefined;
|
|
84
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
85
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
84
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
85
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
86
86
|
} | undefined;
|
|
87
87
|
readonly sign?: boolean | undefined;
|
|
88
88
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -110,8 +110,8 @@ export declare class SentinelBuilder {
|
|
|
110
110
|
schema: "network.xyo.module.config";
|
|
111
111
|
readonly security?: {
|
|
112
112
|
readonly allowAnonymous?: boolean | undefined;
|
|
113
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
114
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
113
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
114
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
115
115
|
} | undefined;
|
|
116
116
|
readonly sign?: boolean | undefined;
|
|
117
117
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -127,8 +127,8 @@ export declare class SentinelBuilder {
|
|
|
127
127
|
schema: "network.xyo.module.config";
|
|
128
128
|
readonly security?: {
|
|
129
129
|
readonly allowAnonymous?: boolean | undefined;
|
|
130
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
131
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
130
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
131
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
132
132
|
} | undefined;
|
|
133
133
|
readonly sign?: boolean | undefined;
|
|
134
134
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -152,8 +152,8 @@ export declare class SentinelBuilder {
|
|
|
152
152
|
schema: "network.xyo.sentinel.config";
|
|
153
153
|
readonly security?: {
|
|
154
154
|
readonly allowAnonymous?: boolean | undefined;
|
|
155
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
156
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
155
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
156
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
157
157
|
} | undefined;
|
|
158
158
|
readonly sign?: boolean | undefined;
|
|
159
159
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -169,8 +169,8 @@ export declare class SentinelBuilder {
|
|
|
169
169
|
schema: "network.xyo.sentinel.config";
|
|
170
170
|
readonly security?: {
|
|
171
171
|
readonly allowAnonymous?: boolean | undefined;
|
|
172
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
173
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
172
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
173
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
174
174
|
} | undefined;
|
|
175
175
|
readonly sign?: boolean | undefined;
|
|
176
176
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -198,8 +198,8 @@ export declare class SentinelBuilder {
|
|
|
198
198
|
schema: "network.xyo.sentinel.config";
|
|
199
199
|
readonly security?: {
|
|
200
200
|
readonly allowAnonymous?: boolean | undefined;
|
|
201
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
202
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
201
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
202
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
203
203
|
} | undefined;
|
|
204
204
|
readonly sign?: boolean | undefined;
|
|
205
205
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -215,8 +215,8 @@ export declare class SentinelBuilder {
|
|
|
215
215
|
schema: "network.xyo.sentinel.config";
|
|
216
216
|
readonly security?: {
|
|
217
217
|
readonly allowAnonymous?: boolean | undefined;
|
|
218
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
219
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
218
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
219
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
220
220
|
} | undefined;
|
|
221
221
|
readonly sign?: boolean | undefined;
|
|
222
222
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -244,8 +244,8 @@ export declare class SentinelBuilder {
|
|
|
244
244
|
schema: "network.xyo.module.config";
|
|
245
245
|
readonly security?: {
|
|
246
246
|
readonly allowAnonymous?: boolean | undefined;
|
|
247
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
248
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
247
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
248
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
249
249
|
} | undefined;
|
|
250
250
|
readonly sign?: boolean | undefined;
|
|
251
251
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -261,8 +261,8 @@ export declare class SentinelBuilder {
|
|
|
261
261
|
schema: "network.xyo.module.config";
|
|
262
262
|
readonly security?: {
|
|
263
263
|
readonly allowAnonymous?: boolean | undefined;
|
|
264
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
265
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
264
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
265
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
266
266
|
} | undefined;
|
|
267
267
|
readonly sign?: boolean | undefined;
|
|
268
268
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -18,8 +18,8 @@ export declare class SentinelBuilder {
|
|
|
18
18
|
schema: "network.xyo.sentinel.config";
|
|
19
19
|
readonly security?: {
|
|
20
20
|
readonly allowAnonymous?: boolean | undefined;
|
|
21
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
22
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
21
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
22
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
23
23
|
} | undefined;
|
|
24
24
|
readonly sign?: boolean | undefined;
|
|
25
25
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -35,8 +35,8 @@ export declare class SentinelBuilder {
|
|
|
35
35
|
schema: "network.xyo.sentinel.config";
|
|
36
36
|
readonly security?: {
|
|
37
37
|
readonly allowAnonymous?: boolean | undefined;
|
|
38
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
39
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
38
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
39
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
40
40
|
} | undefined;
|
|
41
41
|
readonly sign?: boolean | undefined;
|
|
42
42
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -64,8 +64,8 @@ export declare class SentinelBuilder {
|
|
|
64
64
|
schema: "network.xyo.sentinel.config";
|
|
65
65
|
readonly security?: {
|
|
66
66
|
readonly allowAnonymous?: boolean | undefined;
|
|
67
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
68
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
67
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
68
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
69
69
|
} | undefined;
|
|
70
70
|
readonly sign?: boolean | undefined;
|
|
71
71
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -81,8 +81,8 @@ export declare class SentinelBuilder {
|
|
|
81
81
|
schema: "network.xyo.sentinel.config";
|
|
82
82
|
readonly security?: {
|
|
83
83
|
readonly allowAnonymous?: boolean | undefined;
|
|
84
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
85
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
84
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
85
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
86
86
|
} | undefined;
|
|
87
87
|
readonly sign?: boolean | undefined;
|
|
88
88
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -110,8 +110,8 @@ export declare class SentinelBuilder {
|
|
|
110
110
|
schema: "network.xyo.module.config";
|
|
111
111
|
readonly security?: {
|
|
112
112
|
readonly allowAnonymous?: boolean | undefined;
|
|
113
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
114
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
113
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
114
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
115
115
|
} | undefined;
|
|
116
116
|
readonly sign?: boolean | undefined;
|
|
117
117
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -127,8 +127,8 @@ export declare class SentinelBuilder {
|
|
|
127
127
|
schema: "network.xyo.module.config";
|
|
128
128
|
readonly security?: {
|
|
129
129
|
readonly allowAnonymous?: boolean | undefined;
|
|
130
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
131
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
130
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
131
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
132
132
|
} | undefined;
|
|
133
133
|
readonly sign?: boolean | undefined;
|
|
134
134
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -152,8 +152,8 @@ export declare class SentinelBuilder {
|
|
|
152
152
|
schema: "network.xyo.sentinel.config";
|
|
153
153
|
readonly security?: {
|
|
154
154
|
readonly allowAnonymous?: boolean | undefined;
|
|
155
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
156
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
155
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
156
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
157
157
|
} | undefined;
|
|
158
158
|
readonly sign?: boolean | undefined;
|
|
159
159
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -169,8 +169,8 @@ export declare class SentinelBuilder {
|
|
|
169
169
|
schema: "network.xyo.sentinel.config";
|
|
170
170
|
readonly security?: {
|
|
171
171
|
readonly allowAnonymous?: boolean | undefined;
|
|
172
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
173
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
172
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
173
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
174
174
|
} | undefined;
|
|
175
175
|
readonly sign?: boolean | undefined;
|
|
176
176
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -198,8 +198,8 @@ export declare class SentinelBuilder {
|
|
|
198
198
|
schema: "network.xyo.sentinel.config";
|
|
199
199
|
readonly security?: {
|
|
200
200
|
readonly allowAnonymous?: boolean | undefined;
|
|
201
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
202
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
201
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
202
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
203
203
|
} | undefined;
|
|
204
204
|
readonly sign?: boolean | undefined;
|
|
205
205
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -215,8 +215,8 @@ export declare class SentinelBuilder {
|
|
|
215
215
|
schema: "network.xyo.sentinel.config";
|
|
216
216
|
readonly security?: {
|
|
217
217
|
readonly allowAnonymous?: boolean | undefined;
|
|
218
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
219
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
218
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
219
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
220
220
|
} | undefined;
|
|
221
221
|
readonly sign?: boolean | undefined;
|
|
222
222
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -244,8 +244,8 @@ export declare class SentinelBuilder {
|
|
|
244
244
|
schema: "network.xyo.module.config";
|
|
245
245
|
readonly security?: {
|
|
246
246
|
readonly allowAnonymous?: boolean | undefined;
|
|
247
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
248
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
247
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
248
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
249
249
|
} | undefined;
|
|
250
250
|
readonly sign?: boolean | undefined;
|
|
251
251
|
readonly storeQueries?: boolean | undefined;
|
|
@@ -261,8 +261,8 @@ export declare class SentinelBuilder {
|
|
|
261
261
|
schema: "network.xyo.module.config";
|
|
262
262
|
readonly security?: {
|
|
263
263
|
readonly allowAnonymous?: boolean | undefined;
|
|
264
|
-
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
265
|
-
readonly disallowed?: Record<string, string[]> | undefined;
|
|
264
|
+
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
265
|
+
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
266
266
|
} | undefined;
|
|
267
267
|
readonly sign?: boolean | undefined;
|
|
268
268
|
readonly storeQueries?: boolean | undefined;
|