@xyo-network/diviner-stateful 2.84.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/LICENSE +165 -0
- package/README.md +13 -0
- package/dist/browser/Config.d.cts +21 -0
- package/dist/browser/Config.d.cts.map +1 -0
- package/dist/browser/Config.d.mts +21 -0
- package/dist/browser/Config.d.mts.map +1 -0
- package/dist/browser/Config.d.ts +21 -0
- package/dist/browser/Config.d.ts.map +1 -0
- package/dist/browser/Diviner.d.cts +49 -0
- package/dist/browser/Diviner.d.cts.map +1 -0
- package/dist/browser/Diviner.d.mts +49 -0
- package/dist/browser/Diviner.d.mts.map +1 -0
- package/dist/browser/Diviner.d.ts +49 -0
- package/dist/browser/Diviner.d.ts.map +1 -0
- package/dist/browser/DivinerMixin.d.cts +3758 -0
- package/dist/browser/DivinerMixin.d.cts.map +1 -0
- package/dist/browser/DivinerMixin.d.mts +3758 -0
- package/dist/browser/DivinerMixin.d.mts.map +1 -0
- package/dist/browser/DivinerMixin.d.ts +3758 -0
- package/dist/browser/DivinerMixin.d.ts.map +1 -0
- package/dist/browser/Params.d.cts +8 -0
- package/dist/browser/Params.d.cts.map +1 -0
- package/dist/browser/Params.d.mts +8 -0
- package/dist/browser/Params.d.mts.map +1 -0
- package/dist/browser/Params.d.ts +8 -0
- package/dist/browser/Params.d.ts.map +1 -0
- package/dist/browser/Schema.d.cts +3 -0
- package/dist/browser/Schema.d.cts.map +1 -0
- package/dist/browser/Schema.d.mts +3 -0
- package/dist/browser/Schema.d.mts.map +1 -0
- package/dist/browser/Schema.d.ts +3 -0
- package/dist/browser/Schema.d.ts.map +1 -0
- package/dist/browser/index.cjs +238 -0
- package/dist/browser/index.cjs.map +1 -0
- package/dist/browser/index.d.cts +6 -0
- package/dist/browser/index.d.cts.map +1 -0
- package/dist/browser/index.d.mts +6 -0
- package/dist/browser/index.d.mts.map +1 -0
- package/dist/browser/index.d.ts +6 -0
- package/dist/browser/index.d.ts.map +1 -0
- package/dist/browser/index.js +218 -0
- package/dist/browser/index.js.map +1 -0
- package/dist/node/Config.d.cts +21 -0
- package/dist/node/Config.d.cts.map +1 -0
- package/dist/node/Config.d.mts +21 -0
- package/dist/node/Config.d.mts.map +1 -0
- package/dist/node/Config.d.ts +21 -0
- package/dist/node/Config.d.ts.map +1 -0
- package/dist/node/Diviner.d.cts +49 -0
- package/dist/node/Diviner.d.cts.map +1 -0
- package/dist/node/Diviner.d.mts +49 -0
- package/dist/node/Diviner.d.mts.map +1 -0
- package/dist/node/Diviner.d.ts +49 -0
- package/dist/node/Diviner.d.ts.map +1 -0
- package/dist/node/DivinerMixin.d.cts +3758 -0
- package/dist/node/DivinerMixin.d.cts.map +1 -0
- package/dist/node/DivinerMixin.d.mts +3758 -0
- package/dist/node/DivinerMixin.d.mts.map +1 -0
- package/dist/node/DivinerMixin.d.ts +3758 -0
- package/dist/node/DivinerMixin.d.ts.map +1 -0
- package/dist/node/Params.d.cts +8 -0
- package/dist/node/Params.d.cts.map +1 -0
- package/dist/node/Params.d.mts +8 -0
- package/dist/node/Params.d.mts.map +1 -0
- package/dist/node/Params.d.ts +8 -0
- package/dist/node/Params.d.ts.map +1 -0
- package/dist/node/Schema.d.cts +3 -0
- package/dist/node/Schema.d.cts.map +1 -0
- package/dist/node/Schema.d.mts +3 -0
- package/dist/node/Schema.d.mts.map +1 -0
- package/dist/node/Schema.d.ts +3 -0
- package/dist/node/Schema.d.ts.map +1 -0
- package/dist/node/index.d.cts +6 -0
- package/dist/node/index.d.cts.map +1 -0
- package/dist/node/index.d.mts +6 -0
- package/dist/node/index.d.mts.map +1 -0
- package/dist/node/index.d.ts +6 -0
- package/dist/node/index.d.ts.map +1 -0
- package/dist/node/index.js +259 -0
- package/dist/node/index.js.map +1 -0
- package/dist/node/index.mjs +232 -0
- package/dist/node/index.mjs.map +1 -0
- package/package.json +78 -0
- package/src/Config.ts +24 -0
- package/src/Diviner.ts +127 -0
- package/src/DivinerMixin.ts +144 -0
- package/src/Params.ts +9 -0
- package/src/Schema.ts +2 -0
- package/src/index.ts +5 -0
- package/src/spec/TestManifest.json +51 -0
- package/typedoc.json +5 -0
|
@@ -0,0 +1,3758 @@
|
|
|
1
|
+
import { AnyConfigSchema, ModuleInstance, ModuleParams, ModuleState, StateDictionary } from '@xyo-network/module-model';
|
|
2
|
+
import { StatefulDivinerConfig } from './Config';
|
|
3
|
+
export type StatefulModuleParams = ModuleParams<AnyConfigSchema<StatefulDivinerConfig>>;
|
|
4
|
+
export type AnyModule<TParams extends StatefulModuleParams = StatefulModuleParams> = new (...args: any[]) => ModuleInstance<TParams>;
|
|
5
|
+
/**
|
|
6
|
+
* @ignore Inherit from StatefulDiviner instead
|
|
7
|
+
* @param ModuleBase
|
|
8
|
+
* @returns
|
|
9
|
+
*/
|
|
10
|
+
export declare const StatefulModuleMixin: <TParams extends import("@xyo-network/object").BaseParamsFields & {
|
|
11
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
12
|
+
config: (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
13
|
+
accountDerivationPath?: string | undefined;
|
|
14
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
15
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
16
|
+
readonly name?: string | undefined;
|
|
17
|
+
readonly paging?: Record<string, {
|
|
18
|
+
size?: number | undefined;
|
|
19
|
+
}> | undefined;
|
|
20
|
+
readonly security?: {
|
|
21
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
22
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
23
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
24
|
+
} | undefined;
|
|
25
|
+
readonly sign?: boolean | undefined;
|
|
26
|
+
readonly storeQueries?: boolean | undefined;
|
|
27
|
+
readonly timestamp?: boolean | undefined;
|
|
28
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
29
|
+
schema: string;
|
|
30
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
31
|
+
accountDerivationPath?: string | undefined;
|
|
32
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
33
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
34
|
+
readonly name?: string | undefined;
|
|
35
|
+
readonly paging?: Record<string, {
|
|
36
|
+
size?: number | undefined;
|
|
37
|
+
}> | undefined;
|
|
38
|
+
readonly security?: {
|
|
39
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
40
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
41
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
42
|
+
} | undefined;
|
|
43
|
+
readonly sign?: boolean | undefined;
|
|
44
|
+
readonly storeQueries?: boolean | undefined;
|
|
45
|
+
readonly timestamp?: boolean | undefined;
|
|
46
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
47
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
48
|
+
} & Omit<{
|
|
49
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
50
|
+
stateStore: {
|
|
51
|
+
archivist: string;
|
|
52
|
+
boundWitnessDiviner: string;
|
|
53
|
+
payloadDiviner: string;
|
|
54
|
+
};
|
|
55
|
+
}, "schema">, "schema"> & {
|
|
56
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
57
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
58
|
+
accountDerivationPath?: string | undefined;
|
|
59
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
60
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
61
|
+
readonly name?: string | undefined;
|
|
62
|
+
readonly paging?: Record<string, {
|
|
63
|
+
size?: number | undefined;
|
|
64
|
+
}> | undefined;
|
|
65
|
+
readonly security?: {
|
|
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;
|
|
69
|
+
} | undefined;
|
|
70
|
+
readonly sign?: boolean | undefined;
|
|
71
|
+
readonly storeQueries?: boolean | undefined;
|
|
72
|
+
readonly timestamp?: boolean | undefined;
|
|
73
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
74
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
75
|
+
} & Omit<{
|
|
76
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
77
|
+
stateStore: {
|
|
78
|
+
archivist: string;
|
|
79
|
+
boundWitnessDiviner: string;
|
|
80
|
+
payloadDiviner: string;
|
|
81
|
+
};
|
|
82
|
+
}, "schema">, "schema"> & {
|
|
83
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
84
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
85
|
+
accountDerivationPath?: string | undefined;
|
|
86
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
87
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
88
|
+
readonly name?: string | undefined;
|
|
89
|
+
readonly paging?: Record<string, {
|
|
90
|
+
size?: number | undefined;
|
|
91
|
+
}> | undefined;
|
|
92
|
+
readonly security?: {
|
|
93
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
94
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
95
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
96
|
+
} | undefined;
|
|
97
|
+
readonly sign?: boolean | undefined;
|
|
98
|
+
readonly storeQueries?: boolean | undefined;
|
|
99
|
+
readonly timestamp?: boolean | undefined;
|
|
100
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
101
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
102
|
+
} & Omit<{
|
|
103
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
104
|
+
stateStore: {
|
|
105
|
+
archivist: string;
|
|
106
|
+
boundWitnessDiviner: string;
|
|
107
|
+
payloadDiviner: string;
|
|
108
|
+
};
|
|
109
|
+
}, "schema">, "schema"> & {
|
|
110
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
111
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
112
|
+
accountDerivationPath?: string | undefined;
|
|
113
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
114
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
115
|
+
readonly name?: string | undefined;
|
|
116
|
+
readonly paging?: Record<string, {
|
|
117
|
+
size?: number | undefined;
|
|
118
|
+
}> | undefined;
|
|
119
|
+
readonly security?: {
|
|
120
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
121
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
122
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
123
|
+
} | undefined;
|
|
124
|
+
readonly sign?: boolean | undefined;
|
|
125
|
+
readonly storeQueries?: boolean | undefined;
|
|
126
|
+
readonly timestamp?: boolean | undefined;
|
|
127
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
128
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
129
|
+
} & Omit<{
|
|
130
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
131
|
+
stateStore: {
|
|
132
|
+
archivist: string;
|
|
133
|
+
boundWitnessDiviner: string;
|
|
134
|
+
payloadDiviner: string;
|
|
135
|
+
};
|
|
136
|
+
}, "schema">, "schema"> & {
|
|
137
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
138
|
+
}), "schema">, "schema"> & {
|
|
139
|
+
schema: string;
|
|
140
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
141
|
+
accountDerivationPath?: string | undefined;
|
|
142
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
143
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
144
|
+
readonly name?: string | undefined;
|
|
145
|
+
readonly paging?: Record<string, {
|
|
146
|
+
size?: number | undefined;
|
|
147
|
+
}> | undefined;
|
|
148
|
+
readonly security?: {
|
|
149
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
150
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
151
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
152
|
+
} | undefined;
|
|
153
|
+
readonly sign?: boolean | undefined;
|
|
154
|
+
readonly storeQueries?: boolean | undefined;
|
|
155
|
+
readonly timestamp?: boolean | undefined;
|
|
156
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
157
|
+
schema: string;
|
|
158
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
159
|
+
accountDerivationPath?: string | undefined;
|
|
160
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
161
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
162
|
+
readonly name?: string | undefined;
|
|
163
|
+
readonly paging?: Record<string, {
|
|
164
|
+
size?: number | undefined;
|
|
165
|
+
}> | undefined;
|
|
166
|
+
readonly security?: {
|
|
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;
|
|
170
|
+
} | undefined;
|
|
171
|
+
readonly sign?: boolean | undefined;
|
|
172
|
+
readonly storeQueries?: boolean | undefined;
|
|
173
|
+
readonly timestamp?: boolean | undefined;
|
|
174
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
175
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
176
|
+
} & Omit<{
|
|
177
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
178
|
+
stateStore: {
|
|
179
|
+
archivist: string;
|
|
180
|
+
boundWitnessDiviner: string;
|
|
181
|
+
payloadDiviner: string;
|
|
182
|
+
};
|
|
183
|
+
}, "schema">, "schema"> & {
|
|
184
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
185
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
186
|
+
accountDerivationPath?: string | undefined;
|
|
187
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
188
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
189
|
+
readonly name?: string | undefined;
|
|
190
|
+
readonly paging?: Record<string, {
|
|
191
|
+
size?: number | undefined;
|
|
192
|
+
}> | undefined;
|
|
193
|
+
readonly security?: {
|
|
194
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
195
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
196
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
197
|
+
} | undefined;
|
|
198
|
+
readonly sign?: boolean | undefined;
|
|
199
|
+
readonly storeQueries?: boolean | undefined;
|
|
200
|
+
readonly timestamp?: boolean | undefined;
|
|
201
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
202
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
203
|
+
} & Omit<{
|
|
204
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
205
|
+
stateStore: {
|
|
206
|
+
archivist: string;
|
|
207
|
+
boundWitnessDiviner: string;
|
|
208
|
+
payloadDiviner: string;
|
|
209
|
+
};
|
|
210
|
+
}, "schema">, "schema"> & {
|
|
211
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
212
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
213
|
+
accountDerivationPath?: string | undefined;
|
|
214
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
215
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
216
|
+
readonly name?: string | undefined;
|
|
217
|
+
readonly paging?: Record<string, {
|
|
218
|
+
size?: number | undefined;
|
|
219
|
+
}> | undefined;
|
|
220
|
+
readonly security?: {
|
|
221
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
222
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
223
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
224
|
+
} | undefined;
|
|
225
|
+
readonly sign?: boolean | undefined;
|
|
226
|
+
readonly storeQueries?: boolean | undefined;
|
|
227
|
+
readonly timestamp?: boolean | undefined;
|
|
228
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
229
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
230
|
+
} & Omit<{
|
|
231
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
232
|
+
stateStore: {
|
|
233
|
+
archivist: string;
|
|
234
|
+
boundWitnessDiviner: string;
|
|
235
|
+
payloadDiviner: string;
|
|
236
|
+
};
|
|
237
|
+
}, "schema">, "schema"> & {
|
|
238
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
239
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
240
|
+
accountDerivationPath?: string | undefined;
|
|
241
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
242
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
243
|
+
readonly name?: string | undefined;
|
|
244
|
+
readonly paging?: Record<string, {
|
|
245
|
+
size?: number | undefined;
|
|
246
|
+
}> | undefined;
|
|
247
|
+
readonly security?: {
|
|
248
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
249
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
250
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
251
|
+
} | undefined;
|
|
252
|
+
readonly sign?: boolean | undefined;
|
|
253
|
+
readonly storeQueries?: boolean | undefined;
|
|
254
|
+
readonly timestamp?: boolean | undefined;
|
|
255
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
256
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
257
|
+
} & Omit<{
|
|
258
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
259
|
+
stateStore: {
|
|
260
|
+
archivist: string;
|
|
261
|
+
boundWitnessDiviner: string;
|
|
262
|
+
payloadDiviner: string;
|
|
263
|
+
};
|
|
264
|
+
}, "schema">, "schema"> & {
|
|
265
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
266
|
+
}), "schema">, "schema"> & {
|
|
267
|
+
schema: string;
|
|
268
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
269
|
+
accountDerivationPath?: string | undefined;
|
|
270
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
271
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
272
|
+
readonly name?: string | undefined;
|
|
273
|
+
readonly paging?: Record<string, {
|
|
274
|
+
size?: number | undefined;
|
|
275
|
+
}> | undefined;
|
|
276
|
+
readonly security?: {
|
|
277
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
278
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
279
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
280
|
+
} | undefined;
|
|
281
|
+
readonly sign?: boolean | undefined;
|
|
282
|
+
readonly storeQueries?: boolean | undefined;
|
|
283
|
+
readonly timestamp?: boolean | undefined;
|
|
284
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
285
|
+
schema: string;
|
|
286
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
287
|
+
accountDerivationPath?: string | undefined;
|
|
288
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
289
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
290
|
+
readonly name?: string | undefined;
|
|
291
|
+
readonly paging?: Record<string, {
|
|
292
|
+
size?: number | undefined;
|
|
293
|
+
}> | undefined;
|
|
294
|
+
readonly security?: {
|
|
295
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
296
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
297
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
298
|
+
} | undefined;
|
|
299
|
+
readonly sign?: boolean | undefined;
|
|
300
|
+
readonly storeQueries?: boolean | undefined;
|
|
301
|
+
readonly timestamp?: boolean | undefined;
|
|
302
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
303
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
304
|
+
} & Omit<{
|
|
305
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
306
|
+
stateStore: {
|
|
307
|
+
archivist: string;
|
|
308
|
+
boundWitnessDiviner: string;
|
|
309
|
+
payloadDiviner: string;
|
|
310
|
+
};
|
|
311
|
+
}, "schema">, "schema"> & {
|
|
312
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
313
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
314
|
+
accountDerivationPath?: string | undefined;
|
|
315
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
316
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
317
|
+
readonly name?: string | undefined;
|
|
318
|
+
readonly paging?: Record<string, {
|
|
319
|
+
size?: number | undefined;
|
|
320
|
+
}> | undefined;
|
|
321
|
+
readonly security?: {
|
|
322
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
323
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
324
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
325
|
+
} | undefined;
|
|
326
|
+
readonly sign?: boolean | undefined;
|
|
327
|
+
readonly storeQueries?: boolean | undefined;
|
|
328
|
+
readonly timestamp?: boolean | undefined;
|
|
329
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
330
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
331
|
+
} & Omit<{
|
|
332
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
333
|
+
stateStore: {
|
|
334
|
+
archivist: string;
|
|
335
|
+
boundWitnessDiviner: string;
|
|
336
|
+
payloadDiviner: string;
|
|
337
|
+
};
|
|
338
|
+
}, "schema">, "schema"> & {
|
|
339
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
340
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
341
|
+
accountDerivationPath?: string | undefined;
|
|
342
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
343
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
344
|
+
readonly name?: string | undefined;
|
|
345
|
+
readonly paging?: Record<string, {
|
|
346
|
+
size?: number | undefined;
|
|
347
|
+
}> | undefined;
|
|
348
|
+
readonly security?: {
|
|
349
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
350
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
351
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
352
|
+
} | undefined;
|
|
353
|
+
readonly sign?: boolean | undefined;
|
|
354
|
+
readonly storeQueries?: boolean | undefined;
|
|
355
|
+
readonly timestamp?: boolean | undefined;
|
|
356
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
357
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
358
|
+
} & Omit<{
|
|
359
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
360
|
+
stateStore: {
|
|
361
|
+
archivist: string;
|
|
362
|
+
boundWitnessDiviner: string;
|
|
363
|
+
payloadDiviner: string;
|
|
364
|
+
};
|
|
365
|
+
}, "schema">, "schema"> & {
|
|
366
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
367
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
368
|
+
accountDerivationPath?: string | undefined;
|
|
369
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
370
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
371
|
+
readonly name?: string | undefined;
|
|
372
|
+
readonly paging?: Record<string, {
|
|
373
|
+
size?: number | undefined;
|
|
374
|
+
}> | undefined;
|
|
375
|
+
readonly security?: {
|
|
376
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
377
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
378
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
379
|
+
} | undefined;
|
|
380
|
+
readonly sign?: boolean | undefined;
|
|
381
|
+
readonly storeQueries?: boolean | undefined;
|
|
382
|
+
readonly timestamp?: boolean | undefined;
|
|
383
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
384
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
385
|
+
} & Omit<{
|
|
386
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
387
|
+
stateStore: {
|
|
388
|
+
archivist: string;
|
|
389
|
+
boundWitnessDiviner: string;
|
|
390
|
+
payloadDiviner: string;
|
|
391
|
+
};
|
|
392
|
+
}, "schema">, "schema"> & {
|
|
393
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
394
|
+
}), "schema">, "schema"> & {
|
|
395
|
+
schema: string;
|
|
396
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
397
|
+
accountDerivationPath?: string | undefined;
|
|
398
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
399
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
400
|
+
readonly name?: string | undefined;
|
|
401
|
+
readonly paging?: Record<string, {
|
|
402
|
+
size?: number | undefined;
|
|
403
|
+
}> | undefined;
|
|
404
|
+
readonly security?: {
|
|
405
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
406
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
407
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
408
|
+
} | undefined;
|
|
409
|
+
readonly sign?: boolean | undefined;
|
|
410
|
+
readonly storeQueries?: boolean | undefined;
|
|
411
|
+
readonly timestamp?: boolean | undefined;
|
|
412
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
413
|
+
schema: string;
|
|
414
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
415
|
+
accountDerivationPath?: string | undefined;
|
|
416
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
417
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
418
|
+
readonly name?: string | undefined;
|
|
419
|
+
readonly paging?: Record<string, {
|
|
420
|
+
size?: number | undefined;
|
|
421
|
+
}> | undefined;
|
|
422
|
+
readonly security?: {
|
|
423
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
424
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
425
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
426
|
+
} | undefined;
|
|
427
|
+
readonly sign?: boolean | undefined;
|
|
428
|
+
readonly storeQueries?: boolean | undefined;
|
|
429
|
+
readonly timestamp?: boolean | undefined;
|
|
430
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
431
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
432
|
+
} & Omit<{
|
|
433
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
434
|
+
stateStore: {
|
|
435
|
+
archivist: string;
|
|
436
|
+
boundWitnessDiviner: string;
|
|
437
|
+
payloadDiviner: string;
|
|
438
|
+
};
|
|
439
|
+
}, "schema">, "schema"> & {
|
|
440
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
441
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
442
|
+
accountDerivationPath?: string | undefined;
|
|
443
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
444
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
445
|
+
readonly name?: string | undefined;
|
|
446
|
+
readonly paging?: Record<string, {
|
|
447
|
+
size?: number | undefined;
|
|
448
|
+
}> | undefined;
|
|
449
|
+
readonly security?: {
|
|
450
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
451
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
452
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
453
|
+
} | undefined;
|
|
454
|
+
readonly sign?: boolean | undefined;
|
|
455
|
+
readonly storeQueries?: boolean | undefined;
|
|
456
|
+
readonly timestamp?: boolean | undefined;
|
|
457
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
458
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
459
|
+
} & Omit<{
|
|
460
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
461
|
+
stateStore: {
|
|
462
|
+
archivist: string;
|
|
463
|
+
boundWitnessDiviner: string;
|
|
464
|
+
payloadDiviner: string;
|
|
465
|
+
};
|
|
466
|
+
}, "schema">, "schema"> & {
|
|
467
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
468
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
469
|
+
accountDerivationPath?: string | undefined;
|
|
470
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
471
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
472
|
+
readonly name?: string | undefined;
|
|
473
|
+
readonly paging?: Record<string, {
|
|
474
|
+
size?: number | undefined;
|
|
475
|
+
}> | undefined;
|
|
476
|
+
readonly security?: {
|
|
477
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
478
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
479
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
480
|
+
} | undefined;
|
|
481
|
+
readonly sign?: boolean | undefined;
|
|
482
|
+
readonly storeQueries?: boolean | undefined;
|
|
483
|
+
readonly timestamp?: boolean | undefined;
|
|
484
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
485
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
486
|
+
} & Omit<{
|
|
487
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
488
|
+
stateStore: {
|
|
489
|
+
archivist: string;
|
|
490
|
+
boundWitnessDiviner: string;
|
|
491
|
+
payloadDiviner: string;
|
|
492
|
+
};
|
|
493
|
+
}, "schema">, "schema"> & {
|
|
494
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
495
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
496
|
+
accountDerivationPath?: string | undefined;
|
|
497
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
498
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
499
|
+
readonly name?: string | undefined;
|
|
500
|
+
readonly paging?: Record<string, {
|
|
501
|
+
size?: number | undefined;
|
|
502
|
+
}> | undefined;
|
|
503
|
+
readonly security?: {
|
|
504
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
505
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
506
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
507
|
+
} | undefined;
|
|
508
|
+
readonly sign?: boolean | undefined;
|
|
509
|
+
readonly storeQueries?: boolean | undefined;
|
|
510
|
+
readonly timestamp?: boolean | undefined;
|
|
511
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
512
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
513
|
+
} & Omit<{
|
|
514
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
515
|
+
stateStore: {
|
|
516
|
+
archivist: string;
|
|
517
|
+
boundWitnessDiviner: string;
|
|
518
|
+
payloadDiviner: string;
|
|
519
|
+
};
|
|
520
|
+
}, "schema">, "schema"> & {
|
|
521
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
522
|
+
}), "schema">, "schema"> & {
|
|
523
|
+
schema: string;
|
|
524
|
+
});
|
|
525
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
526
|
+
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
527
|
+
} = import("@xyo-network/object").BaseParamsFields & {
|
|
528
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
529
|
+
config: (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
530
|
+
accountDerivationPath?: string | undefined;
|
|
531
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
532
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
533
|
+
readonly name?: string | undefined;
|
|
534
|
+
readonly paging?: Record<string, {
|
|
535
|
+
size?: number | undefined;
|
|
536
|
+
}> | undefined;
|
|
537
|
+
readonly security?: {
|
|
538
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
539
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
540
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
541
|
+
} | undefined;
|
|
542
|
+
readonly sign?: boolean | undefined;
|
|
543
|
+
readonly storeQueries?: boolean | undefined;
|
|
544
|
+
readonly timestamp?: boolean | undefined;
|
|
545
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
546
|
+
schema: string;
|
|
547
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
548
|
+
accountDerivationPath?: string | undefined;
|
|
549
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
550
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
551
|
+
readonly name?: string | undefined;
|
|
552
|
+
readonly paging?: Record<string, {
|
|
553
|
+
size?: number | undefined;
|
|
554
|
+
}> | undefined;
|
|
555
|
+
readonly security?: {
|
|
556
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
557
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
558
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
559
|
+
} | undefined;
|
|
560
|
+
readonly sign?: boolean | undefined;
|
|
561
|
+
readonly storeQueries?: boolean | undefined;
|
|
562
|
+
readonly timestamp?: boolean | undefined;
|
|
563
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
564
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
565
|
+
} & Omit<{
|
|
566
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
567
|
+
stateStore: {
|
|
568
|
+
archivist: string;
|
|
569
|
+
boundWitnessDiviner: string;
|
|
570
|
+
payloadDiviner: string;
|
|
571
|
+
};
|
|
572
|
+
}, "schema">, "schema"> & {
|
|
573
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
574
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
575
|
+
accountDerivationPath?: string | undefined;
|
|
576
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
577
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
578
|
+
readonly name?: string | undefined;
|
|
579
|
+
readonly paging?: Record<string, {
|
|
580
|
+
size?: number | undefined;
|
|
581
|
+
}> | undefined;
|
|
582
|
+
readonly security?: {
|
|
583
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
584
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
585
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
586
|
+
} | undefined;
|
|
587
|
+
readonly sign?: boolean | undefined;
|
|
588
|
+
readonly storeQueries?: boolean | undefined;
|
|
589
|
+
readonly timestamp?: boolean | undefined;
|
|
590
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
591
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
592
|
+
} & Omit<{
|
|
593
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
594
|
+
stateStore: {
|
|
595
|
+
archivist: string;
|
|
596
|
+
boundWitnessDiviner: string;
|
|
597
|
+
payloadDiviner: string;
|
|
598
|
+
};
|
|
599
|
+
}, "schema">, "schema"> & {
|
|
600
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
601
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
602
|
+
accountDerivationPath?: string | undefined;
|
|
603
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
604
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
605
|
+
readonly name?: string | undefined;
|
|
606
|
+
readonly paging?: Record<string, {
|
|
607
|
+
size?: number | undefined;
|
|
608
|
+
}> | undefined;
|
|
609
|
+
readonly security?: {
|
|
610
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
611
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
612
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
613
|
+
} | undefined;
|
|
614
|
+
readonly sign?: boolean | undefined;
|
|
615
|
+
readonly storeQueries?: boolean | undefined;
|
|
616
|
+
readonly timestamp?: boolean | undefined;
|
|
617
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
618
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
619
|
+
} & Omit<{
|
|
620
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
621
|
+
stateStore: {
|
|
622
|
+
archivist: string;
|
|
623
|
+
boundWitnessDiviner: string;
|
|
624
|
+
payloadDiviner: string;
|
|
625
|
+
};
|
|
626
|
+
}, "schema">, "schema"> & {
|
|
627
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
628
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
629
|
+
accountDerivationPath?: string | undefined;
|
|
630
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
631
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
632
|
+
readonly name?: string | undefined;
|
|
633
|
+
readonly paging?: Record<string, {
|
|
634
|
+
size?: number | undefined;
|
|
635
|
+
}> | undefined;
|
|
636
|
+
readonly security?: {
|
|
637
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
638
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
639
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
640
|
+
} | undefined;
|
|
641
|
+
readonly sign?: boolean | undefined;
|
|
642
|
+
readonly storeQueries?: boolean | undefined;
|
|
643
|
+
readonly timestamp?: boolean | undefined;
|
|
644
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
645
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
646
|
+
} & Omit<{
|
|
647
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
648
|
+
stateStore: {
|
|
649
|
+
archivist: string;
|
|
650
|
+
boundWitnessDiviner: string;
|
|
651
|
+
payloadDiviner: string;
|
|
652
|
+
};
|
|
653
|
+
}, "schema">, "schema"> & {
|
|
654
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
655
|
+
}), "schema">, "schema"> & {
|
|
656
|
+
schema: string;
|
|
657
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
658
|
+
accountDerivationPath?: string | undefined;
|
|
659
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
660
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
661
|
+
readonly name?: string | undefined;
|
|
662
|
+
readonly paging?: Record<string, {
|
|
663
|
+
size?: number | undefined;
|
|
664
|
+
}> | undefined;
|
|
665
|
+
readonly security?: {
|
|
666
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
667
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
668
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
669
|
+
} | undefined;
|
|
670
|
+
readonly sign?: boolean | undefined;
|
|
671
|
+
readonly storeQueries?: boolean | undefined;
|
|
672
|
+
readonly timestamp?: boolean | undefined;
|
|
673
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
674
|
+
schema: string;
|
|
675
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
676
|
+
accountDerivationPath?: string | undefined;
|
|
677
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
678
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
679
|
+
readonly name?: string | undefined;
|
|
680
|
+
readonly paging?: Record<string, {
|
|
681
|
+
size?: number | undefined;
|
|
682
|
+
}> | undefined;
|
|
683
|
+
readonly security?: {
|
|
684
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
685
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
686
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
687
|
+
} | undefined;
|
|
688
|
+
readonly sign?: boolean | undefined;
|
|
689
|
+
readonly storeQueries?: boolean | undefined;
|
|
690
|
+
readonly timestamp?: boolean | undefined;
|
|
691
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
692
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
693
|
+
} & Omit<{
|
|
694
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
695
|
+
stateStore: {
|
|
696
|
+
archivist: string;
|
|
697
|
+
boundWitnessDiviner: string;
|
|
698
|
+
payloadDiviner: string;
|
|
699
|
+
};
|
|
700
|
+
}, "schema">, "schema"> & {
|
|
701
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
702
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
703
|
+
accountDerivationPath?: string | undefined;
|
|
704
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
705
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
706
|
+
readonly name?: string | undefined;
|
|
707
|
+
readonly paging?: Record<string, {
|
|
708
|
+
size?: number | undefined;
|
|
709
|
+
}> | undefined;
|
|
710
|
+
readonly security?: {
|
|
711
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
712
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
713
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
714
|
+
} | undefined;
|
|
715
|
+
readonly sign?: boolean | undefined;
|
|
716
|
+
readonly storeQueries?: boolean | undefined;
|
|
717
|
+
readonly timestamp?: boolean | undefined;
|
|
718
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
719
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
720
|
+
} & Omit<{
|
|
721
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
722
|
+
stateStore: {
|
|
723
|
+
archivist: string;
|
|
724
|
+
boundWitnessDiviner: string;
|
|
725
|
+
payloadDiviner: string;
|
|
726
|
+
};
|
|
727
|
+
}, "schema">, "schema"> & {
|
|
728
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
729
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
730
|
+
accountDerivationPath?: string | undefined;
|
|
731
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
732
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
733
|
+
readonly name?: string | undefined;
|
|
734
|
+
readonly paging?: Record<string, {
|
|
735
|
+
size?: number | undefined;
|
|
736
|
+
}> | undefined;
|
|
737
|
+
readonly security?: {
|
|
738
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
739
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
740
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
741
|
+
} | undefined;
|
|
742
|
+
readonly sign?: boolean | undefined;
|
|
743
|
+
readonly storeQueries?: boolean | undefined;
|
|
744
|
+
readonly timestamp?: boolean | undefined;
|
|
745
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
746
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
747
|
+
} & Omit<{
|
|
748
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
749
|
+
stateStore: {
|
|
750
|
+
archivist: string;
|
|
751
|
+
boundWitnessDiviner: string;
|
|
752
|
+
payloadDiviner: string;
|
|
753
|
+
};
|
|
754
|
+
}, "schema">, "schema"> & {
|
|
755
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
756
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
757
|
+
accountDerivationPath?: string | undefined;
|
|
758
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
759
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
760
|
+
readonly name?: string | undefined;
|
|
761
|
+
readonly paging?: Record<string, {
|
|
762
|
+
size?: number | undefined;
|
|
763
|
+
}> | undefined;
|
|
764
|
+
readonly security?: {
|
|
765
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
766
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
767
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
768
|
+
} | undefined;
|
|
769
|
+
readonly sign?: boolean | undefined;
|
|
770
|
+
readonly storeQueries?: boolean | undefined;
|
|
771
|
+
readonly timestamp?: boolean | undefined;
|
|
772
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
773
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
774
|
+
} & Omit<{
|
|
775
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
776
|
+
stateStore: {
|
|
777
|
+
archivist: string;
|
|
778
|
+
boundWitnessDiviner: string;
|
|
779
|
+
payloadDiviner: string;
|
|
780
|
+
};
|
|
781
|
+
}, "schema">, "schema"> & {
|
|
782
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
783
|
+
}), "schema">, "schema"> & {
|
|
784
|
+
schema: string;
|
|
785
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
786
|
+
accountDerivationPath?: string | undefined;
|
|
787
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
788
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
789
|
+
readonly name?: string | undefined;
|
|
790
|
+
readonly paging?: Record<string, {
|
|
791
|
+
size?: number | undefined;
|
|
792
|
+
}> | undefined;
|
|
793
|
+
readonly security?: {
|
|
794
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
795
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
796
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
797
|
+
} | undefined;
|
|
798
|
+
readonly sign?: boolean | undefined;
|
|
799
|
+
readonly storeQueries?: boolean | undefined;
|
|
800
|
+
readonly timestamp?: boolean | undefined;
|
|
801
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
802
|
+
schema: string;
|
|
803
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
804
|
+
accountDerivationPath?: string | undefined;
|
|
805
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
806
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
807
|
+
readonly name?: string | undefined;
|
|
808
|
+
readonly paging?: Record<string, {
|
|
809
|
+
size?: number | undefined;
|
|
810
|
+
}> | undefined;
|
|
811
|
+
readonly security?: {
|
|
812
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
813
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
814
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
815
|
+
} | undefined;
|
|
816
|
+
readonly sign?: boolean | undefined;
|
|
817
|
+
readonly storeQueries?: boolean | undefined;
|
|
818
|
+
readonly timestamp?: boolean | undefined;
|
|
819
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
820
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
821
|
+
} & Omit<{
|
|
822
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
823
|
+
stateStore: {
|
|
824
|
+
archivist: string;
|
|
825
|
+
boundWitnessDiviner: string;
|
|
826
|
+
payloadDiviner: string;
|
|
827
|
+
};
|
|
828
|
+
}, "schema">, "schema"> & {
|
|
829
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
830
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
831
|
+
accountDerivationPath?: string | undefined;
|
|
832
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
833
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
834
|
+
readonly name?: string | undefined;
|
|
835
|
+
readonly paging?: Record<string, {
|
|
836
|
+
size?: number | undefined;
|
|
837
|
+
}> | undefined;
|
|
838
|
+
readonly security?: {
|
|
839
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
840
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
841
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
842
|
+
} | undefined;
|
|
843
|
+
readonly sign?: boolean | undefined;
|
|
844
|
+
readonly storeQueries?: boolean | undefined;
|
|
845
|
+
readonly timestamp?: boolean | undefined;
|
|
846
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
847
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
848
|
+
} & Omit<{
|
|
849
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
850
|
+
stateStore: {
|
|
851
|
+
archivist: string;
|
|
852
|
+
boundWitnessDiviner: string;
|
|
853
|
+
payloadDiviner: string;
|
|
854
|
+
};
|
|
855
|
+
}, "schema">, "schema"> & {
|
|
856
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
857
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
858
|
+
accountDerivationPath?: string | undefined;
|
|
859
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
860
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
861
|
+
readonly name?: string | undefined;
|
|
862
|
+
readonly paging?: Record<string, {
|
|
863
|
+
size?: number | undefined;
|
|
864
|
+
}> | undefined;
|
|
865
|
+
readonly security?: {
|
|
866
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
867
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
868
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
869
|
+
} | undefined;
|
|
870
|
+
readonly sign?: boolean | undefined;
|
|
871
|
+
readonly storeQueries?: boolean | undefined;
|
|
872
|
+
readonly timestamp?: boolean | undefined;
|
|
873
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
874
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
875
|
+
} & Omit<{
|
|
876
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
877
|
+
stateStore: {
|
|
878
|
+
archivist: string;
|
|
879
|
+
boundWitnessDiviner: string;
|
|
880
|
+
payloadDiviner: string;
|
|
881
|
+
};
|
|
882
|
+
}, "schema">, "schema"> & {
|
|
883
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
884
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
885
|
+
accountDerivationPath?: string | undefined;
|
|
886
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
887
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
888
|
+
readonly name?: string | undefined;
|
|
889
|
+
readonly paging?: Record<string, {
|
|
890
|
+
size?: number | undefined;
|
|
891
|
+
}> | undefined;
|
|
892
|
+
readonly security?: {
|
|
893
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
894
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
895
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
896
|
+
} | undefined;
|
|
897
|
+
readonly sign?: boolean | undefined;
|
|
898
|
+
readonly storeQueries?: boolean | undefined;
|
|
899
|
+
readonly timestamp?: boolean | undefined;
|
|
900
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
901
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
902
|
+
} & Omit<{
|
|
903
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
904
|
+
stateStore: {
|
|
905
|
+
archivist: string;
|
|
906
|
+
boundWitnessDiviner: string;
|
|
907
|
+
payloadDiviner: string;
|
|
908
|
+
};
|
|
909
|
+
}, "schema">, "schema"> & {
|
|
910
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
911
|
+
}), "schema">, "schema"> & {
|
|
912
|
+
schema: string;
|
|
913
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
914
|
+
accountDerivationPath?: string | undefined;
|
|
915
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
916
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
917
|
+
readonly name?: string | undefined;
|
|
918
|
+
readonly paging?: Record<string, {
|
|
919
|
+
size?: number | undefined;
|
|
920
|
+
}> | undefined;
|
|
921
|
+
readonly security?: {
|
|
922
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
923
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
924
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
925
|
+
} | undefined;
|
|
926
|
+
readonly sign?: boolean | undefined;
|
|
927
|
+
readonly storeQueries?: boolean | undefined;
|
|
928
|
+
readonly timestamp?: boolean | undefined;
|
|
929
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
930
|
+
schema: string;
|
|
931
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
932
|
+
accountDerivationPath?: string | undefined;
|
|
933
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
934
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
935
|
+
readonly name?: string | undefined;
|
|
936
|
+
readonly paging?: Record<string, {
|
|
937
|
+
size?: number | undefined;
|
|
938
|
+
}> | undefined;
|
|
939
|
+
readonly security?: {
|
|
940
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
941
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
942
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
943
|
+
} | undefined;
|
|
944
|
+
readonly sign?: boolean | undefined;
|
|
945
|
+
readonly storeQueries?: boolean | undefined;
|
|
946
|
+
readonly timestamp?: boolean | undefined;
|
|
947
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
948
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
949
|
+
} & Omit<{
|
|
950
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
951
|
+
stateStore: {
|
|
952
|
+
archivist: string;
|
|
953
|
+
boundWitnessDiviner: string;
|
|
954
|
+
payloadDiviner: string;
|
|
955
|
+
};
|
|
956
|
+
}, "schema">, "schema"> & {
|
|
957
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
958
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
959
|
+
accountDerivationPath?: string | undefined;
|
|
960
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
961
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
962
|
+
readonly name?: string | undefined;
|
|
963
|
+
readonly paging?: Record<string, {
|
|
964
|
+
size?: number | undefined;
|
|
965
|
+
}> | undefined;
|
|
966
|
+
readonly security?: {
|
|
967
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
968
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
969
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
970
|
+
} | undefined;
|
|
971
|
+
readonly sign?: boolean | undefined;
|
|
972
|
+
readonly storeQueries?: boolean | undefined;
|
|
973
|
+
readonly timestamp?: boolean | undefined;
|
|
974
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
975
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
976
|
+
} & Omit<{
|
|
977
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
978
|
+
stateStore: {
|
|
979
|
+
archivist: string;
|
|
980
|
+
boundWitnessDiviner: string;
|
|
981
|
+
payloadDiviner: string;
|
|
982
|
+
};
|
|
983
|
+
}, "schema">, "schema"> & {
|
|
984
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
985
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
986
|
+
accountDerivationPath?: string | undefined;
|
|
987
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
988
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
989
|
+
readonly name?: string | undefined;
|
|
990
|
+
readonly paging?: Record<string, {
|
|
991
|
+
size?: number | undefined;
|
|
992
|
+
}> | undefined;
|
|
993
|
+
readonly security?: {
|
|
994
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
995
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
996
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
997
|
+
} | undefined;
|
|
998
|
+
readonly sign?: boolean | undefined;
|
|
999
|
+
readonly storeQueries?: boolean | undefined;
|
|
1000
|
+
readonly timestamp?: boolean | undefined;
|
|
1001
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1002
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
1003
|
+
} & Omit<{
|
|
1004
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
1005
|
+
stateStore: {
|
|
1006
|
+
archivist: string;
|
|
1007
|
+
boundWitnessDiviner: string;
|
|
1008
|
+
payloadDiviner: string;
|
|
1009
|
+
};
|
|
1010
|
+
}, "schema">, "schema"> & {
|
|
1011
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
1012
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
1013
|
+
accountDerivationPath?: string | undefined;
|
|
1014
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1015
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1016
|
+
readonly name?: string | undefined;
|
|
1017
|
+
readonly paging?: Record<string, {
|
|
1018
|
+
size?: number | undefined;
|
|
1019
|
+
}> | undefined;
|
|
1020
|
+
readonly security?: {
|
|
1021
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1022
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1023
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1024
|
+
} | undefined;
|
|
1025
|
+
readonly sign?: boolean | undefined;
|
|
1026
|
+
readonly storeQueries?: boolean | undefined;
|
|
1027
|
+
readonly timestamp?: boolean | undefined;
|
|
1028
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1029
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
1030
|
+
} & Omit<{
|
|
1031
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
1032
|
+
stateStore: {
|
|
1033
|
+
archivist: string;
|
|
1034
|
+
boundWitnessDiviner: string;
|
|
1035
|
+
payloadDiviner: string;
|
|
1036
|
+
};
|
|
1037
|
+
}, "schema">, "schema"> & {
|
|
1038
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
1039
|
+
}), "schema">, "schema"> & {
|
|
1040
|
+
schema: string;
|
|
1041
|
+
});
|
|
1042
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
1043
|
+
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
1044
|
+
}, TModule extends AnyModule<TParams> = AnyModule<TParams>, TState extends StateDictionary = StateDictionary>(ModuleBase: TModule) => (abstract new (...args: any[]) => {
|
|
1045
|
+
_lastState?: ModuleState<TState> | undefined;
|
|
1046
|
+
/**
|
|
1047
|
+
* Commit the internal state of the Diviner process. This is similar
|
|
1048
|
+
* to a transaction completion in a database and should only be called
|
|
1049
|
+
* when results have been successfully persisted to the appropriate
|
|
1050
|
+
* external stores.
|
|
1051
|
+
* @param nextState The state to commit
|
|
1052
|
+
*/
|
|
1053
|
+
commitState(nextState: ModuleState<TState>): Promise<void>;
|
|
1054
|
+
/**
|
|
1055
|
+
* Retrieves the archivist for the specified store
|
|
1056
|
+
* @param store The store to retrieve the archivist for
|
|
1057
|
+
* @returns The archivist for the specified store
|
|
1058
|
+
*/
|
|
1059
|
+
getArchivistForStore(): Promise<import("@xyo-network/archivist").ArchivistInstance>;
|
|
1060
|
+
/**
|
|
1061
|
+
* Retrieves the BoundWitness Diviner for the specified store
|
|
1062
|
+
* @param store The store to retrieve the BoundWitness Diviner for
|
|
1063
|
+
* @returns The BoundWitness Diviner for the specified store
|
|
1064
|
+
*/
|
|
1065
|
+
getBoundWitnessDivinerForStore(): Promise<import("@xyo-network/diviner-model").DivinerInstance>;
|
|
1066
|
+
/**
|
|
1067
|
+
* Retrieves the Payload Diviner for the specified store
|
|
1068
|
+
* @param store The store to retrieve the Payload Diviner for
|
|
1069
|
+
* @returns The Payload Diviner for the specified store
|
|
1070
|
+
*/
|
|
1071
|
+
getPayloadDivinerForStateStore(): Promise<import("@xyo-network/diviner-model").DivinerInstance>;
|
|
1072
|
+
/**
|
|
1073
|
+
* Retrieves the last state of the Diviner process. Used to recover state after
|
|
1074
|
+
* preemptions, reboots, etc.
|
|
1075
|
+
*/
|
|
1076
|
+
retrieveState(): Promise<ModuleState<TState> | undefined>;
|
|
1077
|
+
address: string;
|
|
1078
|
+
config: TParams["config"];
|
|
1079
|
+
params: TParams;
|
|
1080
|
+
previousHash: () => import("@xylabs/promise").Promisable<string | undefined>;
|
|
1081
|
+
queries: string[];
|
|
1082
|
+
query: <T extends (import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
1083
|
+
query: string;
|
|
1084
|
+
resultSet?: string | undefined;
|
|
1085
|
+
schema: "network.xyo.boundwitness";
|
|
1086
|
+
}, "schema"> & {
|
|
1087
|
+
schema: "network.xyo.boundwitness";
|
|
1088
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
1089
|
+
query: string;
|
|
1090
|
+
resultSet?: string | undefined;
|
|
1091
|
+
schema: "network.xyo.boundwitness";
|
|
1092
|
+
}, "schema"> & {
|
|
1093
|
+
schema: "network.xyo.boundwitness";
|
|
1094
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
1095
|
+
query: string;
|
|
1096
|
+
resultSet?: string | undefined;
|
|
1097
|
+
schema: "network.xyo.boundwitness";
|
|
1098
|
+
}, "schema"> & {
|
|
1099
|
+
schema: "network.xyo.boundwitness";
|
|
1100
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
1101
|
+
query: string;
|
|
1102
|
+
resultSet?: string | undefined;
|
|
1103
|
+
schema: "network.xyo.boundwitness";
|
|
1104
|
+
}, "schema"> & {
|
|
1105
|
+
schema: "network.xyo.boundwitness";
|
|
1106
|
+
}) = (import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
1107
|
+
query: string;
|
|
1108
|
+
resultSet?: string | undefined;
|
|
1109
|
+
schema: "network.xyo.boundwitness";
|
|
1110
|
+
}, "schema"> & {
|
|
1111
|
+
schema: "network.xyo.boundwitness";
|
|
1112
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
1113
|
+
query: string;
|
|
1114
|
+
resultSet?: string | undefined;
|
|
1115
|
+
schema: "network.xyo.boundwitness";
|
|
1116
|
+
}, "schema"> & {
|
|
1117
|
+
schema: "network.xyo.boundwitness";
|
|
1118
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
1119
|
+
query: string;
|
|
1120
|
+
resultSet?: string | undefined;
|
|
1121
|
+
schema: "network.xyo.boundwitness";
|
|
1122
|
+
}, "schema"> & {
|
|
1123
|
+
schema: "network.xyo.boundwitness";
|
|
1124
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
1125
|
+
query: string;
|
|
1126
|
+
resultSet?: string | undefined;
|
|
1127
|
+
schema: "network.xyo.boundwitness";
|
|
1128
|
+
}, "schema"> & {
|
|
1129
|
+
schema: "network.xyo.boundwitness";
|
|
1130
|
+
}), TConf extends (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1131
|
+
accountDerivationPath?: string | undefined;
|
|
1132
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1133
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1134
|
+
readonly name?: string | undefined;
|
|
1135
|
+
readonly paging?: Record<string, {
|
|
1136
|
+
size?: number | undefined;
|
|
1137
|
+
}> | undefined;
|
|
1138
|
+
readonly security?: {
|
|
1139
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1140
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1141
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1142
|
+
} | undefined;
|
|
1143
|
+
readonly sign?: boolean | undefined;
|
|
1144
|
+
readonly storeQueries?: boolean | undefined;
|
|
1145
|
+
readonly timestamp?: boolean | undefined;
|
|
1146
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1147
|
+
schema: "network.xyo.module.config";
|
|
1148
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1149
|
+
accountDerivationPath?: string | undefined;
|
|
1150
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1151
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1152
|
+
readonly name?: string | undefined;
|
|
1153
|
+
readonly paging?: Record<string, {
|
|
1154
|
+
size?: number | undefined;
|
|
1155
|
+
}> | undefined;
|
|
1156
|
+
readonly security?: {
|
|
1157
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1158
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1159
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1160
|
+
} | undefined;
|
|
1161
|
+
readonly sign?: boolean | undefined;
|
|
1162
|
+
readonly storeQueries?: boolean | undefined;
|
|
1163
|
+
readonly timestamp?: boolean | undefined;
|
|
1164
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1165
|
+
schema: "network.xyo.module.config";
|
|
1166
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1167
|
+
accountDerivationPath?: string | undefined;
|
|
1168
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1169
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1170
|
+
readonly name?: string | undefined;
|
|
1171
|
+
readonly paging?: Record<string, {
|
|
1172
|
+
size?: number | undefined;
|
|
1173
|
+
}> | undefined;
|
|
1174
|
+
readonly security?: {
|
|
1175
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1176
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1177
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1178
|
+
} | undefined;
|
|
1179
|
+
readonly sign?: boolean | undefined;
|
|
1180
|
+
readonly storeQueries?: boolean | undefined;
|
|
1181
|
+
readonly timestamp?: boolean | undefined;
|
|
1182
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1183
|
+
schema: "network.xyo.module.config";
|
|
1184
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1185
|
+
accountDerivationPath?: string | undefined;
|
|
1186
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1187
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1188
|
+
readonly name?: string | undefined;
|
|
1189
|
+
readonly paging?: Record<string, {
|
|
1190
|
+
size?: number | undefined;
|
|
1191
|
+
}> | undefined;
|
|
1192
|
+
readonly security?: {
|
|
1193
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1194
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1195
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1196
|
+
} | undefined;
|
|
1197
|
+
readonly sign?: boolean | undefined;
|
|
1198
|
+
readonly storeQueries?: boolean | undefined;
|
|
1199
|
+
readonly timestamp?: boolean | undefined;
|
|
1200
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1201
|
+
schema: "network.xyo.module.config";
|
|
1202
|
+
}) = (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1203
|
+
accountDerivationPath?: string | undefined;
|
|
1204
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1205
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1206
|
+
readonly name?: string | undefined;
|
|
1207
|
+
readonly paging?: Record<string, {
|
|
1208
|
+
size?: number | undefined;
|
|
1209
|
+
}> | undefined;
|
|
1210
|
+
readonly security?: {
|
|
1211
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1212
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1213
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1214
|
+
} | undefined;
|
|
1215
|
+
readonly sign?: boolean | undefined;
|
|
1216
|
+
readonly storeQueries?: boolean | undefined;
|
|
1217
|
+
readonly timestamp?: boolean | undefined;
|
|
1218
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1219
|
+
schema: "network.xyo.module.config";
|
|
1220
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1221
|
+
accountDerivationPath?: string | undefined;
|
|
1222
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1223
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1224
|
+
readonly name?: string | undefined;
|
|
1225
|
+
readonly paging?: Record<string, {
|
|
1226
|
+
size?: number | undefined;
|
|
1227
|
+
}> | undefined;
|
|
1228
|
+
readonly security?: {
|
|
1229
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1230
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1231
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1232
|
+
} | undefined;
|
|
1233
|
+
readonly sign?: boolean | undefined;
|
|
1234
|
+
readonly storeQueries?: boolean | undefined;
|
|
1235
|
+
readonly timestamp?: boolean | undefined;
|
|
1236
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1237
|
+
schema: "network.xyo.module.config";
|
|
1238
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1239
|
+
accountDerivationPath?: string | undefined;
|
|
1240
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1241
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1242
|
+
readonly name?: string | undefined;
|
|
1243
|
+
readonly paging?: Record<string, {
|
|
1244
|
+
size?: number | undefined;
|
|
1245
|
+
}> | undefined;
|
|
1246
|
+
readonly security?: {
|
|
1247
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1248
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1249
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1250
|
+
} | undefined;
|
|
1251
|
+
readonly sign?: boolean | undefined;
|
|
1252
|
+
readonly storeQueries?: boolean | undefined;
|
|
1253
|
+
readonly timestamp?: boolean | undefined;
|
|
1254
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1255
|
+
schema: "network.xyo.module.config";
|
|
1256
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1257
|
+
accountDerivationPath?: string | undefined;
|
|
1258
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1259
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1260
|
+
readonly name?: string | undefined;
|
|
1261
|
+
readonly paging?: Record<string, {
|
|
1262
|
+
size?: number | undefined;
|
|
1263
|
+
}> | undefined;
|
|
1264
|
+
readonly security?: {
|
|
1265
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1266
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1267
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1268
|
+
} | undefined;
|
|
1269
|
+
readonly sign?: boolean | undefined;
|
|
1270
|
+
readonly storeQueries?: boolean | undefined;
|
|
1271
|
+
readonly timestamp?: boolean | undefined;
|
|
1272
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1273
|
+
schema: "network.xyo.module.config";
|
|
1274
|
+
})>(query: T, payloads?: ({
|
|
1275
|
+
schema: string;
|
|
1276
|
+
} & import("@xyo-network/payload-model").PayloadFields)[] | undefined, queryConfig?: TConf | undefined) => import("@xylabs/promise").Promisable<import("@xyo-network/module-model").ModuleQueryResult>;
|
|
1277
|
+
queryable: <T_1 extends (import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
1278
|
+
query: string;
|
|
1279
|
+
resultSet?: string | undefined;
|
|
1280
|
+
schema: "network.xyo.boundwitness";
|
|
1281
|
+
}, "schema"> & {
|
|
1282
|
+
schema: "network.xyo.boundwitness";
|
|
1283
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
1284
|
+
query: string;
|
|
1285
|
+
resultSet?: string | undefined;
|
|
1286
|
+
schema: "network.xyo.boundwitness";
|
|
1287
|
+
}, "schema"> & {
|
|
1288
|
+
schema: "network.xyo.boundwitness";
|
|
1289
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
1290
|
+
query: string;
|
|
1291
|
+
resultSet?: string | undefined;
|
|
1292
|
+
schema: "network.xyo.boundwitness";
|
|
1293
|
+
}, "schema"> & {
|
|
1294
|
+
schema: "network.xyo.boundwitness";
|
|
1295
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
1296
|
+
query: string;
|
|
1297
|
+
resultSet?: string | undefined;
|
|
1298
|
+
schema: "network.xyo.boundwitness";
|
|
1299
|
+
}, "schema"> & {
|
|
1300
|
+
schema: "network.xyo.boundwitness";
|
|
1301
|
+
}) = (import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
1302
|
+
query: string;
|
|
1303
|
+
resultSet?: string | undefined;
|
|
1304
|
+
schema: "network.xyo.boundwitness";
|
|
1305
|
+
}, "schema"> & {
|
|
1306
|
+
schema: "network.xyo.boundwitness";
|
|
1307
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
1308
|
+
query: string;
|
|
1309
|
+
resultSet?: string | undefined;
|
|
1310
|
+
schema: "network.xyo.boundwitness";
|
|
1311
|
+
}, "schema"> & {
|
|
1312
|
+
schema: "network.xyo.boundwitness";
|
|
1313
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
1314
|
+
query: string;
|
|
1315
|
+
resultSet?: string | undefined;
|
|
1316
|
+
schema: "network.xyo.boundwitness";
|
|
1317
|
+
}, "schema"> & {
|
|
1318
|
+
schema: "network.xyo.boundwitness";
|
|
1319
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
1320
|
+
query: string;
|
|
1321
|
+
resultSet?: string | undefined;
|
|
1322
|
+
schema: "network.xyo.boundwitness";
|
|
1323
|
+
}, "schema"> & {
|
|
1324
|
+
schema: "network.xyo.boundwitness";
|
|
1325
|
+
}), TConf_1 extends (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1326
|
+
accountDerivationPath?: string | undefined;
|
|
1327
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1328
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1329
|
+
readonly name?: string | undefined;
|
|
1330
|
+
readonly paging?: Record<string, {
|
|
1331
|
+
size?: number | undefined;
|
|
1332
|
+
}> | undefined;
|
|
1333
|
+
readonly security?: {
|
|
1334
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1335
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1336
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1337
|
+
} | undefined;
|
|
1338
|
+
readonly sign?: boolean | undefined;
|
|
1339
|
+
readonly storeQueries?: boolean | undefined;
|
|
1340
|
+
readonly timestamp?: boolean | undefined;
|
|
1341
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1342
|
+
schema: "network.xyo.module.config";
|
|
1343
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1344
|
+
accountDerivationPath?: string | undefined;
|
|
1345
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1346
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1347
|
+
readonly name?: string | undefined;
|
|
1348
|
+
readonly paging?: Record<string, {
|
|
1349
|
+
size?: number | undefined;
|
|
1350
|
+
}> | undefined;
|
|
1351
|
+
readonly security?: {
|
|
1352
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1353
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1354
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1355
|
+
} | undefined;
|
|
1356
|
+
readonly sign?: boolean | undefined;
|
|
1357
|
+
readonly storeQueries?: boolean | undefined;
|
|
1358
|
+
readonly timestamp?: boolean | undefined;
|
|
1359
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1360
|
+
schema: "network.xyo.module.config";
|
|
1361
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1362
|
+
accountDerivationPath?: string | undefined;
|
|
1363
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1364
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1365
|
+
readonly name?: string | undefined;
|
|
1366
|
+
readonly paging?: Record<string, {
|
|
1367
|
+
size?: number | undefined;
|
|
1368
|
+
}> | undefined;
|
|
1369
|
+
readonly security?: {
|
|
1370
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1371
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1372
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1373
|
+
} | undefined;
|
|
1374
|
+
readonly sign?: boolean | undefined;
|
|
1375
|
+
readonly storeQueries?: boolean | undefined;
|
|
1376
|
+
readonly timestamp?: boolean | undefined;
|
|
1377
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1378
|
+
schema: "network.xyo.module.config";
|
|
1379
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1380
|
+
accountDerivationPath?: string | undefined;
|
|
1381
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1382
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1383
|
+
readonly name?: string | undefined;
|
|
1384
|
+
readonly paging?: Record<string, {
|
|
1385
|
+
size?: number | undefined;
|
|
1386
|
+
}> | undefined;
|
|
1387
|
+
readonly security?: {
|
|
1388
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1389
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1390
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1391
|
+
} | undefined;
|
|
1392
|
+
readonly sign?: boolean | undefined;
|
|
1393
|
+
readonly storeQueries?: boolean | undefined;
|
|
1394
|
+
readonly timestamp?: boolean | undefined;
|
|
1395
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1396
|
+
schema: "network.xyo.module.config";
|
|
1397
|
+
}) = (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1398
|
+
accountDerivationPath?: string | undefined;
|
|
1399
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1400
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1401
|
+
readonly name?: string | undefined;
|
|
1402
|
+
readonly paging?: Record<string, {
|
|
1403
|
+
size?: number | undefined;
|
|
1404
|
+
}> | undefined;
|
|
1405
|
+
readonly security?: {
|
|
1406
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1407
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1408
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1409
|
+
} | undefined;
|
|
1410
|
+
readonly sign?: boolean | undefined;
|
|
1411
|
+
readonly storeQueries?: boolean | undefined;
|
|
1412
|
+
readonly timestamp?: boolean | undefined;
|
|
1413
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1414
|
+
schema: "network.xyo.module.config";
|
|
1415
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1416
|
+
accountDerivationPath?: string | undefined;
|
|
1417
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1418
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1419
|
+
readonly name?: string | undefined;
|
|
1420
|
+
readonly paging?: Record<string, {
|
|
1421
|
+
size?: number | undefined;
|
|
1422
|
+
}> | undefined;
|
|
1423
|
+
readonly security?: {
|
|
1424
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1425
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1426
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1427
|
+
} | undefined;
|
|
1428
|
+
readonly sign?: boolean | undefined;
|
|
1429
|
+
readonly storeQueries?: boolean | undefined;
|
|
1430
|
+
readonly timestamp?: boolean | undefined;
|
|
1431
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1432
|
+
schema: "network.xyo.module.config";
|
|
1433
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1434
|
+
accountDerivationPath?: string | undefined;
|
|
1435
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1436
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1437
|
+
readonly name?: string | undefined;
|
|
1438
|
+
readonly paging?: Record<string, {
|
|
1439
|
+
size?: number | undefined;
|
|
1440
|
+
}> | undefined;
|
|
1441
|
+
readonly security?: {
|
|
1442
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1443
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1444
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1445
|
+
} | undefined;
|
|
1446
|
+
readonly sign?: boolean | undefined;
|
|
1447
|
+
readonly storeQueries?: boolean | undefined;
|
|
1448
|
+
readonly timestamp?: boolean | undefined;
|
|
1449
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1450
|
+
schema: "network.xyo.module.config";
|
|
1451
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1452
|
+
accountDerivationPath?: string | undefined;
|
|
1453
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1454
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1455
|
+
readonly name?: string | undefined;
|
|
1456
|
+
readonly paging?: Record<string, {
|
|
1457
|
+
size?: number | undefined;
|
|
1458
|
+
}> | undefined;
|
|
1459
|
+
readonly security?: {
|
|
1460
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1461
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1462
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1463
|
+
} | undefined;
|
|
1464
|
+
readonly sign?: boolean | undefined;
|
|
1465
|
+
readonly storeQueries?: boolean | undefined;
|
|
1466
|
+
readonly timestamp?: boolean | undefined;
|
|
1467
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1468
|
+
schema: "network.xyo.module.config";
|
|
1469
|
+
})>(query: T_1, payloads?: ({
|
|
1470
|
+
schema: string;
|
|
1471
|
+
} & import("@xyo-network/payload-model").PayloadFields)[] | undefined, queryConfig?: TConf_1 | undefined) => import("@xylabs/promise").Promisable<boolean>;
|
|
1472
|
+
start?: (() => import("@xylabs/promise").Promisable<boolean>) | undefined;
|
|
1473
|
+
stop?: (() => import("@xylabs/promise").Promisable<boolean>) | undefined;
|
|
1474
|
+
eventData: import("@xyo-network/module-model").ModuleEventData<object>;
|
|
1475
|
+
clearListeners(eventNames: keyof import("@xyo-network/module-model").ModuleEventData<object> | (keyof import("@xyo-network/module-model").ModuleEventData<object>)[]): void;
|
|
1476
|
+
emit<TEventName extends keyof import("@xyo-network/module-model").ModuleEventData<object>>(eventName: TEventName, eventArgs: import("@xyo-network/module-model").ModuleEventData<object>[TEventName]): Promise<void>;
|
|
1477
|
+
emitSerial<TEventName_1 extends keyof import("@xyo-network/module-model").ModuleEventData<object>>(eventName: TEventName_1, eventArgs: import("@xyo-network/module-model").ModuleEventData<object>[TEventName_1]): Promise<void>;
|
|
1478
|
+
listenerCount(eventNames: keyof import("@xyo-network/module-model").ModuleEventData<object> | (keyof import("@xyo-network/module-model").ModuleEventData<object>)[]): number;
|
|
1479
|
+
off<TEventName_2 extends keyof import("@xyo-network/module-model").ModuleEventData<object>>(eventNames: TEventName_2 | TEventName_2[], listener: import("@xyo-network/module-events").EventListener<import("@xyo-network/module-model").ModuleEventData<object>[TEventName_2]>): void;
|
|
1480
|
+
offAny(listener: Promise<void> | import("@xyo-network/module-events").EventAnyListener<import("@xyo-network/module-events").EventArgs>): void;
|
|
1481
|
+
on<TEventName_3 extends keyof import("@xyo-network/module-model").ModuleEventData<object>>(eventNames: TEventName_3 | TEventName_3[], listener: import("@xyo-network/module-events").EventListener<import("@xyo-network/module-model").ModuleEventData<object>[TEventName_3]>): import("@xyo-network/module-events").EventUnsubscribeFunction;
|
|
1482
|
+
onAny(listener: import("@xyo-network/module-events").EventAnyListener<import("@xyo-network/module-events").EventArgs>): import("@xyo-network/module-events").EventUnsubscribeFunction;
|
|
1483
|
+
once<TEventName_4 extends keyof import("@xyo-network/module-model").ModuleEventData<object>>(eventName: TEventName_4, listener: import("@xyo-network/module-events").EventListener<import("@xyo-network/module-model").ModuleEventData<object>[TEventName_4]>): import("@xyo-network/module-events").EventUnsubscribeFunction;
|
|
1484
|
+
resolve<T_2 extends ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
1485
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
1486
|
+
config: (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
1487
|
+
accountDerivationPath?: string | undefined;
|
|
1488
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1489
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1490
|
+
readonly name?: string | undefined;
|
|
1491
|
+
readonly paging?: Record<string, {
|
|
1492
|
+
size?: number | undefined;
|
|
1493
|
+
}> | undefined;
|
|
1494
|
+
readonly security?: {
|
|
1495
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1496
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1497
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1498
|
+
} | undefined;
|
|
1499
|
+
readonly sign?: boolean | undefined;
|
|
1500
|
+
readonly storeQueries?: boolean | undefined;
|
|
1501
|
+
readonly timestamp?: boolean | undefined;
|
|
1502
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1503
|
+
schema: string;
|
|
1504
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1505
|
+
accountDerivationPath?: string | undefined;
|
|
1506
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1507
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1508
|
+
readonly name?: string | undefined;
|
|
1509
|
+
readonly paging?: Record<string, {
|
|
1510
|
+
size?: number | undefined;
|
|
1511
|
+
}> | undefined;
|
|
1512
|
+
readonly security?: {
|
|
1513
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1514
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1515
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1516
|
+
} | undefined;
|
|
1517
|
+
readonly sign?: boolean | undefined;
|
|
1518
|
+
readonly storeQueries?: boolean | undefined;
|
|
1519
|
+
readonly timestamp?: boolean | undefined;
|
|
1520
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1521
|
+
schema: "network.xyo.module.config";
|
|
1522
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1523
|
+
accountDerivationPath?: string | undefined;
|
|
1524
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1525
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1526
|
+
readonly name?: string | undefined;
|
|
1527
|
+
readonly paging?: Record<string, {
|
|
1528
|
+
size?: number | undefined;
|
|
1529
|
+
}> | undefined;
|
|
1530
|
+
readonly security?: {
|
|
1531
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1532
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1533
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1534
|
+
} | undefined;
|
|
1535
|
+
readonly sign?: boolean | undefined;
|
|
1536
|
+
readonly storeQueries?: boolean | undefined;
|
|
1537
|
+
readonly timestamp?: boolean | undefined;
|
|
1538
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1539
|
+
schema: "network.xyo.module.config";
|
|
1540
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1541
|
+
accountDerivationPath?: string | undefined;
|
|
1542
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1543
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1544
|
+
readonly name?: string | undefined;
|
|
1545
|
+
readonly paging?: Record<string, {
|
|
1546
|
+
size?: number | undefined;
|
|
1547
|
+
}> | undefined;
|
|
1548
|
+
readonly security?: {
|
|
1549
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1550
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1551
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1552
|
+
} | undefined;
|
|
1553
|
+
readonly sign?: boolean | undefined;
|
|
1554
|
+
readonly storeQueries?: boolean | undefined;
|
|
1555
|
+
readonly timestamp?: boolean | undefined;
|
|
1556
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1557
|
+
schema: "network.xyo.module.config";
|
|
1558
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1559
|
+
accountDerivationPath?: string | undefined;
|
|
1560
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1561
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1562
|
+
readonly name?: string | undefined;
|
|
1563
|
+
readonly paging?: Record<string, {
|
|
1564
|
+
size?: number | undefined;
|
|
1565
|
+
}> | undefined;
|
|
1566
|
+
readonly security?: {
|
|
1567
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1568
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1569
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1570
|
+
} | undefined;
|
|
1571
|
+
readonly sign?: boolean | undefined;
|
|
1572
|
+
readonly storeQueries?: boolean | undefined;
|
|
1573
|
+
readonly timestamp?: boolean | undefined;
|
|
1574
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1575
|
+
schema: "network.xyo.module.config";
|
|
1576
|
+
}), "schema">, "schema"> & {
|
|
1577
|
+
schema: string;
|
|
1578
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
1579
|
+
accountDerivationPath?: string | undefined;
|
|
1580
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1581
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1582
|
+
readonly name?: string | undefined;
|
|
1583
|
+
readonly paging?: Record<string, {
|
|
1584
|
+
size?: number | undefined;
|
|
1585
|
+
}> | undefined;
|
|
1586
|
+
readonly security?: {
|
|
1587
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1588
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1589
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1590
|
+
} | undefined;
|
|
1591
|
+
readonly sign?: boolean | undefined;
|
|
1592
|
+
readonly storeQueries?: boolean | undefined;
|
|
1593
|
+
readonly timestamp?: boolean | undefined;
|
|
1594
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1595
|
+
schema: string;
|
|
1596
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1597
|
+
accountDerivationPath?: string | undefined;
|
|
1598
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1599
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1600
|
+
readonly name?: string | undefined;
|
|
1601
|
+
readonly paging?: Record<string, {
|
|
1602
|
+
size?: number | undefined;
|
|
1603
|
+
}> | undefined;
|
|
1604
|
+
readonly security?: {
|
|
1605
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1606
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1607
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1608
|
+
} | undefined;
|
|
1609
|
+
readonly sign?: boolean | undefined;
|
|
1610
|
+
readonly storeQueries?: boolean | undefined;
|
|
1611
|
+
readonly timestamp?: boolean | undefined;
|
|
1612
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1613
|
+
schema: "network.xyo.module.config";
|
|
1614
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1615
|
+
accountDerivationPath?: string | undefined;
|
|
1616
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1617
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1618
|
+
readonly name?: string | undefined;
|
|
1619
|
+
readonly paging?: Record<string, {
|
|
1620
|
+
size?: number | undefined;
|
|
1621
|
+
}> | undefined;
|
|
1622
|
+
readonly security?: {
|
|
1623
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1624
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1625
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1626
|
+
} | undefined;
|
|
1627
|
+
readonly sign?: boolean | undefined;
|
|
1628
|
+
readonly storeQueries?: boolean | undefined;
|
|
1629
|
+
readonly timestamp?: boolean | undefined;
|
|
1630
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1631
|
+
schema: "network.xyo.module.config";
|
|
1632
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1633
|
+
accountDerivationPath?: string | undefined;
|
|
1634
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1635
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1636
|
+
readonly name?: string | undefined;
|
|
1637
|
+
readonly paging?: Record<string, {
|
|
1638
|
+
size?: number | undefined;
|
|
1639
|
+
}> | undefined;
|
|
1640
|
+
readonly security?: {
|
|
1641
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1642
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1643
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1644
|
+
} | undefined;
|
|
1645
|
+
readonly sign?: boolean | undefined;
|
|
1646
|
+
readonly storeQueries?: boolean | undefined;
|
|
1647
|
+
readonly timestamp?: boolean | undefined;
|
|
1648
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1649
|
+
schema: "network.xyo.module.config";
|
|
1650
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1651
|
+
accountDerivationPath?: string | undefined;
|
|
1652
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1653
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1654
|
+
readonly name?: string | undefined;
|
|
1655
|
+
readonly paging?: Record<string, {
|
|
1656
|
+
size?: number | undefined;
|
|
1657
|
+
}> | undefined;
|
|
1658
|
+
readonly security?: {
|
|
1659
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1660
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1661
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1662
|
+
} | undefined;
|
|
1663
|
+
readonly sign?: boolean | undefined;
|
|
1664
|
+
readonly storeQueries?: boolean | undefined;
|
|
1665
|
+
readonly timestamp?: boolean | undefined;
|
|
1666
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1667
|
+
schema: "network.xyo.module.config";
|
|
1668
|
+
}), "schema">, "schema"> & {
|
|
1669
|
+
schema: string;
|
|
1670
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
1671
|
+
accountDerivationPath?: string | undefined;
|
|
1672
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1673
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1674
|
+
readonly name?: string | undefined;
|
|
1675
|
+
readonly paging?: Record<string, {
|
|
1676
|
+
size?: number | undefined;
|
|
1677
|
+
}> | undefined;
|
|
1678
|
+
readonly security?: {
|
|
1679
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1680
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1681
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1682
|
+
} | undefined;
|
|
1683
|
+
readonly sign?: boolean | undefined;
|
|
1684
|
+
readonly storeQueries?: boolean | undefined;
|
|
1685
|
+
readonly timestamp?: boolean | undefined;
|
|
1686
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1687
|
+
schema: string;
|
|
1688
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1689
|
+
accountDerivationPath?: string | undefined;
|
|
1690
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1691
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1692
|
+
readonly name?: string | undefined;
|
|
1693
|
+
readonly paging?: Record<string, {
|
|
1694
|
+
size?: number | undefined;
|
|
1695
|
+
}> | undefined;
|
|
1696
|
+
readonly security?: {
|
|
1697
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1698
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1699
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1700
|
+
} | undefined;
|
|
1701
|
+
readonly sign?: boolean | undefined;
|
|
1702
|
+
readonly storeQueries?: boolean | undefined;
|
|
1703
|
+
readonly timestamp?: boolean | undefined;
|
|
1704
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1705
|
+
schema: "network.xyo.module.config";
|
|
1706
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1707
|
+
accountDerivationPath?: string | undefined;
|
|
1708
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1709
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1710
|
+
readonly name?: string | undefined;
|
|
1711
|
+
readonly paging?: Record<string, {
|
|
1712
|
+
size?: number | undefined;
|
|
1713
|
+
}> | undefined;
|
|
1714
|
+
readonly security?: {
|
|
1715
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1716
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1717
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1718
|
+
} | undefined;
|
|
1719
|
+
readonly sign?: boolean | undefined;
|
|
1720
|
+
readonly storeQueries?: boolean | undefined;
|
|
1721
|
+
readonly timestamp?: boolean | undefined;
|
|
1722
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1723
|
+
schema: "network.xyo.module.config";
|
|
1724
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1725
|
+
accountDerivationPath?: string | undefined;
|
|
1726
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1727
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1728
|
+
readonly name?: string | undefined;
|
|
1729
|
+
readonly paging?: Record<string, {
|
|
1730
|
+
size?: number | undefined;
|
|
1731
|
+
}> | undefined;
|
|
1732
|
+
readonly security?: {
|
|
1733
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1734
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1735
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1736
|
+
} | undefined;
|
|
1737
|
+
readonly sign?: boolean | undefined;
|
|
1738
|
+
readonly storeQueries?: boolean | undefined;
|
|
1739
|
+
readonly timestamp?: boolean | undefined;
|
|
1740
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1741
|
+
schema: "network.xyo.module.config";
|
|
1742
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1743
|
+
accountDerivationPath?: string | undefined;
|
|
1744
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1745
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1746
|
+
readonly name?: string | undefined;
|
|
1747
|
+
readonly paging?: Record<string, {
|
|
1748
|
+
size?: number | undefined;
|
|
1749
|
+
}> | undefined;
|
|
1750
|
+
readonly security?: {
|
|
1751
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1752
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1753
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1754
|
+
} | undefined;
|
|
1755
|
+
readonly sign?: boolean | undefined;
|
|
1756
|
+
readonly storeQueries?: boolean | undefined;
|
|
1757
|
+
readonly timestamp?: boolean | undefined;
|
|
1758
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1759
|
+
schema: "network.xyo.module.config";
|
|
1760
|
+
}), "schema">, "schema"> & {
|
|
1761
|
+
schema: string;
|
|
1762
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
1763
|
+
accountDerivationPath?: string | undefined;
|
|
1764
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1765
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1766
|
+
readonly name?: string | undefined;
|
|
1767
|
+
readonly paging?: Record<string, {
|
|
1768
|
+
size?: number | undefined;
|
|
1769
|
+
}> | undefined;
|
|
1770
|
+
readonly security?: {
|
|
1771
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1772
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1773
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1774
|
+
} | undefined;
|
|
1775
|
+
readonly sign?: boolean | undefined;
|
|
1776
|
+
readonly storeQueries?: boolean | undefined;
|
|
1777
|
+
readonly timestamp?: boolean | undefined;
|
|
1778
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1779
|
+
schema: string;
|
|
1780
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1781
|
+
accountDerivationPath?: string | undefined;
|
|
1782
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1783
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1784
|
+
readonly name?: string | undefined;
|
|
1785
|
+
readonly paging?: Record<string, {
|
|
1786
|
+
size?: number | undefined;
|
|
1787
|
+
}> | undefined;
|
|
1788
|
+
readonly security?: {
|
|
1789
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1790
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1791
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1792
|
+
} | undefined;
|
|
1793
|
+
readonly sign?: boolean | undefined;
|
|
1794
|
+
readonly storeQueries?: boolean | undefined;
|
|
1795
|
+
readonly timestamp?: boolean | undefined;
|
|
1796
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1797
|
+
schema: "network.xyo.module.config";
|
|
1798
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1799
|
+
accountDerivationPath?: string | undefined;
|
|
1800
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1801
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1802
|
+
readonly name?: string | undefined;
|
|
1803
|
+
readonly paging?: Record<string, {
|
|
1804
|
+
size?: number | undefined;
|
|
1805
|
+
}> | undefined;
|
|
1806
|
+
readonly security?: {
|
|
1807
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1808
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1809
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1810
|
+
} | undefined;
|
|
1811
|
+
readonly sign?: boolean | undefined;
|
|
1812
|
+
readonly storeQueries?: boolean | undefined;
|
|
1813
|
+
readonly timestamp?: boolean | undefined;
|
|
1814
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1815
|
+
schema: "network.xyo.module.config";
|
|
1816
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1817
|
+
accountDerivationPath?: string | undefined;
|
|
1818
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1819
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1820
|
+
readonly name?: string | undefined;
|
|
1821
|
+
readonly paging?: Record<string, {
|
|
1822
|
+
size?: number | undefined;
|
|
1823
|
+
}> | undefined;
|
|
1824
|
+
readonly security?: {
|
|
1825
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1826
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1827
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1828
|
+
} | undefined;
|
|
1829
|
+
readonly sign?: boolean | undefined;
|
|
1830
|
+
readonly storeQueries?: boolean | undefined;
|
|
1831
|
+
readonly timestamp?: boolean | undefined;
|
|
1832
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1833
|
+
schema: "network.xyo.module.config";
|
|
1834
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1835
|
+
accountDerivationPath?: string | undefined;
|
|
1836
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1837
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1838
|
+
readonly name?: string | undefined;
|
|
1839
|
+
readonly paging?: Record<string, {
|
|
1840
|
+
size?: number | undefined;
|
|
1841
|
+
}> | undefined;
|
|
1842
|
+
readonly security?: {
|
|
1843
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1844
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1845
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1846
|
+
} | undefined;
|
|
1847
|
+
readonly sign?: boolean | undefined;
|
|
1848
|
+
readonly storeQueries?: boolean | undefined;
|
|
1849
|
+
readonly timestamp?: boolean | undefined;
|
|
1850
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1851
|
+
schema: "network.xyo.module.config";
|
|
1852
|
+
}), "schema">, "schema"> & {
|
|
1853
|
+
schema: string;
|
|
1854
|
+
});
|
|
1855
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
1856
|
+
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
1857
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
1858
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
1859
|
+
config: (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
1860
|
+
accountDerivationPath?: string | undefined;
|
|
1861
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1862
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1863
|
+
readonly name?: string | undefined;
|
|
1864
|
+
readonly paging?: Record<string, {
|
|
1865
|
+
size?: number | undefined;
|
|
1866
|
+
}> | undefined;
|
|
1867
|
+
readonly security?: {
|
|
1868
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1869
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1870
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1871
|
+
} | undefined;
|
|
1872
|
+
readonly sign?: boolean | undefined;
|
|
1873
|
+
readonly storeQueries?: boolean | undefined;
|
|
1874
|
+
readonly timestamp?: boolean | undefined;
|
|
1875
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1876
|
+
schema: string;
|
|
1877
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1878
|
+
accountDerivationPath?: string | undefined;
|
|
1879
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1880
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1881
|
+
readonly name?: string | undefined;
|
|
1882
|
+
readonly paging?: Record<string, {
|
|
1883
|
+
size?: number | undefined;
|
|
1884
|
+
}> | undefined;
|
|
1885
|
+
readonly security?: {
|
|
1886
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1887
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1888
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1889
|
+
} | undefined;
|
|
1890
|
+
readonly sign?: boolean | undefined;
|
|
1891
|
+
readonly storeQueries?: boolean | undefined;
|
|
1892
|
+
readonly timestamp?: boolean | undefined;
|
|
1893
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1894
|
+
schema: "network.xyo.module.config";
|
|
1895
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1896
|
+
accountDerivationPath?: string | undefined;
|
|
1897
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1898
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1899
|
+
readonly name?: string | undefined;
|
|
1900
|
+
readonly paging?: Record<string, {
|
|
1901
|
+
size?: number | undefined;
|
|
1902
|
+
}> | undefined;
|
|
1903
|
+
readonly security?: {
|
|
1904
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1905
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1906
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1907
|
+
} | undefined;
|
|
1908
|
+
readonly sign?: boolean | undefined;
|
|
1909
|
+
readonly storeQueries?: boolean | undefined;
|
|
1910
|
+
readonly timestamp?: boolean | undefined;
|
|
1911
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1912
|
+
schema: "network.xyo.module.config";
|
|
1913
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1914
|
+
accountDerivationPath?: string | undefined;
|
|
1915
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1916
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1917
|
+
readonly name?: string | undefined;
|
|
1918
|
+
readonly paging?: Record<string, {
|
|
1919
|
+
size?: number | undefined;
|
|
1920
|
+
}> | undefined;
|
|
1921
|
+
readonly security?: {
|
|
1922
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1923
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1924
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1925
|
+
} | undefined;
|
|
1926
|
+
readonly sign?: boolean | undefined;
|
|
1927
|
+
readonly storeQueries?: boolean | undefined;
|
|
1928
|
+
readonly timestamp?: boolean | undefined;
|
|
1929
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1930
|
+
schema: "network.xyo.module.config";
|
|
1931
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1932
|
+
accountDerivationPath?: string | undefined;
|
|
1933
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1934
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1935
|
+
readonly name?: string | undefined;
|
|
1936
|
+
readonly paging?: Record<string, {
|
|
1937
|
+
size?: number | undefined;
|
|
1938
|
+
}> | undefined;
|
|
1939
|
+
readonly security?: {
|
|
1940
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1941
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1942
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1943
|
+
} | undefined;
|
|
1944
|
+
readonly sign?: boolean | undefined;
|
|
1945
|
+
readonly storeQueries?: boolean | undefined;
|
|
1946
|
+
readonly timestamp?: boolean | undefined;
|
|
1947
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1948
|
+
schema: "network.xyo.module.config";
|
|
1949
|
+
}), "schema">, "schema"> & {
|
|
1950
|
+
schema: string;
|
|
1951
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
1952
|
+
accountDerivationPath?: string | undefined;
|
|
1953
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1954
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1955
|
+
readonly name?: string | undefined;
|
|
1956
|
+
readonly paging?: Record<string, {
|
|
1957
|
+
size?: number | undefined;
|
|
1958
|
+
}> | undefined;
|
|
1959
|
+
readonly security?: {
|
|
1960
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1961
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1962
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1963
|
+
} | undefined;
|
|
1964
|
+
readonly sign?: boolean | undefined;
|
|
1965
|
+
readonly storeQueries?: boolean | undefined;
|
|
1966
|
+
readonly timestamp?: boolean | undefined;
|
|
1967
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1968
|
+
schema: string;
|
|
1969
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
1970
|
+
accountDerivationPath?: string | undefined;
|
|
1971
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1972
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1973
|
+
readonly name?: string | undefined;
|
|
1974
|
+
readonly paging?: Record<string, {
|
|
1975
|
+
size?: number | undefined;
|
|
1976
|
+
}> | undefined;
|
|
1977
|
+
readonly security?: {
|
|
1978
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1979
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1980
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1981
|
+
} | undefined;
|
|
1982
|
+
readonly sign?: boolean | undefined;
|
|
1983
|
+
readonly storeQueries?: boolean | undefined;
|
|
1984
|
+
readonly timestamp?: boolean | undefined;
|
|
1985
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
1986
|
+
schema: "network.xyo.module.config";
|
|
1987
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
1988
|
+
accountDerivationPath?: string | undefined;
|
|
1989
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
1990
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
1991
|
+
readonly name?: string | undefined;
|
|
1992
|
+
readonly paging?: Record<string, {
|
|
1993
|
+
size?: number | undefined;
|
|
1994
|
+
}> | undefined;
|
|
1995
|
+
readonly security?: {
|
|
1996
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
1997
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
1998
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
1999
|
+
} | undefined;
|
|
2000
|
+
readonly sign?: boolean | undefined;
|
|
2001
|
+
readonly storeQueries?: boolean | undefined;
|
|
2002
|
+
readonly timestamp?: boolean | undefined;
|
|
2003
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2004
|
+
schema: "network.xyo.module.config";
|
|
2005
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
2006
|
+
accountDerivationPath?: string | undefined;
|
|
2007
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2008
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2009
|
+
readonly name?: string | undefined;
|
|
2010
|
+
readonly paging?: Record<string, {
|
|
2011
|
+
size?: number | undefined;
|
|
2012
|
+
}> | undefined;
|
|
2013
|
+
readonly security?: {
|
|
2014
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2015
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2016
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2017
|
+
} | undefined;
|
|
2018
|
+
readonly sign?: boolean | undefined;
|
|
2019
|
+
readonly storeQueries?: boolean | undefined;
|
|
2020
|
+
readonly timestamp?: boolean | undefined;
|
|
2021
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2022
|
+
schema: "network.xyo.module.config";
|
|
2023
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
2024
|
+
accountDerivationPath?: string | undefined;
|
|
2025
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2026
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2027
|
+
readonly name?: string | undefined;
|
|
2028
|
+
readonly paging?: Record<string, {
|
|
2029
|
+
size?: number | undefined;
|
|
2030
|
+
}> | undefined;
|
|
2031
|
+
readonly security?: {
|
|
2032
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2033
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2034
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2035
|
+
} | undefined;
|
|
2036
|
+
readonly sign?: boolean | undefined;
|
|
2037
|
+
readonly storeQueries?: boolean | undefined;
|
|
2038
|
+
readonly timestamp?: boolean | undefined;
|
|
2039
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2040
|
+
schema: "network.xyo.module.config";
|
|
2041
|
+
}), "schema">, "schema"> & {
|
|
2042
|
+
schema: string;
|
|
2043
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
2044
|
+
accountDerivationPath?: string | undefined;
|
|
2045
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2046
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2047
|
+
readonly name?: string | undefined;
|
|
2048
|
+
readonly paging?: Record<string, {
|
|
2049
|
+
size?: number | undefined;
|
|
2050
|
+
}> | undefined;
|
|
2051
|
+
readonly security?: {
|
|
2052
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2053
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2054
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2055
|
+
} | undefined;
|
|
2056
|
+
readonly sign?: boolean | undefined;
|
|
2057
|
+
readonly storeQueries?: boolean | undefined;
|
|
2058
|
+
readonly timestamp?: boolean | undefined;
|
|
2059
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2060
|
+
schema: string;
|
|
2061
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
2062
|
+
accountDerivationPath?: string | undefined;
|
|
2063
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2064
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2065
|
+
readonly name?: string | undefined;
|
|
2066
|
+
readonly paging?: Record<string, {
|
|
2067
|
+
size?: number | undefined;
|
|
2068
|
+
}> | undefined;
|
|
2069
|
+
readonly security?: {
|
|
2070
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2071
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2072
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2073
|
+
} | undefined;
|
|
2074
|
+
readonly sign?: boolean | undefined;
|
|
2075
|
+
readonly storeQueries?: boolean | undefined;
|
|
2076
|
+
readonly timestamp?: boolean | undefined;
|
|
2077
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2078
|
+
schema: "network.xyo.module.config";
|
|
2079
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
2080
|
+
accountDerivationPath?: string | undefined;
|
|
2081
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2082
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2083
|
+
readonly name?: string | undefined;
|
|
2084
|
+
readonly paging?: Record<string, {
|
|
2085
|
+
size?: number | undefined;
|
|
2086
|
+
}> | undefined;
|
|
2087
|
+
readonly security?: {
|
|
2088
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2089
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2090
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2091
|
+
} | undefined;
|
|
2092
|
+
readonly sign?: boolean | undefined;
|
|
2093
|
+
readonly storeQueries?: boolean | undefined;
|
|
2094
|
+
readonly timestamp?: boolean | undefined;
|
|
2095
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2096
|
+
schema: "network.xyo.module.config";
|
|
2097
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
2098
|
+
accountDerivationPath?: string | undefined;
|
|
2099
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2100
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2101
|
+
readonly name?: string | undefined;
|
|
2102
|
+
readonly paging?: Record<string, {
|
|
2103
|
+
size?: number | undefined;
|
|
2104
|
+
}> | undefined;
|
|
2105
|
+
readonly security?: {
|
|
2106
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2107
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2108
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2109
|
+
} | undefined;
|
|
2110
|
+
readonly sign?: boolean | undefined;
|
|
2111
|
+
readonly storeQueries?: boolean | undefined;
|
|
2112
|
+
readonly timestamp?: boolean | undefined;
|
|
2113
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2114
|
+
schema: "network.xyo.module.config";
|
|
2115
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
2116
|
+
accountDerivationPath?: string | undefined;
|
|
2117
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2118
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2119
|
+
readonly name?: string | undefined;
|
|
2120
|
+
readonly paging?: Record<string, {
|
|
2121
|
+
size?: number | undefined;
|
|
2122
|
+
}> | undefined;
|
|
2123
|
+
readonly security?: {
|
|
2124
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2125
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2126
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2127
|
+
} | undefined;
|
|
2128
|
+
readonly sign?: boolean | undefined;
|
|
2129
|
+
readonly storeQueries?: boolean | undefined;
|
|
2130
|
+
readonly timestamp?: boolean | undefined;
|
|
2131
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2132
|
+
schema: "network.xyo.module.config";
|
|
2133
|
+
}), "schema">, "schema"> & {
|
|
2134
|
+
schema: string;
|
|
2135
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
2136
|
+
accountDerivationPath?: string | undefined;
|
|
2137
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2138
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2139
|
+
readonly name?: string | undefined;
|
|
2140
|
+
readonly paging?: Record<string, {
|
|
2141
|
+
size?: number | undefined;
|
|
2142
|
+
}> | undefined;
|
|
2143
|
+
readonly security?: {
|
|
2144
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2145
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2146
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2147
|
+
} | undefined;
|
|
2148
|
+
readonly sign?: boolean | undefined;
|
|
2149
|
+
readonly storeQueries?: boolean | undefined;
|
|
2150
|
+
readonly timestamp?: boolean | undefined;
|
|
2151
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2152
|
+
schema: string;
|
|
2153
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
2154
|
+
accountDerivationPath?: string | undefined;
|
|
2155
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2156
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2157
|
+
readonly name?: string | undefined;
|
|
2158
|
+
readonly paging?: Record<string, {
|
|
2159
|
+
size?: number | undefined;
|
|
2160
|
+
}> | undefined;
|
|
2161
|
+
readonly security?: {
|
|
2162
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2163
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2164
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2165
|
+
} | undefined;
|
|
2166
|
+
readonly sign?: boolean | undefined;
|
|
2167
|
+
readonly storeQueries?: boolean | undefined;
|
|
2168
|
+
readonly timestamp?: boolean | undefined;
|
|
2169
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2170
|
+
schema: "network.xyo.module.config";
|
|
2171
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
2172
|
+
accountDerivationPath?: string | undefined;
|
|
2173
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2174
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2175
|
+
readonly name?: string | undefined;
|
|
2176
|
+
readonly paging?: Record<string, {
|
|
2177
|
+
size?: number | undefined;
|
|
2178
|
+
}> | undefined;
|
|
2179
|
+
readonly security?: {
|
|
2180
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2181
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2182
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2183
|
+
} | undefined;
|
|
2184
|
+
readonly sign?: boolean | undefined;
|
|
2185
|
+
readonly storeQueries?: boolean | undefined;
|
|
2186
|
+
readonly timestamp?: boolean | undefined;
|
|
2187
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2188
|
+
schema: "network.xyo.module.config";
|
|
2189
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
2190
|
+
accountDerivationPath?: string | undefined;
|
|
2191
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2192
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2193
|
+
readonly name?: string | undefined;
|
|
2194
|
+
readonly paging?: Record<string, {
|
|
2195
|
+
size?: number | undefined;
|
|
2196
|
+
}> | undefined;
|
|
2197
|
+
readonly security?: {
|
|
2198
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2199
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2200
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2201
|
+
} | undefined;
|
|
2202
|
+
readonly sign?: boolean | undefined;
|
|
2203
|
+
readonly storeQueries?: boolean | undefined;
|
|
2204
|
+
readonly timestamp?: boolean | undefined;
|
|
2205
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2206
|
+
schema: "network.xyo.module.config";
|
|
2207
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
2208
|
+
accountDerivationPath?: string | undefined;
|
|
2209
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2210
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2211
|
+
readonly name?: string | undefined;
|
|
2212
|
+
readonly paging?: Record<string, {
|
|
2213
|
+
size?: number | undefined;
|
|
2214
|
+
}> | undefined;
|
|
2215
|
+
readonly security?: {
|
|
2216
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2217
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2218
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2219
|
+
} | undefined;
|
|
2220
|
+
readonly sign?: boolean | undefined;
|
|
2221
|
+
readonly storeQueries?: boolean | undefined;
|
|
2222
|
+
readonly timestamp?: boolean | undefined;
|
|
2223
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2224
|
+
schema: "network.xyo.module.config";
|
|
2225
|
+
}), "schema">, "schema"> & {
|
|
2226
|
+
schema: string;
|
|
2227
|
+
});
|
|
2228
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
2229
|
+
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
2230
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>(filter?: import("@xyo-network/module-model").ModuleFilter<T_2> | undefined, options?: import("@xyo-network/module-model").ModuleFilterOptions<T_2> | undefined): import("@xylabs/promise").Promisable<T_2[]>;
|
|
2231
|
+
resolve<T_3 extends ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
2232
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
2233
|
+
config: (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
2234
|
+
accountDerivationPath?: string | undefined;
|
|
2235
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2236
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2237
|
+
readonly name?: string | undefined;
|
|
2238
|
+
readonly paging?: Record<string, {
|
|
2239
|
+
size?: number | undefined;
|
|
2240
|
+
}> | undefined;
|
|
2241
|
+
readonly security?: {
|
|
2242
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2243
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2244
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2245
|
+
} | undefined;
|
|
2246
|
+
readonly sign?: boolean | undefined;
|
|
2247
|
+
readonly storeQueries?: boolean | undefined;
|
|
2248
|
+
readonly timestamp?: boolean | undefined;
|
|
2249
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2250
|
+
schema: string;
|
|
2251
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
2252
|
+
accountDerivationPath?: string | undefined;
|
|
2253
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2254
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2255
|
+
readonly name?: string | undefined;
|
|
2256
|
+
readonly paging?: Record<string, {
|
|
2257
|
+
size?: number | undefined;
|
|
2258
|
+
}> | undefined;
|
|
2259
|
+
readonly security?: {
|
|
2260
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2261
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2262
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2263
|
+
} | undefined;
|
|
2264
|
+
readonly sign?: boolean | undefined;
|
|
2265
|
+
readonly storeQueries?: boolean | undefined;
|
|
2266
|
+
readonly timestamp?: boolean | undefined;
|
|
2267
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2268
|
+
schema: "network.xyo.module.config";
|
|
2269
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
2270
|
+
accountDerivationPath?: string | undefined;
|
|
2271
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2272
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2273
|
+
readonly name?: string | undefined;
|
|
2274
|
+
readonly paging?: Record<string, {
|
|
2275
|
+
size?: number | undefined;
|
|
2276
|
+
}> | undefined;
|
|
2277
|
+
readonly security?: {
|
|
2278
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2279
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2280
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2281
|
+
} | undefined;
|
|
2282
|
+
readonly sign?: boolean | undefined;
|
|
2283
|
+
readonly storeQueries?: boolean | undefined;
|
|
2284
|
+
readonly timestamp?: boolean | undefined;
|
|
2285
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2286
|
+
schema: "network.xyo.module.config";
|
|
2287
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
2288
|
+
accountDerivationPath?: string | undefined;
|
|
2289
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2290
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2291
|
+
readonly name?: string | undefined;
|
|
2292
|
+
readonly paging?: Record<string, {
|
|
2293
|
+
size?: number | undefined;
|
|
2294
|
+
}> | undefined;
|
|
2295
|
+
readonly security?: {
|
|
2296
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2297
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2298
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2299
|
+
} | undefined;
|
|
2300
|
+
readonly sign?: boolean | undefined;
|
|
2301
|
+
readonly storeQueries?: boolean | undefined;
|
|
2302
|
+
readonly timestamp?: boolean | undefined;
|
|
2303
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2304
|
+
schema: "network.xyo.module.config";
|
|
2305
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
2306
|
+
accountDerivationPath?: string | undefined;
|
|
2307
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2308
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2309
|
+
readonly name?: string | undefined;
|
|
2310
|
+
readonly paging?: Record<string, {
|
|
2311
|
+
size?: number | undefined;
|
|
2312
|
+
}> | undefined;
|
|
2313
|
+
readonly security?: {
|
|
2314
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2315
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2316
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2317
|
+
} | undefined;
|
|
2318
|
+
readonly sign?: boolean | undefined;
|
|
2319
|
+
readonly storeQueries?: boolean | undefined;
|
|
2320
|
+
readonly timestamp?: boolean | undefined;
|
|
2321
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2322
|
+
schema: "network.xyo.module.config";
|
|
2323
|
+
}), "schema">, "schema"> & {
|
|
2324
|
+
schema: string;
|
|
2325
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
2326
|
+
accountDerivationPath?: string | undefined;
|
|
2327
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2328
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2329
|
+
readonly name?: string | undefined;
|
|
2330
|
+
readonly paging?: Record<string, {
|
|
2331
|
+
size?: number | undefined;
|
|
2332
|
+
}> | undefined;
|
|
2333
|
+
readonly security?: {
|
|
2334
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2335
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2336
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2337
|
+
} | undefined;
|
|
2338
|
+
readonly sign?: boolean | undefined;
|
|
2339
|
+
readonly storeQueries?: boolean | undefined;
|
|
2340
|
+
readonly timestamp?: boolean | undefined;
|
|
2341
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2342
|
+
schema: string;
|
|
2343
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
2344
|
+
accountDerivationPath?: string | undefined;
|
|
2345
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2346
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2347
|
+
readonly name?: string | undefined;
|
|
2348
|
+
readonly paging?: Record<string, {
|
|
2349
|
+
size?: number | undefined;
|
|
2350
|
+
}> | undefined;
|
|
2351
|
+
readonly security?: {
|
|
2352
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2353
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2354
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2355
|
+
} | undefined;
|
|
2356
|
+
readonly sign?: boolean | undefined;
|
|
2357
|
+
readonly storeQueries?: boolean | undefined;
|
|
2358
|
+
readonly timestamp?: boolean | undefined;
|
|
2359
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2360
|
+
schema: "network.xyo.module.config";
|
|
2361
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
2362
|
+
accountDerivationPath?: string | undefined;
|
|
2363
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2364
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2365
|
+
readonly name?: string | undefined;
|
|
2366
|
+
readonly paging?: Record<string, {
|
|
2367
|
+
size?: number | undefined;
|
|
2368
|
+
}> | undefined;
|
|
2369
|
+
readonly security?: {
|
|
2370
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2371
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2372
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2373
|
+
} | undefined;
|
|
2374
|
+
readonly sign?: boolean | undefined;
|
|
2375
|
+
readonly storeQueries?: boolean | undefined;
|
|
2376
|
+
readonly timestamp?: boolean | undefined;
|
|
2377
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2378
|
+
schema: "network.xyo.module.config";
|
|
2379
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
2380
|
+
accountDerivationPath?: string | undefined;
|
|
2381
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2382
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2383
|
+
readonly name?: string | undefined;
|
|
2384
|
+
readonly paging?: Record<string, {
|
|
2385
|
+
size?: number | undefined;
|
|
2386
|
+
}> | undefined;
|
|
2387
|
+
readonly security?: {
|
|
2388
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2389
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2390
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2391
|
+
} | undefined;
|
|
2392
|
+
readonly sign?: boolean | undefined;
|
|
2393
|
+
readonly storeQueries?: boolean | undefined;
|
|
2394
|
+
readonly timestamp?: boolean | undefined;
|
|
2395
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2396
|
+
schema: "network.xyo.module.config";
|
|
2397
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
2398
|
+
accountDerivationPath?: string | undefined;
|
|
2399
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2400
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2401
|
+
readonly name?: string | undefined;
|
|
2402
|
+
readonly paging?: Record<string, {
|
|
2403
|
+
size?: number | undefined;
|
|
2404
|
+
}> | undefined;
|
|
2405
|
+
readonly security?: {
|
|
2406
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2407
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2408
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2409
|
+
} | undefined;
|
|
2410
|
+
readonly sign?: boolean | undefined;
|
|
2411
|
+
readonly storeQueries?: boolean | undefined;
|
|
2412
|
+
readonly timestamp?: boolean | undefined;
|
|
2413
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2414
|
+
schema: "network.xyo.module.config";
|
|
2415
|
+
}), "schema">, "schema"> & {
|
|
2416
|
+
schema: string;
|
|
2417
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
2418
|
+
accountDerivationPath?: string | undefined;
|
|
2419
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2420
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2421
|
+
readonly name?: string | undefined;
|
|
2422
|
+
readonly paging?: Record<string, {
|
|
2423
|
+
size?: number | undefined;
|
|
2424
|
+
}> | undefined;
|
|
2425
|
+
readonly security?: {
|
|
2426
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2427
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2428
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2429
|
+
} | undefined;
|
|
2430
|
+
readonly sign?: boolean | undefined;
|
|
2431
|
+
readonly storeQueries?: boolean | undefined;
|
|
2432
|
+
readonly timestamp?: boolean | undefined;
|
|
2433
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2434
|
+
schema: string;
|
|
2435
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
2436
|
+
accountDerivationPath?: string | undefined;
|
|
2437
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2438
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2439
|
+
readonly name?: string | undefined;
|
|
2440
|
+
readonly paging?: Record<string, {
|
|
2441
|
+
size?: number | undefined;
|
|
2442
|
+
}> | undefined;
|
|
2443
|
+
readonly security?: {
|
|
2444
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2445
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2446
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2447
|
+
} | undefined;
|
|
2448
|
+
readonly sign?: boolean | undefined;
|
|
2449
|
+
readonly storeQueries?: boolean | undefined;
|
|
2450
|
+
readonly timestamp?: boolean | undefined;
|
|
2451
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2452
|
+
schema: "network.xyo.module.config";
|
|
2453
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
2454
|
+
accountDerivationPath?: string | undefined;
|
|
2455
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2456
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2457
|
+
readonly name?: string | undefined;
|
|
2458
|
+
readonly paging?: Record<string, {
|
|
2459
|
+
size?: number | undefined;
|
|
2460
|
+
}> | undefined;
|
|
2461
|
+
readonly security?: {
|
|
2462
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2463
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2464
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2465
|
+
} | undefined;
|
|
2466
|
+
readonly sign?: boolean | undefined;
|
|
2467
|
+
readonly storeQueries?: boolean | undefined;
|
|
2468
|
+
readonly timestamp?: boolean | undefined;
|
|
2469
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2470
|
+
schema: "network.xyo.module.config";
|
|
2471
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
2472
|
+
accountDerivationPath?: string | undefined;
|
|
2473
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2474
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2475
|
+
readonly name?: string | undefined;
|
|
2476
|
+
readonly paging?: Record<string, {
|
|
2477
|
+
size?: number | undefined;
|
|
2478
|
+
}> | undefined;
|
|
2479
|
+
readonly security?: {
|
|
2480
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2481
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2482
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2483
|
+
} | undefined;
|
|
2484
|
+
readonly sign?: boolean | undefined;
|
|
2485
|
+
readonly storeQueries?: boolean | undefined;
|
|
2486
|
+
readonly timestamp?: boolean | undefined;
|
|
2487
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2488
|
+
schema: "network.xyo.module.config";
|
|
2489
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
2490
|
+
accountDerivationPath?: string | undefined;
|
|
2491
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2492
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2493
|
+
readonly name?: string | undefined;
|
|
2494
|
+
readonly paging?: Record<string, {
|
|
2495
|
+
size?: number | undefined;
|
|
2496
|
+
}> | undefined;
|
|
2497
|
+
readonly security?: {
|
|
2498
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2499
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2500
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2501
|
+
} | undefined;
|
|
2502
|
+
readonly sign?: boolean | undefined;
|
|
2503
|
+
readonly storeQueries?: boolean | undefined;
|
|
2504
|
+
readonly timestamp?: boolean | undefined;
|
|
2505
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2506
|
+
schema: "network.xyo.module.config";
|
|
2507
|
+
}), "schema">, "schema"> & {
|
|
2508
|
+
schema: string;
|
|
2509
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
2510
|
+
accountDerivationPath?: string | undefined;
|
|
2511
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2512
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2513
|
+
readonly name?: string | undefined;
|
|
2514
|
+
readonly paging?: Record<string, {
|
|
2515
|
+
size?: number | undefined;
|
|
2516
|
+
}> | undefined;
|
|
2517
|
+
readonly security?: {
|
|
2518
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2519
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2520
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2521
|
+
} | undefined;
|
|
2522
|
+
readonly sign?: boolean | undefined;
|
|
2523
|
+
readonly storeQueries?: boolean | undefined;
|
|
2524
|
+
readonly timestamp?: boolean | undefined;
|
|
2525
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2526
|
+
schema: string;
|
|
2527
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
2528
|
+
accountDerivationPath?: string | undefined;
|
|
2529
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2530
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2531
|
+
readonly name?: string | undefined;
|
|
2532
|
+
readonly paging?: Record<string, {
|
|
2533
|
+
size?: number | undefined;
|
|
2534
|
+
}> | undefined;
|
|
2535
|
+
readonly security?: {
|
|
2536
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2537
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2538
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2539
|
+
} | undefined;
|
|
2540
|
+
readonly sign?: boolean | undefined;
|
|
2541
|
+
readonly storeQueries?: boolean | undefined;
|
|
2542
|
+
readonly timestamp?: boolean | undefined;
|
|
2543
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2544
|
+
schema: "network.xyo.module.config";
|
|
2545
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
2546
|
+
accountDerivationPath?: string | undefined;
|
|
2547
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2548
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2549
|
+
readonly name?: string | undefined;
|
|
2550
|
+
readonly paging?: Record<string, {
|
|
2551
|
+
size?: number | undefined;
|
|
2552
|
+
}> | undefined;
|
|
2553
|
+
readonly security?: {
|
|
2554
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2555
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2556
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2557
|
+
} | undefined;
|
|
2558
|
+
readonly sign?: boolean | undefined;
|
|
2559
|
+
readonly storeQueries?: boolean | undefined;
|
|
2560
|
+
readonly timestamp?: boolean | undefined;
|
|
2561
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2562
|
+
schema: "network.xyo.module.config";
|
|
2563
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
2564
|
+
accountDerivationPath?: string | undefined;
|
|
2565
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2566
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2567
|
+
readonly name?: string | undefined;
|
|
2568
|
+
readonly paging?: Record<string, {
|
|
2569
|
+
size?: number | undefined;
|
|
2570
|
+
}> | undefined;
|
|
2571
|
+
readonly security?: {
|
|
2572
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2573
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2574
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2575
|
+
} | undefined;
|
|
2576
|
+
readonly sign?: boolean | undefined;
|
|
2577
|
+
readonly storeQueries?: boolean | undefined;
|
|
2578
|
+
readonly timestamp?: boolean | undefined;
|
|
2579
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2580
|
+
schema: "network.xyo.module.config";
|
|
2581
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
2582
|
+
accountDerivationPath?: string | undefined;
|
|
2583
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2584
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2585
|
+
readonly name?: string | undefined;
|
|
2586
|
+
readonly paging?: Record<string, {
|
|
2587
|
+
size?: number | undefined;
|
|
2588
|
+
}> | undefined;
|
|
2589
|
+
readonly security?: {
|
|
2590
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2591
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2592
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2593
|
+
} | undefined;
|
|
2594
|
+
readonly sign?: boolean | undefined;
|
|
2595
|
+
readonly storeQueries?: boolean | undefined;
|
|
2596
|
+
readonly timestamp?: boolean | undefined;
|
|
2597
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2598
|
+
schema: "network.xyo.module.config";
|
|
2599
|
+
}), "schema">, "schema"> & {
|
|
2600
|
+
schema: string;
|
|
2601
|
+
});
|
|
2602
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
2603
|
+
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
2604
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
2605
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
2606
|
+
config: (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
2607
|
+
accountDerivationPath?: string | undefined;
|
|
2608
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2609
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2610
|
+
readonly name?: string | undefined;
|
|
2611
|
+
readonly paging?: Record<string, {
|
|
2612
|
+
size?: number | undefined;
|
|
2613
|
+
}> | undefined;
|
|
2614
|
+
readonly security?: {
|
|
2615
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2616
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2617
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2618
|
+
} | undefined;
|
|
2619
|
+
readonly sign?: boolean | undefined;
|
|
2620
|
+
readonly storeQueries?: boolean | undefined;
|
|
2621
|
+
readonly timestamp?: boolean | undefined;
|
|
2622
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2623
|
+
schema: string;
|
|
2624
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
2625
|
+
accountDerivationPath?: string | undefined;
|
|
2626
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2627
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2628
|
+
readonly name?: string | undefined;
|
|
2629
|
+
readonly paging?: Record<string, {
|
|
2630
|
+
size?: number | undefined;
|
|
2631
|
+
}> | undefined;
|
|
2632
|
+
readonly security?: {
|
|
2633
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2634
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2635
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2636
|
+
} | undefined;
|
|
2637
|
+
readonly sign?: boolean | undefined;
|
|
2638
|
+
readonly storeQueries?: boolean | undefined;
|
|
2639
|
+
readonly timestamp?: boolean | undefined;
|
|
2640
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2641
|
+
schema: "network.xyo.module.config";
|
|
2642
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
2643
|
+
accountDerivationPath?: string | undefined;
|
|
2644
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2645
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2646
|
+
readonly name?: string | undefined;
|
|
2647
|
+
readonly paging?: Record<string, {
|
|
2648
|
+
size?: number | undefined;
|
|
2649
|
+
}> | undefined;
|
|
2650
|
+
readonly security?: {
|
|
2651
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2652
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2653
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2654
|
+
} | undefined;
|
|
2655
|
+
readonly sign?: boolean | undefined;
|
|
2656
|
+
readonly storeQueries?: boolean | undefined;
|
|
2657
|
+
readonly timestamp?: boolean | undefined;
|
|
2658
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2659
|
+
schema: "network.xyo.module.config";
|
|
2660
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
2661
|
+
accountDerivationPath?: string | undefined;
|
|
2662
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2663
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2664
|
+
readonly name?: string | undefined;
|
|
2665
|
+
readonly paging?: Record<string, {
|
|
2666
|
+
size?: number | undefined;
|
|
2667
|
+
}> | undefined;
|
|
2668
|
+
readonly security?: {
|
|
2669
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2670
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2671
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2672
|
+
} | undefined;
|
|
2673
|
+
readonly sign?: boolean | undefined;
|
|
2674
|
+
readonly storeQueries?: boolean | undefined;
|
|
2675
|
+
readonly timestamp?: boolean | undefined;
|
|
2676
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2677
|
+
schema: "network.xyo.module.config";
|
|
2678
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
2679
|
+
accountDerivationPath?: string | undefined;
|
|
2680
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2681
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2682
|
+
readonly name?: string | undefined;
|
|
2683
|
+
readonly paging?: Record<string, {
|
|
2684
|
+
size?: number | undefined;
|
|
2685
|
+
}> | undefined;
|
|
2686
|
+
readonly security?: {
|
|
2687
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2688
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2689
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2690
|
+
} | undefined;
|
|
2691
|
+
readonly sign?: boolean | undefined;
|
|
2692
|
+
readonly storeQueries?: boolean | undefined;
|
|
2693
|
+
readonly timestamp?: boolean | undefined;
|
|
2694
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2695
|
+
schema: "network.xyo.module.config";
|
|
2696
|
+
}), "schema">, "schema"> & {
|
|
2697
|
+
schema: string;
|
|
2698
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
2699
|
+
accountDerivationPath?: string | undefined;
|
|
2700
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2701
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2702
|
+
readonly name?: string | undefined;
|
|
2703
|
+
readonly paging?: Record<string, {
|
|
2704
|
+
size?: number | undefined;
|
|
2705
|
+
}> | undefined;
|
|
2706
|
+
readonly security?: {
|
|
2707
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2708
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2709
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2710
|
+
} | undefined;
|
|
2711
|
+
readonly sign?: boolean | undefined;
|
|
2712
|
+
readonly storeQueries?: boolean | undefined;
|
|
2713
|
+
readonly timestamp?: boolean | undefined;
|
|
2714
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2715
|
+
schema: string;
|
|
2716
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
2717
|
+
accountDerivationPath?: string | undefined;
|
|
2718
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2719
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2720
|
+
readonly name?: string | undefined;
|
|
2721
|
+
readonly paging?: Record<string, {
|
|
2722
|
+
size?: number | undefined;
|
|
2723
|
+
}> | undefined;
|
|
2724
|
+
readonly security?: {
|
|
2725
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2726
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2727
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2728
|
+
} | undefined;
|
|
2729
|
+
readonly sign?: boolean | undefined;
|
|
2730
|
+
readonly storeQueries?: boolean | undefined;
|
|
2731
|
+
readonly timestamp?: boolean | undefined;
|
|
2732
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2733
|
+
schema: "network.xyo.module.config";
|
|
2734
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
2735
|
+
accountDerivationPath?: string | undefined;
|
|
2736
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2737
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2738
|
+
readonly name?: string | undefined;
|
|
2739
|
+
readonly paging?: Record<string, {
|
|
2740
|
+
size?: number | undefined;
|
|
2741
|
+
}> | undefined;
|
|
2742
|
+
readonly security?: {
|
|
2743
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2744
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2745
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2746
|
+
} | undefined;
|
|
2747
|
+
readonly sign?: boolean | undefined;
|
|
2748
|
+
readonly storeQueries?: boolean | undefined;
|
|
2749
|
+
readonly timestamp?: boolean | undefined;
|
|
2750
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2751
|
+
schema: "network.xyo.module.config";
|
|
2752
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
2753
|
+
accountDerivationPath?: string | undefined;
|
|
2754
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2755
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2756
|
+
readonly name?: string | undefined;
|
|
2757
|
+
readonly paging?: Record<string, {
|
|
2758
|
+
size?: number | undefined;
|
|
2759
|
+
}> | undefined;
|
|
2760
|
+
readonly security?: {
|
|
2761
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2762
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2763
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2764
|
+
} | undefined;
|
|
2765
|
+
readonly sign?: boolean | undefined;
|
|
2766
|
+
readonly storeQueries?: boolean | undefined;
|
|
2767
|
+
readonly timestamp?: boolean | undefined;
|
|
2768
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2769
|
+
schema: "network.xyo.module.config";
|
|
2770
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
2771
|
+
accountDerivationPath?: string | undefined;
|
|
2772
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2773
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2774
|
+
readonly name?: string | undefined;
|
|
2775
|
+
readonly paging?: Record<string, {
|
|
2776
|
+
size?: number | undefined;
|
|
2777
|
+
}> | undefined;
|
|
2778
|
+
readonly security?: {
|
|
2779
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2780
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2781
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2782
|
+
} | undefined;
|
|
2783
|
+
readonly sign?: boolean | undefined;
|
|
2784
|
+
readonly storeQueries?: boolean | undefined;
|
|
2785
|
+
readonly timestamp?: boolean | undefined;
|
|
2786
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2787
|
+
schema: "network.xyo.module.config";
|
|
2788
|
+
}), "schema">, "schema"> & {
|
|
2789
|
+
schema: string;
|
|
2790
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
2791
|
+
accountDerivationPath?: string | undefined;
|
|
2792
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2793
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2794
|
+
readonly name?: string | undefined;
|
|
2795
|
+
readonly paging?: Record<string, {
|
|
2796
|
+
size?: number | undefined;
|
|
2797
|
+
}> | undefined;
|
|
2798
|
+
readonly security?: {
|
|
2799
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2800
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2801
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2802
|
+
} | undefined;
|
|
2803
|
+
readonly sign?: boolean | undefined;
|
|
2804
|
+
readonly storeQueries?: boolean | undefined;
|
|
2805
|
+
readonly timestamp?: boolean | undefined;
|
|
2806
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2807
|
+
schema: string;
|
|
2808
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
2809
|
+
accountDerivationPath?: string | undefined;
|
|
2810
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2811
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2812
|
+
readonly name?: string | undefined;
|
|
2813
|
+
readonly paging?: Record<string, {
|
|
2814
|
+
size?: number | undefined;
|
|
2815
|
+
}> | undefined;
|
|
2816
|
+
readonly security?: {
|
|
2817
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2818
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2819
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2820
|
+
} | undefined;
|
|
2821
|
+
readonly sign?: boolean | undefined;
|
|
2822
|
+
readonly storeQueries?: boolean | undefined;
|
|
2823
|
+
readonly timestamp?: boolean | undefined;
|
|
2824
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2825
|
+
schema: "network.xyo.module.config";
|
|
2826
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
2827
|
+
accountDerivationPath?: string | undefined;
|
|
2828
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2829
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2830
|
+
readonly name?: string | undefined;
|
|
2831
|
+
readonly paging?: Record<string, {
|
|
2832
|
+
size?: number | undefined;
|
|
2833
|
+
}> | undefined;
|
|
2834
|
+
readonly security?: {
|
|
2835
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2836
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2837
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2838
|
+
} | undefined;
|
|
2839
|
+
readonly sign?: boolean | undefined;
|
|
2840
|
+
readonly storeQueries?: boolean | undefined;
|
|
2841
|
+
readonly timestamp?: boolean | undefined;
|
|
2842
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2843
|
+
schema: "network.xyo.module.config";
|
|
2844
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
2845
|
+
accountDerivationPath?: string | undefined;
|
|
2846
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2847
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2848
|
+
readonly name?: string | undefined;
|
|
2849
|
+
readonly paging?: Record<string, {
|
|
2850
|
+
size?: number | undefined;
|
|
2851
|
+
}> | undefined;
|
|
2852
|
+
readonly security?: {
|
|
2853
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2854
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2855
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2856
|
+
} | undefined;
|
|
2857
|
+
readonly sign?: boolean | undefined;
|
|
2858
|
+
readonly storeQueries?: boolean | undefined;
|
|
2859
|
+
readonly timestamp?: boolean | undefined;
|
|
2860
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2861
|
+
schema: "network.xyo.module.config";
|
|
2862
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
2863
|
+
accountDerivationPath?: string | undefined;
|
|
2864
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2865
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2866
|
+
readonly name?: string | undefined;
|
|
2867
|
+
readonly paging?: Record<string, {
|
|
2868
|
+
size?: number | undefined;
|
|
2869
|
+
}> | undefined;
|
|
2870
|
+
readonly security?: {
|
|
2871
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2872
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2873
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2874
|
+
} | undefined;
|
|
2875
|
+
readonly sign?: boolean | undefined;
|
|
2876
|
+
readonly storeQueries?: boolean | undefined;
|
|
2877
|
+
readonly timestamp?: boolean | undefined;
|
|
2878
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2879
|
+
schema: "network.xyo.module.config";
|
|
2880
|
+
}), "schema">, "schema"> & {
|
|
2881
|
+
schema: string;
|
|
2882
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
2883
|
+
accountDerivationPath?: string | undefined;
|
|
2884
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2885
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2886
|
+
readonly name?: string | undefined;
|
|
2887
|
+
readonly paging?: Record<string, {
|
|
2888
|
+
size?: number | undefined;
|
|
2889
|
+
}> | undefined;
|
|
2890
|
+
readonly security?: {
|
|
2891
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2892
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2893
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2894
|
+
} | undefined;
|
|
2895
|
+
readonly sign?: boolean | undefined;
|
|
2896
|
+
readonly storeQueries?: boolean | undefined;
|
|
2897
|
+
readonly timestamp?: boolean | undefined;
|
|
2898
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2899
|
+
schema: string;
|
|
2900
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
2901
|
+
accountDerivationPath?: string | undefined;
|
|
2902
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2903
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2904
|
+
readonly name?: string | undefined;
|
|
2905
|
+
readonly paging?: Record<string, {
|
|
2906
|
+
size?: number | undefined;
|
|
2907
|
+
}> | undefined;
|
|
2908
|
+
readonly security?: {
|
|
2909
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2910
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2911
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2912
|
+
} | undefined;
|
|
2913
|
+
readonly sign?: boolean | undefined;
|
|
2914
|
+
readonly storeQueries?: boolean | undefined;
|
|
2915
|
+
readonly timestamp?: boolean | undefined;
|
|
2916
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2917
|
+
schema: "network.xyo.module.config";
|
|
2918
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
2919
|
+
accountDerivationPath?: string | undefined;
|
|
2920
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2921
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2922
|
+
readonly name?: string | undefined;
|
|
2923
|
+
readonly paging?: Record<string, {
|
|
2924
|
+
size?: number | undefined;
|
|
2925
|
+
}> | undefined;
|
|
2926
|
+
readonly security?: {
|
|
2927
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2928
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2929
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2930
|
+
} | undefined;
|
|
2931
|
+
readonly sign?: boolean | undefined;
|
|
2932
|
+
readonly storeQueries?: boolean | undefined;
|
|
2933
|
+
readonly timestamp?: boolean | undefined;
|
|
2934
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2935
|
+
schema: "network.xyo.module.config";
|
|
2936
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
2937
|
+
accountDerivationPath?: string | undefined;
|
|
2938
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2939
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2940
|
+
readonly name?: string | undefined;
|
|
2941
|
+
readonly paging?: Record<string, {
|
|
2942
|
+
size?: number | undefined;
|
|
2943
|
+
}> | undefined;
|
|
2944
|
+
readonly security?: {
|
|
2945
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2946
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2947
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2948
|
+
} | undefined;
|
|
2949
|
+
readonly sign?: boolean | undefined;
|
|
2950
|
+
readonly storeQueries?: boolean | undefined;
|
|
2951
|
+
readonly timestamp?: boolean | undefined;
|
|
2952
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2953
|
+
schema: "network.xyo.module.config";
|
|
2954
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
2955
|
+
accountDerivationPath?: string | undefined;
|
|
2956
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2957
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2958
|
+
readonly name?: string | undefined;
|
|
2959
|
+
readonly paging?: Record<string, {
|
|
2960
|
+
size?: number | undefined;
|
|
2961
|
+
}> | undefined;
|
|
2962
|
+
readonly security?: {
|
|
2963
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2964
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2965
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2966
|
+
} | undefined;
|
|
2967
|
+
readonly sign?: boolean | undefined;
|
|
2968
|
+
readonly storeQueries?: boolean | undefined;
|
|
2969
|
+
readonly timestamp?: boolean | undefined;
|
|
2970
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2971
|
+
schema: "network.xyo.module.config";
|
|
2972
|
+
}), "schema">, "schema"> & {
|
|
2973
|
+
schema: string;
|
|
2974
|
+
});
|
|
2975
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
2976
|
+
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
2977
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>(nameOrAddress: string, options?: import("@xyo-network/module-model").ModuleFilterOptions<T_3> | undefined): import("@xylabs/promise").Promisable<T_3 | undefined>;
|
|
2978
|
+
resolve<T_4 extends ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
2979
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
2980
|
+
config: (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
2981
|
+
accountDerivationPath?: string | undefined;
|
|
2982
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
2983
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
2984
|
+
readonly name?: string | undefined;
|
|
2985
|
+
readonly paging?: Record<string, {
|
|
2986
|
+
size?: number | undefined;
|
|
2987
|
+
}> | undefined;
|
|
2988
|
+
readonly security?: {
|
|
2989
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
2990
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
2991
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
2992
|
+
} | undefined;
|
|
2993
|
+
readonly sign?: boolean | undefined;
|
|
2994
|
+
readonly storeQueries?: boolean | undefined;
|
|
2995
|
+
readonly timestamp?: boolean | undefined;
|
|
2996
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
2997
|
+
schema: string;
|
|
2998
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
2999
|
+
accountDerivationPath?: string | undefined;
|
|
3000
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3001
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3002
|
+
readonly name?: string | undefined;
|
|
3003
|
+
readonly paging?: Record<string, {
|
|
3004
|
+
size?: number | undefined;
|
|
3005
|
+
}> | undefined;
|
|
3006
|
+
readonly security?: {
|
|
3007
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3008
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3009
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3010
|
+
} | undefined;
|
|
3011
|
+
readonly sign?: boolean | undefined;
|
|
3012
|
+
readonly storeQueries?: boolean | undefined;
|
|
3013
|
+
readonly timestamp?: boolean | undefined;
|
|
3014
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3015
|
+
schema: "network.xyo.module.config";
|
|
3016
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
3017
|
+
accountDerivationPath?: string | undefined;
|
|
3018
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3019
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3020
|
+
readonly name?: string | undefined;
|
|
3021
|
+
readonly paging?: Record<string, {
|
|
3022
|
+
size?: number | undefined;
|
|
3023
|
+
}> | undefined;
|
|
3024
|
+
readonly security?: {
|
|
3025
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3026
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3027
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3028
|
+
} | undefined;
|
|
3029
|
+
readonly sign?: boolean | undefined;
|
|
3030
|
+
readonly storeQueries?: boolean | undefined;
|
|
3031
|
+
readonly timestamp?: boolean | undefined;
|
|
3032
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3033
|
+
schema: "network.xyo.module.config";
|
|
3034
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
3035
|
+
accountDerivationPath?: string | undefined;
|
|
3036
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3037
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3038
|
+
readonly name?: string | undefined;
|
|
3039
|
+
readonly paging?: Record<string, {
|
|
3040
|
+
size?: number | undefined;
|
|
3041
|
+
}> | undefined;
|
|
3042
|
+
readonly security?: {
|
|
3043
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3044
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3045
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3046
|
+
} | undefined;
|
|
3047
|
+
readonly sign?: boolean | undefined;
|
|
3048
|
+
readonly storeQueries?: boolean | undefined;
|
|
3049
|
+
readonly timestamp?: boolean | undefined;
|
|
3050
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3051
|
+
schema: "network.xyo.module.config";
|
|
3052
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
3053
|
+
accountDerivationPath?: string | undefined;
|
|
3054
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3055
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3056
|
+
readonly name?: string | undefined;
|
|
3057
|
+
readonly paging?: Record<string, {
|
|
3058
|
+
size?: number | undefined;
|
|
3059
|
+
}> | undefined;
|
|
3060
|
+
readonly security?: {
|
|
3061
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3062
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3063
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3064
|
+
} | undefined;
|
|
3065
|
+
readonly sign?: boolean | undefined;
|
|
3066
|
+
readonly storeQueries?: boolean | undefined;
|
|
3067
|
+
readonly timestamp?: boolean | undefined;
|
|
3068
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3069
|
+
schema: "network.xyo.module.config";
|
|
3070
|
+
}), "schema">, "schema"> & {
|
|
3071
|
+
schema: string;
|
|
3072
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
3073
|
+
accountDerivationPath?: string | undefined;
|
|
3074
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3075
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3076
|
+
readonly name?: string | undefined;
|
|
3077
|
+
readonly paging?: Record<string, {
|
|
3078
|
+
size?: number | undefined;
|
|
3079
|
+
}> | undefined;
|
|
3080
|
+
readonly security?: {
|
|
3081
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3082
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3083
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3084
|
+
} | undefined;
|
|
3085
|
+
readonly sign?: boolean | undefined;
|
|
3086
|
+
readonly storeQueries?: boolean | undefined;
|
|
3087
|
+
readonly timestamp?: boolean | undefined;
|
|
3088
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3089
|
+
schema: string;
|
|
3090
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
3091
|
+
accountDerivationPath?: string | undefined;
|
|
3092
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3093
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3094
|
+
readonly name?: string | undefined;
|
|
3095
|
+
readonly paging?: Record<string, {
|
|
3096
|
+
size?: number | undefined;
|
|
3097
|
+
}> | undefined;
|
|
3098
|
+
readonly security?: {
|
|
3099
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3100
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3101
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3102
|
+
} | undefined;
|
|
3103
|
+
readonly sign?: boolean | undefined;
|
|
3104
|
+
readonly storeQueries?: boolean | undefined;
|
|
3105
|
+
readonly timestamp?: boolean | undefined;
|
|
3106
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3107
|
+
schema: "network.xyo.module.config";
|
|
3108
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
3109
|
+
accountDerivationPath?: string | undefined;
|
|
3110
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3111
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3112
|
+
readonly name?: string | undefined;
|
|
3113
|
+
readonly paging?: Record<string, {
|
|
3114
|
+
size?: number | undefined;
|
|
3115
|
+
}> | undefined;
|
|
3116
|
+
readonly security?: {
|
|
3117
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3118
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3119
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3120
|
+
} | undefined;
|
|
3121
|
+
readonly sign?: boolean | undefined;
|
|
3122
|
+
readonly storeQueries?: boolean | undefined;
|
|
3123
|
+
readonly timestamp?: boolean | undefined;
|
|
3124
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3125
|
+
schema: "network.xyo.module.config";
|
|
3126
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
3127
|
+
accountDerivationPath?: string | undefined;
|
|
3128
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3129
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3130
|
+
readonly name?: string | undefined;
|
|
3131
|
+
readonly paging?: Record<string, {
|
|
3132
|
+
size?: number | undefined;
|
|
3133
|
+
}> | undefined;
|
|
3134
|
+
readonly security?: {
|
|
3135
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3136
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3137
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3138
|
+
} | undefined;
|
|
3139
|
+
readonly sign?: boolean | undefined;
|
|
3140
|
+
readonly storeQueries?: boolean | undefined;
|
|
3141
|
+
readonly timestamp?: boolean | undefined;
|
|
3142
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3143
|
+
schema: "network.xyo.module.config";
|
|
3144
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
3145
|
+
accountDerivationPath?: string | undefined;
|
|
3146
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3147
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3148
|
+
readonly name?: string | undefined;
|
|
3149
|
+
readonly paging?: Record<string, {
|
|
3150
|
+
size?: number | undefined;
|
|
3151
|
+
}> | undefined;
|
|
3152
|
+
readonly security?: {
|
|
3153
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3154
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3155
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3156
|
+
} | undefined;
|
|
3157
|
+
readonly sign?: boolean | undefined;
|
|
3158
|
+
readonly storeQueries?: boolean | undefined;
|
|
3159
|
+
readonly timestamp?: boolean | undefined;
|
|
3160
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3161
|
+
schema: "network.xyo.module.config";
|
|
3162
|
+
}), "schema">, "schema"> & {
|
|
3163
|
+
schema: string;
|
|
3164
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
3165
|
+
accountDerivationPath?: string | undefined;
|
|
3166
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3167
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3168
|
+
readonly name?: string | undefined;
|
|
3169
|
+
readonly paging?: Record<string, {
|
|
3170
|
+
size?: number | undefined;
|
|
3171
|
+
}> | undefined;
|
|
3172
|
+
readonly security?: {
|
|
3173
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3174
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3175
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3176
|
+
} | undefined;
|
|
3177
|
+
readonly sign?: boolean | undefined;
|
|
3178
|
+
readonly storeQueries?: boolean | undefined;
|
|
3179
|
+
readonly timestamp?: boolean | undefined;
|
|
3180
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3181
|
+
schema: string;
|
|
3182
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
3183
|
+
accountDerivationPath?: string | undefined;
|
|
3184
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3185
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3186
|
+
readonly name?: string | undefined;
|
|
3187
|
+
readonly paging?: Record<string, {
|
|
3188
|
+
size?: number | undefined;
|
|
3189
|
+
}> | undefined;
|
|
3190
|
+
readonly security?: {
|
|
3191
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3192
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3193
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3194
|
+
} | undefined;
|
|
3195
|
+
readonly sign?: boolean | undefined;
|
|
3196
|
+
readonly storeQueries?: boolean | undefined;
|
|
3197
|
+
readonly timestamp?: boolean | undefined;
|
|
3198
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3199
|
+
schema: "network.xyo.module.config";
|
|
3200
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
3201
|
+
accountDerivationPath?: string | undefined;
|
|
3202
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3203
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3204
|
+
readonly name?: string | undefined;
|
|
3205
|
+
readonly paging?: Record<string, {
|
|
3206
|
+
size?: number | undefined;
|
|
3207
|
+
}> | undefined;
|
|
3208
|
+
readonly security?: {
|
|
3209
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3210
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3211
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3212
|
+
} | undefined;
|
|
3213
|
+
readonly sign?: boolean | undefined;
|
|
3214
|
+
readonly storeQueries?: boolean | undefined;
|
|
3215
|
+
readonly timestamp?: boolean | undefined;
|
|
3216
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3217
|
+
schema: "network.xyo.module.config";
|
|
3218
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
3219
|
+
accountDerivationPath?: string | undefined;
|
|
3220
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3221
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3222
|
+
readonly name?: string | undefined;
|
|
3223
|
+
readonly paging?: Record<string, {
|
|
3224
|
+
size?: number | undefined;
|
|
3225
|
+
}> | undefined;
|
|
3226
|
+
readonly security?: {
|
|
3227
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3228
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3229
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3230
|
+
} | undefined;
|
|
3231
|
+
readonly sign?: boolean | undefined;
|
|
3232
|
+
readonly storeQueries?: boolean | undefined;
|
|
3233
|
+
readonly timestamp?: boolean | undefined;
|
|
3234
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3235
|
+
schema: "network.xyo.module.config";
|
|
3236
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
3237
|
+
accountDerivationPath?: string | undefined;
|
|
3238
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3239
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3240
|
+
readonly name?: string | undefined;
|
|
3241
|
+
readonly paging?: Record<string, {
|
|
3242
|
+
size?: number | undefined;
|
|
3243
|
+
}> | undefined;
|
|
3244
|
+
readonly security?: {
|
|
3245
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3246
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3247
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3248
|
+
} | undefined;
|
|
3249
|
+
readonly sign?: boolean | undefined;
|
|
3250
|
+
readonly storeQueries?: boolean | undefined;
|
|
3251
|
+
readonly timestamp?: boolean | undefined;
|
|
3252
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3253
|
+
schema: "network.xyo.module.config";
|
|
3254
|
+
}), "schema">, "schema"> & {
|
|
3255
|
+
schema: string;
|
|
3256
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
3257
|
+
accountDerivationPath?: string | undefined;
|
|
3258
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3259
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3260
|
+
readonly name?: string | undefined;
|
|
3261
|
+
readonly paging?: Record<string, {
|
|
3262
|
+
size?: number | undefined;
|
|
3263
|
+
}> | undefined;
|
|
3264
|
+
readonly security?: {
|
|
3265
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3266
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3267
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3268
|
+
} | undefined;
|
|
3269
|
+
readonly sign?: boolean | undefined;
|
|
3270
|
+
readonly storeQueries?: boolean | undefined;
|
|
3271
|
+
readonly timestamp?: boolean | undefined;
|
|
3272
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3273
|
+
schema: string;
|
|
3274
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
3275
|
+
accountDerivationPath?: string | undefined;
|
|
3276
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3277
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3278
|
+
readonly name?: string | undefined;
|
|
3279
|
+
readonly paging?: Record<string, {
|
|
3280
|
+
size?: number | undefined;
|
|
3281
|
+
}> | undefined;
|
|
3282
|
+
readonly security?: {
|
|
3283
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3284
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3285
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3286
|
+
} | undefined;
|
|
3287
|
+
readonly sign?: boolean | undefined;
|
|
3288
|
+
readonly storeQueries?: boolean | undefined;
|
|
3289
|
+
readonly timestamp?: boolean | undefined;
|
|
3290
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3291
|
+
schema: "network.xyo.module.config";
|
|
3292
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
3293
|
+
accountDerivationPath?: string | undefined;
|
|
3294
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3295
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3296
|
+
readonly name?: string | undefined;
|
|
3297
|
+
readonly paging?: Record<string, {
|
|
3298
|
+
size?: number | undefined;
|
|
3299
|
+
}> | undefined;
|
|
3300
|
+
readonly security?: {
|
|
3301
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3302
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3303
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3304
|
+
} | undefined;
|
|
3305
|
+
readonly sign?: boolean | undefined;
|
|
3306
|
+
readonly storeQueries?: boolean | undefined;
|
|
3307
|
+
readonly timestamp?: boolean | undefined;
|
|
3308
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3309
|
+
schema: "network.xyo.module.config";
|
|
3310
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
3311
|
+
accountDerivationPath?: string | undefined;
|
|
3312
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3313
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3314
|
+
readonly name?: string | undefined;
|
|
3315
|
+
readonly paging?: Record<string, {
|
|
3316
|
+
size?: number | undefined;
|
|
3317
|
+
}> | undefined;
|
|
3318
|
+
readonly security?: {
|
|
3319
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3320
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3321
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3322
|
+
} | undefined;
|
|
3323
|
+
readonly sign?: boolean | undefined;
|
|
3324
|
+
readonly storeQueries?: boolean | undefined;
|
|
3325
|
+
readonly timestamp?: boolean | undefined;
|
|
3326
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3327
|
+
schema: "network.xyo.module.config";
|
|
3328
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
3329
|
+
accountDerivationPath?: string | undefined;
|
|
3330
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3331
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3332
|
+
readonly name?: string | undefined;
|
|
3333
|
+
readonly paging?: Record<string, {
|
|
3334
|
+
size?: number | undefined;
|
|
3335
|
+
}> | undefined;
|
|
3336
|
+
readonly security?: {
|
|
3337
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3338
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3339
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3340
|
+
} | undefined;
|
|
3341
|
+
readonly sign?: boolean | undefined;
|
|
3342
|
+
readonly storeQueries?: boolean | undefined;
|
|
3343
|
+
readonly timestamp?: boolean | undefined;
|
|
3344
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3345
|
+
schema: "network.xyo.module.config";
|
|
3346
|
+
}), "schema">, "schema"> & {
|
|
3347
|
+
schema: string;
|
|
3348
|
+
});
|
|
3349
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
3350
|
+
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
3351
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
3352
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
3353
|
+
config: (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
3354
|
+
accountDerivationPath?: string | undefined;
|
|
3355
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3356
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3357
|
+
readonly name?: string | undefined;
|
|
3358
|
+
readonly paging?: Record<string, {
|
|
3359
|
+
size?: number | undefined;
|
|
3360
|
+
}> | undefined;
|
|
3361
|
+
readonly security?: {
|
|
3362
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3363
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3364
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3365
|
+
} | undefined;
|
|
3366
|
+
readonly sign?: boolean | undefined;
|
|
3367
|
+
readonly storeQueries?: boolean | undefined;
|
|
3368
|
+
readonly timestamp?: boolean | undefined;
|
|
3369
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3370
|
+
schema: string;
|
|
3371
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
3372
|
+
accountDerivationPath?: string | undefined;
|
|
3373
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3374
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3375
|
+
readonly name?: string | undefined;
|
|
3376
|
+
readonly paging?: Record<string, {
|
|
3377
|
+
size?: number | undefined;
|
|
3378
|
+
}> | undefined;
|
|
3379
|
+
readonly security?: {
|
|
3380
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3381
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3382
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3383
|
+
} | undefined;
|
|
3384
|
+
readonly sign?: boolean | undefined;
|
|
3385
|
+
readonly storeQueries?: boolean | undefined;
|
|
3386
|
+
readonly timestamp?: boolean | undefined;
|
|
3387
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3388
|
+
schema: "network.xyo.module.config";
|
|
3389
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
3390
|
+
accountDerivationPath?: string | undefined;
|
|
3391
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3392
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3393
|
+
readonly name?: string | undefined;
|
|
3394
|
+
readonly paging?: Record<string, {
|
|
3395
|
+
size?: number | undefined;
|
|
3396
|
+
}> | undefined;
|
|
3397
|
+
readonly security?: {
|
|
3398
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3399
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3400
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3401
|
+
} | undefined;
|
|
3402
|
+
readonly sign?: boolean | undefined;
|
|
3403
|
+
readonly storeQueries?: boolean | undefined;
|
|
3404
|
+
readonly timestamp?: boolean | undefined;
|
|
3405
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3406
|
+
schema: "network.xyo.module.config";
|
|
3407
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
3408
|
+
accountDerivationPath?: string | undefined;
|
|
3409
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3410
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3411
|
+
readonly name?: string | undefined;
|
|
3412
|
+
readonly paging?: Record<string, {
|
|
3413
|
+
size?: number | undefined;
|
|
3414
|
+
}> | undefined;
|
|
3415
|
+
readonly security?: {
|
|
3416
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3417
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3418
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3419
|
+
} | undefined;
|
|
3420
|
+
readonly sign?: boolean | undefined;
|
|
3421
|
+
readonly storeQueries?: boolean | undefined;
|
|
3422
|
+
readonly timestamp?: boolean | undefined;
|
|
3423
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3424
|
+
schema: "network.xyo.module.config";
|
|
3425
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
3426
|
+
accountDerivationPath?: string | undefined;
|
|
3427
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3428
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3429
|
+
readonly name?: string | undefined;
|
|
3430
|
+
readonly paging?: Record<string, {
|
|
3431
|
+
size?: number | undefined;
|
|
3432
|
+
}> | undefined;
|
|
3433
|
+
readonly security?: {
|
|
3434
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3435
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3436
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3437
|
+
} | undefined;
|
|
3438
|
+
readonly sign?: boolean | undefined;
|
|
3439
|
+
readonly storeQueries?: boolean | undefined;
|
|
3440
|
+
readonly timestamp?: boolean | undefined;
|
|
3441
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3442
|
+
schema: "network.xyo.module.config";
|
|
3443
|
+
}), "schema">, "schema"> & {
|
|
3444
|
+
schema: string;
|
|
3445
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
3446
|
+
accountDerivationPath?: string | undefined;
|
|
3447
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3448
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3449
|
+
readonly name?: string | undefined;
|
|
3450
|
+
readonly paging?: Record<string, {
|
|
3451
|
+
size?: number | undefined;
|
|
3452
|
+
}> | undefined;
|
|
3453
|
+
readonly security?: {
|
|
3454
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3455
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3456
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3457
|
+
} | undefined;
|
|
3458
|
+
readonly sign?: boolean | undefined;
|
|
3459
|
+
readonly storeQueries?: boolean | undefined;
|
|
3460
|
+
readonly timestamp?: boolean | undefined;
|
|
3461
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3462
|
+
schema: string;
|
|
3463
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
3464
|
+
accountDerivationPath?: string | undefined;
|
|
3465
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3466
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3467
|
+
readonly name?: string | undefined;
|
|
3468
|
+
readonly paging?: Record<string, {
|
|
3469
|
+
size?: number | undefined;
|
|
3470
|
+
}> | undefined;
|
|
3471
|
+
readonly security?: {
|
|
3472
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3473
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3474
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3475
|
+
} | undefined;
|
|
3476
|
+
readonly sign?: boolean | undefined;
|
|
3477
|
+
readonly storeQueries?: boolean | undefined;
|
|
3478
|
+
readonly timestamp?: boolean | undefined;
|
|
3479
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3480
|
+
schema: "network.xyo.module.config";
|
|
3481
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
3482
|
+
accountDerivationPath?: string | undefined;
|
|
3483
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3484
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3485
|
+
readonly name?: string | undefined;
|
|
3486
|
+
readonly paging?: Record<string, {
|
|
3487
|
+
size?: number | undefined;
|
|
3488
|
+
}> | undefined;
|
|
3489
|
+
readonly security?: {
|
|
3490
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3491
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3492
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3493
|
+
} | undefined;
|
|
3494
|
+
readonly sign?: boolean | undefined;
|
|
3495
|
+
readonly storeQueries?: boolean | undefined;
|
|
3496
|
+
readonly timestamp?: boolean | undefined;
|
|
3497
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3498
|
+
schema: "network.xyo.module.config";
|
|
3499
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
3500
|
+
accountDerivationPath?: string | undefined;
|
|
3501
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3502
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3503
|
+
readonly name?: string | undefined;
|
|
3504
|
+
readonly paging?: Record<string, {
|
|
3505
|
+
size?: number | undefined;
|
|
3506
|
+
}> | undefined;
|
|
3507
|
+
readonly security?: {
|
|
3508
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3509
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3510
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3511
|
+
} | undefined;
|
|
3512
|
+
readonly sign?: boolean | undefined;
|
|
3513
|
+
readonly storeQueries?: boolean | undefined;
|
|
3514
|
+
readonly timestamp?: boolean | undefined;
|
|
3515
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3516
|
+
schema: "network.xyo.module.config";
|
|
3517
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
3518
|
+
accountDerivationPath?: string | undefined;
|
|
3519
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3520
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3521
|
+
readonly name?: string | undefined;
|
|
3522
|
+
readonly paging?: Record<string, {
|
|
3523
|
+
size?: number | undefined;
|
|
3524
|
+
}> | undefined;
|
|
3525
|
+
readonly security?: {
|
|
3526
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3527
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3528
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3529
|
+
} | undefined;
|
|
3530
|
+
readonly sign?: boolean | undefined;
|
|
3531
|
+
readonly storeQueries?: boolean | undefined;
|
|
3532
|
+
readonly timestamp?: boolean | undefined;
|
|
3533
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3534
|
+
schema: "network.xyo.module.config";
|
|
3535
|
+
}), "schema">, "schema"> & {
|
|
3536
|
+
schema: string;
|
|
3537
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
3538
|
+
accountDerivationPath?: string | undefined;
|
|
3539
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3540
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3541
|
+
readonly name?: string | undefined;
|
|
3542
|
+
readonly paging?: Record<string, {
|
|
3543
|
+
size?: number | undefined;
|
|
3544
|
+
}> | undefined;
|
|
3545
|
+
readonly security?: {
|
|
3546
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3547
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3548
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3549
|
+
} | undefined;
|
|
3550
|
+
readonly sign?: boolean | undefined;
|
|
3551
|
+
readonly storeQueries?: boolean | undefined;
|
|
3552
|
+
readonly timestamp?: boolean | undefined;
|
|
3553
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3554
|
+
schema: string;
|
|
3555
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
3556
|
+
accountDerivationPath?: string | undefined;
|
|
3557
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3558
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3559
|
+
readonly name?: string | undefined;
|
|
3560
|
+
readonly paging?: Record<string, {
|
|
3561
|
+
size?: number | undefined;
|
|
3562
|
+
}> | undefined;
|
|
3563
|
+
readonly security?: {
|
|
3564
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3565
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3566
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3567
|
+
} | undefined;
|
|
3568
|
+
readonly sign?: boolean | undefined;
|
|
3569
|
+
readonly storeQueries?: boolean | undefined;
|
|
3570
|
+
readonly timestamp?: boolean | undefined;
|
|
3571
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3572
|
+
schema: "network.xyo.module.config";
|
|
3573
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
3574
|
+
accountDerivationPath?: string | undefined;
|
|
3575
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3576
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3577
|
+
readonly name?: string | undefined;
|
|
3578
|
+
readonly paging?: Record<string, {
|
|
3579
|
+
size?: number | undefined;
|
|
3580
|
+
}> | undefined;
|
|
3581
|
+
readonly security?: {
|
|
3582
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3583
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3584
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3585
|
+
} | undefined;
|
|
3586
|
+
readonly sign?: boolean | undefined;
|
|
3587
|
+
readonly storeQueries?: boolean | undefined;
|
|
3588
|
+
readonly timestamp?: boolean | undefined;
|
|
3589
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3590
|
+
schema: "network.xyo.module.config";
|
|
3591
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
3592
|
+
accountDerivationPath?: string | undefined;
|
|
3593
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3594
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3595
|
+
readonly name?: string | undefined;
|
|
3596
|
+
readonly paging?: Record<string, {
|
|
3597
|
+
size?: number | undefined;
|
|
3598
|
+
}> | undefined;
|
|
3599
|
+
readonly security?: {
|
|
3600
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3601
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3602
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3603
|
+
} | undefined;
|
|
3604
|
+
readonly sign?: boolean | undefined;
|
|
3605
|
+
readonly storeQueries?: boolean | undefined;
|
|
3606
|
+
readonly timestamp?: boolean | undefined;
|
|
3607
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3608
|
+
schema: "network.xyo.module.config";
|
|
3609
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
3610
|
+
accountDerivationPath?: string | undefined;
|
|
3611
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3612
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3613
|
+
readonly name?: string | undefined;
|
|
3614
|
+
readonly paging?: Record<string, {
|
|
3615
|
+
size?: number | undefined;
|
|
3616
|
+
}> | undefined;
|
|
3617
|
+
readonly security?: {
|
|
3618
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3619
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3620
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3621
|
+
} | undefined;
|
|
3622
|
+
readonly sign?: boolean | undefined;
|
|
3623
|
+
readonly storeQueries?: boolean | undefined;
|
|
3624
|
+
readonly timestamp?: boolean | undefined;
|
|
3625
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3626
|
+
schema: "network.xyo.module.config";
|
|
3627
|
+
}), "schema">, "schema"> & {
|
|
3628
|
+
schema: string;
|
|
3629
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & Omit<{
|
|
3630
|
+
accountDerivationPath?: string | undefined;
|
|
3631
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3632
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3633
|
+
readonly name?: string | undefined;
|
|
3634
|
+
readonly paging?: Record<string, {
|
|
3635
|
+
size?: number | undefined;
|
|
3636
|
+
}> | undefined;
|
|
3637
|
+
readonly security?: {
|
|
3638
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3639
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3640
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3641
|
+
} | undefined;
|
|
3642
|
+
readonly sign?: boolean | undefined;
|
|
3643
|
+
readonly storeQueries?: boolean | undefined;
|
|
3644
|
+
readonly timestamp?: boolean | undefined;
|
|
3645
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3646
|
+
schema: string;
|
|
3647
|
+
} & Omit<(import("@xyo-network/payload-model").SchemaFields & object & {
|
|
3648
|
+
accountDerivationPath?: string | undefined;
|
|
3649
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3650
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3651
|
+
readonly name?: string | undefined;
|
|
3652
|
+
readonly paging?: Record<string, {
|
|
3653
|
+
size?: number | undefined;
|
|
3654
|
+
}> | undefined;
|
|
3655
|
+
readonly security?: {
|
|
3656
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3657
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3658
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3659
|
+
} | undefined;
|
|
3660
|
+
readonly sign?: boolean | undefined;
|
|
3661
|
+
readonly storeQueries?: boolean | undefined;
|
|
3662
|
+
readonly timestamp?: boolean | undefined;
|
|
3663
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3664
|
+
schema: "network.xyo.module.config";
|
|
3665
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
3666
|
+
accountDerivationPath?: string | undefined;
|
|
3667
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3668
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3669
|
+
readonly name?: string | undefined;
|
|
3670
|
+
readonly paging?: Record<string, {
|
|
3671
|
+
size?: number | undefined;
|
|
3672
|
+
}> | undefined;
|
|
3673
|
+
readonly security?: {
|
|
3674
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3675
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3676
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3677
|
+
} | undefined;
|
|
3678
|
+
readonly sign?: boolean | undefined;
|
|
3679
|
+
readonly storeQueries?: boolean | undefined;
|
|
3680
|
+
readonly timestamp?: boolean | undefined;
|
|
3681
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3682
|
+
schema: "network.xyo.module.config";
|
|
3683
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & {
|
|
3684
|
+
accountDerivationPath?: string | undefined;
|
|
3685
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3686
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3687
|
+
readonly name?: string | undefined;
|
|
3688
|
+
readonly paging?: Record<string, {
|
|
3689
|
+
size?: number | undefined;
|
|
3690
|
+
}> | undefined;
|
|
3691
|
+
readonly security?: {
|
|
3692
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3693
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3694
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3695
|
+
} | undefined;
|
|
3696
|
+
readonly sign?: boolean | undefined;
|
|
3697
|
+
readonly storeQueries?: boolean | undefined;
|
|
3698
|
+
readonly timestamp?: boolean | undefined;
|
|
3699
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3700
|
+
schema: "network.xyo.module.config";
|
|
3701
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
3702
|
+
accountDerivationPath?: string | undefined;
|
|
3703
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
3704
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
3705
|
+
readonly name?: string | undefined;
|
|
3706
|
+
readonly paging?: Record<string, {
|
|
3707
|
+
size?: number | undefined;
|
|
3708
|
+
}> | undefined;
|
|
3709
|
+
readonly security?: {
|
|
3710
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
3711
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
3712
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
3713
|
+
} | undefined;
|
|
3714
|
+
readonly sign?: boolean | undefined;
|
|
3715
|
+
readonly storeQueries?: boolean | undefined;
|
|
3716
|
+
readonly timestamp?: boolean | undefined;
|
|
3717
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & {
|
|
3718
|
+
schema: "network.xyo.module.config";
|
|
3719
|
+
}), "schema">, "schema"> & {
|
|
3720
|
+
schema: string;
|
|
3721
|
+
});
|
|
3722
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
3723
|
+
wallet?: import("@xyo-network/wallet-model").WalletInstance | undefined;
|
|
3724
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>(nameOrAddressOrFilter?: string | import("@xyo-network/module-model").ModuleFilter<T_4> | undefined, options?: import("@xyo-network/module-model").ModuleFilterOptions<T_4> | undefined): import("@xylabs/promise").Promisable<T_4 | T_4[] | undefined>;
|
|
3725
|
+
describe: () => Promise<import("@xyo-network/module-model").ModuleDescription>;
|
|
3726
|
+
discover: () => import("@xylabs/promise").Promisable<({
|
|
3727
|
+
schema: string;
|
|
3728
|
+
} & import("@xyo-network/payload-model").PayloadFields)[]>;
|
|
3729
|
+
manifest: (maxDepth?: number | undefined, ignoreAddresses?: string[] | undefined) => import("@xylabs/promise").Promisable<(import("@xyo-network/payload-model").SchemaFields & object & import("@xyo-network/manifest-model").ModuleManifest & {
|
|
3730
|
+
schema: "network.xyo.module.manifest";
|
|
3731
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & import("@xyo-network/manifest-model").ModuleManifest & {
|
|
3732
|
+
schema: "network.xyo.module.manifest";
|
|
3733
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & import("@xyo-network/manifest-model").ModuleManifest & {
|
|
3734
|
+
schema: "network.xyo.module.manifest";
|
|
3735
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & import("@xyo-network/manifest-model").ModuleManifest & {
|
|
3736
|
+
schema: "network.xyo.module.manifest";
|
|
3737
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & object & import("@xyo-network/manifest-model").ModuleManifest & {
|
|
3738
|
+
schema: "network.xyo.node.manifest";
|
|
3739
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & import("@xyo-network/manifest-model").ModuleManifest & {
|
|
3740
|
+
schema: "network.xyo.node.manifest";
|
|
3741
|
+
} & object) | (import("@xyo-network/payload-model").SchemaFields & object & import("@xyo-network/manifest-model").ModuleManifest & {
|
|
3742
|
+
schema: "network.xyo.node.manifest";
|
|
3743
|
+
} & import("@xyo-network/payload-model").PayloadMetaFields) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & import("@xyo-network/manifest-model").ModuleManifest & {
|
|
3744
|
+
schema: "network.xyo.node.manifest";
|
|
3745
|
+
})>;
|
|
3746
|
+
moduleAddress: () => import("@xylabs/promise").Promisable<((import("@xyo-network/payload-model").SchemaFields & object & {
|
|
3747
|
+
address: string;
|
|
3748
|
+
previousHash?: string | undefined;
|
|
3749
|
+
schema: string;
|
|
3750
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadMetaFields & {
|
|
3751
|
+
address: string;
|
|
3752
|
+
previousHash?: string | undefined;
|
|
3753
|
+
schema: string;
|
|
3754
|
+
}))[]>;
|
|
3755
|
+
readonly downResolver: Omit<import("@xyo-network/module-model").ModuleResolver, "resolve">;
|
|
3756
|
+
readonly upResolver: Omit<import("@xyo-network/module-model").ModuleResolver, "resolve">;
|
|
3757
|
+
}) & TModule;
|
|
3758
|
+
//# sourceMappingURL=DivinerMixin.d.ts.map
|