@xyo-network/diviner-stateful 2.99.1 → 2.99.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/neutral/Config.d.cts +22 -0
- package/dist/neutral/Config.d.cts.map +1 -0
- package/dist/neutral/Config.d.mts +22 -0
- package/dist/neutral/Config.d.mts.map +1 -0
- package/dist/neutral/Config.d.ts +22 -0
- package/dist/neutral/Config.d.ts.map +1 -0
- package/dist/neutral/Diviner.d.cts +100 -0
- package/dist/neutral/Diviner.d.cts.map +1 -0
- package/dist/neutral/Diviner.d.mts +100 -0
- package/dist/neutral/Diviner.d.mts.map +1 -0
- package/dist/neutral/Diviner.d.ts +100 -0
- package/dist/neutral/Diviner.d.ts.map +1 -0
- package/dist/neutral/DivinerMixin.d.cts +515 -0
- package/dist/neutral/DivinerMixin.d.cts.map +1 -0
- package/dist/neutral/DivinerMixin.d.mts +515 -0
- package/dist/neutral/DivinerMixin.d.mts.map +1 -0
- package/dist/neutral/DivinerMixin.d.ts +515 -0
- package/dist/neutral/DivinerMixin.d.ts.map +1 -0
- package/dist/neutral/Params.d.cts +8 -0
- package/dist/neutral/Params.d.cts.map +1 -0
- package/dist/neutral/Params.d.mts +8 -0
- package/dist/neutral/Params.d.mts.map +1 -0
- package/dist/neutral/Params.d.ts +8 -0
- package/dist/neutral/Params.d.ts.map +1 -0
- package/dist/neutral/Schema.d.cts +3 -0
- package/dist/neutral/Schema.d.cts.map +1 -0
- package/dist/neutral/Schema.d.mts +3 -0
- package/dist/neutral/Schema.d.mts.map +1 -0
- package/dist/neutral/Schema.d.ts +3 -0
- package/dist/neutral/Schema.d.ts.map +1 -0
- package/dist/neutral/index.cjs +267 -0
- package/dist/neutral/index.cjs.map +1 -0
- package/dist/neutral/index.d.cts +6 -0
- package/dist/neutral/index.d.cts.map +1 -0
- package/dist/neutral/index.d.mts +6 -0
- package/dist/neutral/index.d.mts.map +1 -0
- package/dist/neutral/index.d.ts +6 -0
- package/dist/neutral/index.d.ts.map +1 -0
- package/dist/neutral/index.js +246 -0
- package/dist/neutral/index.js.map +1 -0
- package/package.json +23 -23
|
@@ -0,0 +1,515 @@
|
|
|
1
|
+
import { AnyConfigSchema, ModuleInstance, ModuleParams, ModuleState, StateDictionary } from '@xyo-network/module-model';
|
|
2
|
+
import { WithMeta } from '@xyo-network/payload-model';
|
|
3
|
+
import { StatefulDivinerConfig } from './Config';
|
|
4
|
+
export type StatefulModuleParams = ModuleParams<AnyConfigSchema<StatefulDivinerConfig>>;
|
|
5
|
+
export type AnyModule<TParams extends StatefulModuleParams = StatefulModuleParams> = new (...args: any[]) => ModuleInstance<TParams>;
|
|
6
|
+
/**
|
|
7
|
+
* @ignore Inherit from StatefulDiviner instead
|
|
8
|
+
* @param ModuleBase
|
|
9
|
+
* @returns
|
|
10
|
+
*/
|
|
11
|
+
export declare const StatefulModuleMixin: <TParams extends import("@xylabs/object").BaseParamsFields & {
|
|
12
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
13
|
+
addToResolvers?: boolean | undefined;
|
|
14
|
+
allowNameResolution?: boolean | undefined;
|
|
15
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
16
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
17
|
+
} & {
|
|
18
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
19
|
+
stateStore: {
|
|
20
|
+
archivist: string;
|
|
21
|
+
boundWitnessDiviner: string;
|
|
22
|
+
payloadDiviner: string;
|
|
23
|
+
};
|
|
24
|
+
}, "schema"> & {
|
|
25
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
26
|
+
}, "schema"> & {
|
|
27
|
+
schema: string;
|
|
28
|
+
};
|
|
29
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
30
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
31
|
+
} = import("@xylabs/object").BaseParamsFields & {
|
|
32
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
33
|
+
addToResolvers?: boolean | undefined;
|
|
34
|
+
allowNameResolution?: boolean | undefined;
|
|
35
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
36
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
37
|
+
} & {
|
|
38
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
39
|
+
stateStore: {
|
|
40
|
+
archivist: string;
|
|
41
|
+
boundWitnessDiviner: string;
|
|
42
|
+
payloadDiviner: string;
|
|
43
|
+
};
|
|
44
|
+
}, "schema"> & {
|
|
45
|
+
schema: "network.xyo.diviner.stateful.config";
|
|
46
|
+
}, "schema"> & {
|
|
47
|
+
schema: string;
|
|
48
|
+
};
|
|
49
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
50
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
51
|
+
}, TModule extends AnyModule<TParams> = AnyModule<TParams>, TState extends StateDictionary = StateDictionary>(ModuleBase: TModule) => (abstract new (...args: any[]) => {
|
|
52
|
+
_lastState?: WithMeta<ModuleState<TState>> | undefined;
|
|
53
|
+
/**
|
|
54
|
+
* Commit the internal state of the Diviner process. This is similar
|
|
55
|
+
* to a transaction completion in a database and should only be called
|
|
56
|
+
* when results have been successfully persisted to the appropriate
|
|
57
|
+
* external stores.
|
|
58
|
+
* @param nextState The state to commit
|
|
59
|
+
*/
|
|
60
|
+
commitState(nextState: WithMeta<ModuleState<TState>>): Promise<void>;
|
|
61
|
+
/**
|
|
62
|
+
* Retrieves the archivist for the specified store
|
|
63
|
+
* @param store The store to retrieve the archivist for
|
|
64
|
+
* @returns The archivist for the specified store
|
|
65
|
+
*/
|
|
66
|
+
getArchivistForStore(): Promise<import("@xyo-network/archivist-model").ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
67
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
68
|
+
addToResolvers?: boolean | undefined;
|
|
69
|
+
allowNameResolution?: boolean | undefined;
|
|
70
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
71
|
+
parents?: import("@xyo-network/archivist-model").ArchivistParents | undefined;
|
|
72
|
+
requireAllParents?: boolean | undefined;
|
|
73
|
+
schema: "network.xyo.archivist.config";
|
|
74
|
+
storeParentReads?: boolean | undefined;
|
|
75
|
+
}, "schema"> & {
|
|
76
|
+
schema: "network.xyo.archivist.config";
|
|
77
|
+
}, "schema"> & {
|
|
78
|
+
schema: string;
|
|
79
|
+
};
|
|
80
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
81
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
82
|
+
}, import("@xyo-network/archivist-model").ArchivistModuleEventData, {
|
|
83
|
+
schema: string;
|
|
84
|
+
} & import("@xyo-network/payload-model").PayloadFields>>;
|
|
85
|
+
/**
|
|
86
|
+
* Retrieves the BoundWitness Diviner for the specified store
|
|
87
|
+
* @param store The store to retrieve the BoundWitness Diviner for
|
|
88
|
+
* @returns The BoundWitness Diviner for the specified store
|
|
89
|
+
*/
|
|
90
|
+
getBoundWitnessDivinerForStore(): Promise<import("@xyo-network/diviner-model").DivinerInstance<import("@xylabs/object").BaseParamsFields & {
|
|
91
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
92
|
+
addToResolvers?: boolean | undefined;
|
|
93
|
+
allowNameResolution?: boolean | undefined;
|
|
94
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
95
|
+
schema: "network.xyo.diviner.config";
|
|
96
|
+
}, "schema"> & {
|
|
97
|
+
schema: "network.xyo.diviner.config";
|
|
98
|
+
}, "schema"> & {
|
|
99
|
+
schema: string;
|
|
100
|
+
};
|
|
101
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
102
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
103
|
+
}, {
|
|
104
|
+
schema: string;
|
|
105
|
+
} & import("@xyo-network/payload-model").PayloadFields, {
|
|
106
|
+
schema: string;
|
|
107
|
+
} & import("@xyo-network/payload-model").PayloadFields, import("@xyo-network/diviner-model").DivinerModuleEventData<ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
108
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
109
|
+
addToResolvers?: boolean | undefined;
|
|
110
|
+
allowNameResolution?: boolean | undefined;
|
|
111
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
112
|
+
schema: "network.xyo.module.config";
|
|
113
|
+
}, "schema"> & {
|
|
114
|
+
schema: string;
|
|
115
|
+
};
|
|
116
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
117
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
118
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>, {
|
|
119
|
+
schema: string;
|
|
120
|
+
} & import("@xyo-network/payload-model").PayloadFields, {
|
|
121
|
+
schema: string;
|
|
122
|
+
} & import("@xyo-network/payload-model").PayloadFields>>>;
|
|
123
|
+
/**
|
|
124
|
+
* Retrieves the Payload Diviner for the specified store
|
|
125
|
+
* @param store The store to retrieve the Payload Diviner for
|
|
126
|
+
* @returns The Payload Diviner for the specified store
|
|
127
|
+
*/
|
|
128
|
+
getPayloadDivinerForStateStore(): Promise<import("@xyo-network/diviner-model").DivinerInstance<import("@xylabs/object").BaseParamsFields & {
|
|
129
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
130
|
+
addToResolvers?: boolean | undefined;
|
|
131
|
+
allowNameResolution?: boolean | undefined;
|
|
132
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
133
|
+
schema: "network.xyo.diviner.config";
|
|
134
|
+
}, "schema"> & {
|
|
135
|
+
schema: "network.xyo.diviner.config";
|
|
136
|
+
}, "schema"> & {
|
|
137
|
+
schema: string;
|
|
138
|
+
};
|
|
139
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
140
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
141
|
+
}, {
|
|
142
|
+
schema: string;
|
|
143
|
+
} & import("@xyo-network/payload-model").PayloadFields, {
|
|
144
|
+
schema: string;
|
|
145
|
+
} & import("@xyo-network/payload-model").PayloadFields, import("@xyo-network/diviner-model").DivinerModuleEventData<ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
146
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
147
|
+
addToResolvers?: boolean | undefined;
|
|
148
|
+
allowNameResolution?: boolean | undefined;
|
|
149
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
150
|
+
schema: "network.xyo.module.config";
|
|
151
|
+
}, "schema"> & {
|
|
152
|
+
schema: string;
|
|
153
|
+
};
|
|
154
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
155
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
156
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>, {
|
|
157
|
+
schema: string;
|
|
158
|
+
} & import("@xyo-network/payload-model").PayloadFields, {
|
|
159
|
+
schema: string;
|
|
160
|
+
} & import("@xyo-network/payload-model").PayloadFields>>>;
|
|
161
|
+
/**
|
|
162
|
+
* Retrieves the last state of the Diviner process. Used to recover state after
|
|
163
|
+
* preemptions, reboots, etc.
|
|
164
|
+
*/
|
|
165
|
+
retrieveState(): Promise<WithMeta<ModuleState<TState>> | undefined>;
|
|
166
|
+
readonly pipeline?: "one-to-one" | "one-to-many" | "many-to-one" | "many-to-many" | undefined;
|
|
167
|
+
readonly status: import("@xyo-network/module-model").ModuleStatus;
|
|
168
|
+
address: Lowercase<string>;
|
|
169
|
+
config: TParams["config"];
|
|
170
|
+
id: string;
|
|
171
|
+
params: TParams;
|
|
172
|
+
previousHash: () => import("@xylabs/promise").Promisable<string | undefined>;
|
|
173
|
+
queries: string[];
|
|
174
|
+
query: <T extends import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
175
|
+
query: Lowercase<string>;
|
|
176
|
+
resultSet?: string | undefined;
|
|
177
|
+
schema: "network.xyo.boundwitness";
|
|
178
|
+
}, "schema"> & {
|
|
179
|
+
schema: "network.xyo.boundwitness";
|
|
180
|
+
} = import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
181
|
+
query: Lowercase<string>;
|
|
182
|
+
resultSet?: string | undefined;
|
|
183
|
+
schema: "network.xyo.boundwitness";
|
|
184
|
+
}, "schema"> & {
|
|
185
|
+
schema: "network.xyo.boundwitness";
|
|
186
|
+
}, TConf extends import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
187
|
+
schema: "network.xyo.module.config";
|
|
188
|
+
} = import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
189
|
+
schema: "network.xyo.module.config";
|
|
190
|
+
}>(query: T, payloads?: ({
|
|
191
|
+
schema: string;
|
|
192
|
+
} & import("@xyo-network/payload-model").PayloadFields)[] | undefined, queryConfig?: TConf | undefined) => import("@xylabs/promise").Promisable<import("@xyo-network/module-model").ModuleQueryResult>;
|
|
193
|
+
queryable: <T_1 extends import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
194
|
+
query: Lowercase<string>;
|
|
195
|
+
resultSet?: string | undefined;
|
|
196
|
+
schema: "network.xyo.boundwitness";
|
|
197
|
+
}, "schema"> & {
|
|
198
|
+
schema: "network.xyo.boundwitness";
|
|
199
|
+
} = import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/boundwitness-model").BoundWitnessFields & {
|
|
200
|
+
query: Lowercase<string>;
|
|
201
|
+
resultSet?: string | undefined;
|
|
202
|
+
schema: "network.xyo.boundwitness";
|
|
203
|
+
}, "schema"> & {
|
|
204
|
+
schema: "network.xyo.boundwitness";
|
|
205
|
+
}, TConf_1 extends import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
206
|
+
schema: "network.xyo.module.config";
|
|
207
|
+
} = import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
208
|
+
schema: "network.xyo.module.config";
|
|
209
|
+
}>(query: T_1, payloads?: ({
|
|
210
|
+
schema: string;
|
|
211
|
+
} & import("@xyo-network/payload-model").PayloadFields)[] | undefined, queryConfig?: TConf_1 | undefined) => import("@xylabs/promise").Promisable<boolean>;
|
|
212
|
+
start?: (() => import("@xylabs/promise").Promisable<boolean>) | undefined;
|
|
213
|
+
stop?: (() => import("@xylabs/promise").Promisable<boolean>) | undefined;
|
|
214
|
+
eventData: import("@xyo-network/module-model").ModuleEventData<object>;
|
|
215
|
+
clearListeners(eventNames: keyof import("@xyo-network/module-model").ModuleEventData<object> | (keyof import("@xyo-network/module-model").ModuleEventData<object>)[]): void;
|
|
216
|
+
emit<TEventName extends keyof import("@xyo-network/module-model").ModuleEventData<object>>(eventName: TEventName, eventArgs: import("@xyo-network/module-model").ModuleEventData<object>[TEventName]): Promise<void>;
|
|
217
|
+
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>;
|
|
218
|
+
listenerCount(eventNames: keyof import("@xyo-network/module-model").ModuleEventData<object> | (keyof import("@xyo-network/module-model").ModuleEventData<object>)[]): number;
|
|
219
|
+
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;
|
|
220
|
+
offAny(listener: Promise<void> | import("@xyo-network/module-events").EventAnyListener<import("@xyo-network/module-events").EventArgs>): void;
|
|
221
|
+
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;
|
|
222
|
+
onAny(listener: import("@xyo-network/module-events").EventAnyListener<import("@xyo-network/module-events").EventArgs>): import("@xyo-network/module-events").EventUnsubscribeFunction;
|
|
223
|
+
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;
|
|
224
|
+
priority: import("@xyo-network/module-model").ObjectResolverPriority;
|
|
225
|
+
resolve<T_2 extends ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
226
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
227
|
+
addToResolvers?: boolean | undefined;
|
|
228
|
+
allowNameResolution?: boolean | undefined;
|
|
229
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
230
|
+
schema: "network.xyo.module.config";
|
|
231
|
+
}, "schema"> & {
|
|
232
|
+
schema: string;
|
|
233
|
+
};
|
|
234
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
235
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
236
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
237
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
238
|
+
addToResolvers?: boolean | undefined;
|
|
239
|
+
allowNameResolution?: boolean | undefined;
|
|
240
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
241
|
+
schema: "network.xyo.module.config";
|
|
242
|
+
}, "schema"> & {
|
|
243
|
+
schema: string;
|
|
244
|
+
};
|
|
245
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
246
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
247
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>(): import("@xylabs/promise").Promisable<T_2 | undefined>;
|
|
248
|
+
resolve<T_3 extends ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
249
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
250
|
+
addToResolvers?: boolean | undefined;
|
|
251
|
+
allowNameResolution?: boolean | undefined;
|
|
252
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
253
|
+
schema: "network.xyo.module.config";
|
|
254
|
+
}, "schema"> & {
|
|
255
|
+
schema: string;
|
|
256
|
+
};
|
|
257
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
258
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
259
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
260
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
261
|
+
addToResolvers?: boolean | undefined;
|
|
262
|
+
allowNameResolution?: boolean | undefined;
|
|
263
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
264
|
+
schema: "network.xyo.module.config";
|
|
265
|
+
}, "schema"> & {
|
|
266
|
+
schema: string;
|
|
267
|
+
};
|
|
268
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
269
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
270
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>(all: "*", options?: import("@xyo-network/module-model").ObjectFilterOptions<T_3> | undefined): import("@xylabs/promise").Promisable<T_3[]>;
|
|
271
|
+
resolve<T_4 extends ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
272
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
273
|
+
addToResolvers?: boolean | undefined;
|
|
274
|
+
allowNameResolution?: boolean | undefined;
|
|
275
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
276
|
+
schema: "network.xyo.module.config";
|
|
277
|
+
}, "schema"> & {
|
|
278
|
+
schema: string;
|
|
279
|
+
};
|
|
280
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
281
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
282
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
283
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
284
|
+
addToResolvers?: boolean | undefined;
|
|
285
|
+
allowNameResolution?: boolean | undefined;
|
|
286
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
287
|
+
schema: "network.xyo.module.config";
|
|
288
|
+
}, "schema"> & {
|
|
289
|
+
schema: string;
|
|
290
|
+
};
|
|
291
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
292
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
293
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>(id: string, options?: import("@xyo-network/module-model").ObjectFilterOptions<T_4> | undefined): import("@xylabs/promise").Promisable<T_4 | undefined>;
|
|
294
|
+
resolve<T_5 extends ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
295
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
296
|
+
addToResolvers?: boolean | undefined;
|
|
297
|
+
allowNameResolution?: boolean | undefined;
|
|
298
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
299
|
+
schema: "network.xyo.module.config";
|
|
300
|
+
}, "schema"> & {
|
|
301
|
+
schema: string;
|
|
302
|
+
};
|
|
303
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
304
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
305
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
306
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
307
|
+
addToResolvers?: boolean | undefined;
|
|
308
|
+
allowNameResolution?: boolean | undefined;
|
|
309
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
310
|
+
schema: "network.xyo.module.config";
|
|
311
|
+
}, "schema"> & {
|
|
312
|
+
schema: string;
|
|
313
|
+
};
|
|
314
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
315
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
316
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>(filter: import("@xyo-network/module-model").ObjectFilter<T_5>, options?: import("@xyo-network/module-model").ObjectFilterOptions<T_5> | undefined): import("@xylabs/promise").Promisable<T_5[]>;
|
|
317
|
+
resolve<T_6 extends ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
318
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
319
|
+
addToResolvers?: boolean | undefined;
|
|
320
|
+
allowNameResolution?: boolean | undefined;
|
|
321
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
322
|
+
schema: "network.xyo.module.config";
|
|
323
|
+
}, "schema"> & {
|
|
324
|
+
schema: string;
|
|
325
|
+
};
|
|
326
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
327
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
328
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
329
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
330
|
+
addToResolvers?: boolean | undefined;
|
|
331
|
+
allowNameResolution?: boolean | undefined;
|
|
332
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
333
|
+
schema: "network.xyo.module.config";
|
|
334
|
+
}, "schema"> & {
|
|
335
|
+
schema: string;
|
|
336
|
+
};
|
|
337
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
338
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
339
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>(filter?: import("@xyo-network/module-model").ObjectFilter<T_6> | undefined, options?: import("@xyo-network/module-model").ObjectFilterOptions<T_6> | undefined): import("@xylabs/promise").Promisable<T_6[]>;
|
|
340
|
+
resolve<T_7 extends ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
341
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
342
|
+
addToResolvers?: boolean | undefined;
|
|
343
|
+
allowNameResolution?: boolean | undefined;
|
|
344
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
345
|
+
schema: "network.xyo.module.config";
|
|
346
|
+
}, "schema"> & {
|
|
347
|
+
schema: string;
|
|
348
|
+
};
|
|
349
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
350
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
351
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
352
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
353
|
+
addToResolvers?: boolean | undefined;
|
|
354
|
+
allowNameResolution?: boolean | undefined;
|
|
355
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
356
|
+
schema: "network.xyo.module.config";
|
|
357
|
+
}, "schema"> & {
|
|
358
|
+
schema: string;
|
|
359
|
+
};
|
|
360
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
361
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
362
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>(idOrFilter?: string | import("@xyo-network/module-model").ObjectFilter<T_7> | undefined, options?: import("@xyo-network/module-model").ObjectFilterOptions<T_7> | undefined): import("@xylabs/promise").Promisable<T_7 | T_7[] | undefined>;
|
|
363
|
+
resolvePrivate<T_8 extends ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
364
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
365
|
+
addToResolvers?: boolean | undefined;
|
|
366
|
+
allowNameResolution?: boolean | undefined;
|
|
367
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
368
|
+
schema: "network.xyo.module.config";
|
|
369
|
+
}, "schema"> & {
|
|
370
|
+
schema: string;
|
|
371
|
+
};
|
|
372
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
373
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
374
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
375
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
376
|
+
addToResolvers?: boolean | undefined;
|
|
377
|
+
allowNameResolution?: boolean | undefined;
|
|
378
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
379
|
+
schema: "network.xyo.module.config";
|
|
380
|
+
}, "schema"> & {
|
|
381
|
+
schema: string;
|
|
382
|
+
};
|
|
383
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
384
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
385
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>(all: "*", options?: import("@xyo-network/module-model").ObjectFilterOptions<T_8> | undefined): Promise<T_8[]>;
|
|
386
|
+
resolvePrivate<T_9 extends ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
387
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
388
|
+
addToResolvers?: boolean | undefined;
|
|
389
|
+
allowNameResolution?: boolean | undefined;
|
|
390
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
391
|
+
schema: "network.xyo.module.config";
|
|
392
|
+
}, "schema"> & {
|
|
393
|
+
schema: string;
|
|
394
|
+
};
|
|
395
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
396
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
397
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
398
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
399
|
+
addToResolvers?: boolean | undefined;
|
|
400
|
+
allowNameResolution?: boolean | undefined;
|
|
401
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
402
|
+
schema: "network.xyo.module.config";
|
|
403
|
+
}, "schema"> & {
|
|
404
|
+
schema: string;
|
|
405
|
+
};
|
|
406
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
407
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
408
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>(id: string, options?: import("@xyo-network/module-model").ObjectFilterOptions<T_9> | undefined): Promise<T_9 | undefined>;
|
|
409
|
+
resolvePrivate<T_10 extends ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
410
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
411
|
+
addToResolvers?: boolean | undefined;
|
|
412
|
+
allowNameResolution?: boolean | undefined;
|
|
413
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
414
|
+
schema: "network.xyo.module.config";
|
|
415
|
+
}, "schema"> & {
|
|
416
|
+
schema: string;
|
|
417
|
+
};
|
|
418
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
419
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
420
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>> = ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
421
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
422
|
+
addToResolvers?: boolean | undefined;
|
|
423
|
+
allowNameResolution?: boolean | undefined;
|
|
424
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
425
|
+
schema: "network.xyo.module.config";
|
|
426
|
+
}, "schema"> & {
|
|
427
|
+
schema: string;
|
|
428
|
+
};
|
|
429
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
430
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
431
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>(id: string, options?: import("@xyo-network/module-model").ObjectFilterOptions<T_10> | undefined): Promise<T_10 | T_10[] | undefined>;
|
|
432
|
+
manifest: (maxDepth?: number | undefined, ignoreAddresses?: Lowercase<string>[] | undefined) => import("@xylabs/promise").Promisable<(import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/manifest-model").ModuleManifest & {
|
|
433
|
+
schema: "network.xyo.module.manifest";
|
|
434
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/manifest-model").ModuleManifest & {
|
|
435
|
+
schema: "network.xyo.node.manifest";
|
|
436
|
+
})>;
|
|
437
|
+
manifestQuery: (account: import("@xyo-network/account-model").AccountInstance, maxDepth?: number | undefined, ignoreAddresses?: Lowercase<string>[] | undefined) => import("@xylabs/promise").Promisable<import("@xyo-network/module-model").ModuleQueryResult<(import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/manifest-model").ModuleManifest & {
|
|
438
|
+
schema: "network.xyo.module.manifest";
|
|
439
|
+
}) | (import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/manifest-model").ModuleManifest & {
|
|
440
|
+
schema: "network.xyo.node.manifest";
|
|
441
|
+
})>>;
|
|
442
|
+
moduleAddress: () => import("@xylabs/promise").Promisable<(import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
443
|
+
address: Lowercase<string>;
|
|
444
|
+
previousHash?: string | undefined;
|
|
445
|
+
schema: string;
|
|
446
|
+
})[]>;
|
|
447
|
+
state: () => import("@xylabs/promise").Promisable<({
|
|
448
|
+
schema: string;
|
|
449
|
+
} & import("@xyo-network/payload-model").PayloadFields)[]>;
|
|
450
|
+
stateQuery: (account: import("@xyo-network/account-model").AccountInstance) => import("@xylabs/promise").Promisable<import("@xyo-network/module-model").ModuleQueryResult>;
|
|
451
|
+
addParent: (module: ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
452
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
453
|
+
addToResolvers?: boolean | undefined;
|
|
454
|
+
allowNameResolution?: boolean | undefined;
|
|
455
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
456
|
+
schema: "network.xyo.module.config";
|
|
457
|
+
}, "schema"> & {
|
|
458
|
+
schema: string;
|
|
459
|
+
};
|
|
460
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
461
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
462
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>) => void;
|
|
463
|
+
addressCache?: ((direction: import("@xyo-network/module-model").Direction, includePrivate: boolean) => import("@xyo-network/module-model").AddressToWeakInstanceCache | undefined) | undefined;
|
|
464
|
+
localName: string | undefined;
|
|
465
|
+
parents: () => import("@xylabs/promise").Promisable<ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
466
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
467
|
+
addToResolvers?: boolean | undefined;
|
|
468
|
+
allowNameResolution?: boolean | undefined;
|
|
469
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
470
|
+
schema: "network.xyo.module.config";
|
|
471
|
+
}, "schema"> & {
|
|
472
|
+
schema: string;
|
|
473
|
+
};
|
|
474
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
475
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
476
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>[]>;
|
|
477
|
+
privateChildren: () => import("@xylabs/promise").Promisable<ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
478
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
479
|
+
addToResolvers?: boolean | undefined;
|
|
480
|
+
allowNameResolution?: boolean | undefined;
|
|
481
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
482
|
+
schema: "network.xyo.module.config";
|
|
483
|
+
}, "schema"> & {
|
|
484
|
+
schema: string;
|
|
485
|
+
};
|
|
486
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
487
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
488
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>[]>;
|
|
489
|
+
publicChildren: () => import("@xylabs/promise").Promisable<ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
490
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
491
|
+
addToResolvers?: boolean | undefined;
|
|
492
|
+
allowNameResolution?: boolean | undefined;
|
|
493
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
494
|
+
schema: "network.xyo.module.config";
|
|
495
|
+
}, "schema"> & {
|
|
496
|
+
schema: string;
|
|
497
|
+
};
|
|
498
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
499
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
500
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>[]>;
|
|
501
|
+
removeParent: (address: Lowercase<string>) => void;
|
|
502
|
+
siblings: () => import("@xylabs/promise").Promisable<ModuleInstance<import("@xylabs/object").BaseParamsFields & {
|
|
503
|
+
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
504
|
+
addToResolvers?: boolean | undefined;
|
|
505
|
+
allowNameResolution?: boolean | undefined;
|
|
506
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
507
|
+
schema: "network.xyo.module.config";
|
|
508
|
+
}, "schema"> & {
|
|
509
|
+
schema: string;
|
|
510
|
+
};
|
|
511
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
512
|
+
moduleIdentifierTransformers?: import("@xyo-network/module-model").ModuleIdentifierTransformer[] | undefined;
|
|
513
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>[]>;
|
|
514
|
+
}) & TModule;
|
|
515
|
+
//# sourceMappingURL=DivinerMixin.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DivinerMixin.d.ts","sourceRoot":"","sources":["../../src/DivinerMixin.ts"],"names":[],"mappings":"AAOA,OAAO,EACL,eAAe,EAEf,cAAc,EACd,YAAY,EACZ,WAAW,EAEX,eAAe,EAChB,MAAM,2BAA2B,CAAA;AAElC,OAAO,EAAE,QAAQ,EAAE,MAAM,4BAA4B,CAAA;AAErD,OAAO,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAA;AAEhD,MAAM,MAAM,oBAAoB,GAAG,YAAY,CAAC,eAAe,CAAC,qBAAqB,CAAC,CAAC,CAAA;AAGvF,MAAM,MAAM,SAAS,CAAC,OAAO,SAAS,oBAAoB,GAAG,oBAAoB,IAAI,KAAK,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,cAAc,CAAC,OAAO,CAAC,CAAA;AAIpI;;;;GAIG;AACH,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0HAKlB,OAAO,6BAd8E,GAAG,EAAE;;IAmBpG;;;;;;OAMG;2BAC0B,SAAS,YAAY,MAAM,CAAC,CAAC;IAU1D;;;;OAIG;;;;;;;;;;;;;;;;;;;;IASH;;;;OAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAWH;;;;OAIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAQH;;;OAGG;qBACoB,QAAQ,SAAS,YAAY,MAAM,CAAC,CAAC,GAAG,SAAS,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YA0C5E,CAAA"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { DivinerParams } from '@xyo-network/diviner-model';
|
|
2
|
+
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
|
+
import { StatefulDivinerConfig } from './Config';
|
|
4
|
+
/**
|
|
5
|
+
* The parameters for a Stateful Diviner
|
|
6
|
+
*/
|
|
7
|
+
export type StatefulDivinerParams = DivinerParams<AnyConfigSchema<StatefulDivinerConfig>>;
|
|
8
|
+
//# sourceMappingURL=Params.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Params.d.ts","sourceRoot":"","sources":["../../src/Params.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;AAC1D,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAA;AAE3D,OAAO,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAA;AAEhD;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG,aAAa,CAAC,eAAe,CAAC,qBAAqB,CAAC,CAAC,CAAA"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { DivinerParams } from '@xyo-network/diviner-model';
|
|
2
|
+
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
|
+
import { StatefulDivinerConfig } from './Config';
|
|
4
|
+
/**
|
|
5
|
+
* The parameters for a Stateful Diviner
|
|
6
|
+
*/
|
|
7
|
+
export type StatefulDivinerParams = DivinerParams<AnyConfigSchema<StatefulDivinerConfig>>;
|
|
8
|
+
//# sourceMappingURL=Params.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Params.d.ts","sourceRoot":"","sources":["../../src/Params.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;AAC1D,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAA;AAE3D,OAAO,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAA;AAEhD;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG,aAAa,CAAC,eAAe,CAAC,qBAAqB,CAAC,CAAC,CAAA"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { DivinerParams } from '@xyo-network/diviner-model';
|
|
2
|
+
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
3
|
+
import { StatefulDivinerConfig } from './Config';
|
|
4
|
+
/**
|
|
5
|
+
* The parameters for a Stateful Diviner
|
|
6
|
+
*/
|
|
7
|
+
export type StatefulDivinerParams = DivinerParams<AnyConfigSchema<StatefulDivinerConfig>>;
|
|
8
|
+
//# sourceMappingURL=Params.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Params.d.ts","sourceRoot":"","sources":["../../src/Params.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,4BAA4B,CAAA;AAC1D,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAA;AAE3D,OAAO,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAA;AAEhD;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG,aAAa,CAAC,eAAe,CAAC,qBAAqB,CAAC,CAAC,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Schema.d.ts","sourceRoot":"","sources":["../../src/Schema.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,qBAAqB,gCAA0C,CAAA;AAC5E,MAAM,MAAM,qBAAqB,GAAG,OAAO,qBAAqB,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Schema.d.ts","sourceRoot":"","sources":["../../src/Schema.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,qBAAqB,gCAA0C,CAAA;AAC5E,MAAM,MAAM,qBAAqB,GAAG,OAAO,qBAAqB,CAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Schema.d.ts","sourceRoot":"","sources":["../../src/Schema.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,qBAAqB,gCAA0C,CAAA;AAC5E,MAAM,MAAM,qBAAqB,GAAG,OAAO,qBAAqB,CAAA"}
|