@xyo-network/module-resolver 3.9.3 → 3.9.5
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/index.d.ts +4 -0
- package/package.json +4 -4
package/dist/neutral/index.d.ts
CHANGED
|
@@ -23,6 +23,8 @@ declare abstract class AbstractModuleResolver<TParams extends ModuleResolverPara
|
|
|
23
23
|
config: _xyo_network_module_model.AnyConfigSchema<_xyo_network_module_model.ModuleConfig<void, void>>;
|
|
24
24
|
ephemeralQueryAccountEnabled?: boolean;
|
|
25
25
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
26
|
+
privateChildren?: ModuleInstance[];
|
|
27
|
+
publicChildren?: ModuleInstance[];
|
|
26
28
|
}, _xyo_network_module_model.ModuleEventData<object>>;
|
|
27
29
|
resolve<T extends ModuleInstance = ModuleInstance>(): Promise<T[]>;
|
|
28
30
|
resolve<T extends ModuleInstance = ModuleInstance>(all: '*', options?: ModuleFilterOptions<T>): Promise<T[]>;
|
|
@@ -87,6 +89,8 @@ declare const mixinResolverEventEmitter: <T extends ModuleResolver = ModuleResol
|
|
|
87
89
|
config: _xyo_network_module_model.AnyConfigSchema<_xyo_network_module_model.ModuleConfig<void, void>>;
|
|
88
90
|
ephemeralQueryAccountEnabled?: boolean;
|
|
89
91
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
92
|
+
privateChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
93
|
+
publicChildren?: _xyo_network_module_model.ModuleInstance[];
|
|
90
94
|
}, _xyo_network_module_model.ModuleEventData<object>>>>(resolver: T) => T & ResolverEventEmitter;
|
|
91
95
|
|
|
92
96
|
type SimpleModuleResolverParams = ModuleResolverParams & {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/module-resolver",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.5",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"@xylabs/hex": "^4.5.1",
|
|
35
35
|
"@xylabs/object": "^4.5.1",
|
|
36
36
|
"@xylabs/promise": "^4.5.1",
|
|
37
|
-
"@xyo-network/diviner-model": "^3.9.
|
|
38
|
-
"@xyo-network/diviner-payload-model": "^3.9.
|
|
39
|
-
"@xyo-network/module-model": "^3.9.
|
|
37
|
+
"@xyo-network/diviner-model": "^3.9.5",
|
|
38
|
+
"@xyo-network/diviner-payload-model": "^3.9.5",
|
|
39
|
+
"@xyo-network/module-model": "^3.9.5",
|
|
40
40
|
"lru-cache": "^11.0.2"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|