@xyo-network/node-wrapper 3.9.1 → 3.9.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/index.d.ts +3 -39
- package/package.json +7 -7
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
import * as _xyo_network_node_model from '@xyo-network/node-model';
|
|
2
|
-
import { NodeModule, NodeInstance, ChildCertificationFields, ChildCertification } from '@xyo-network/node-model';
|
|
3
1
|
import * as _xyo_network_module_model from '@xyo-network/module-model';
|
|
4
2
|
import { InstanceTypeCheck, ModuleIdentifier, ModuleQueryResult, AddressPayload } from '@xyo-network/module-model';
|
|
5
|
-
import * as
|
|
3
|
+
import * as _xyo_network_node_model from '@xyo-network/node-model';
|
|
4
|
+
import { NodeModule, NodeInstance, ChildCertificationFields, ChildCertification } from '@xyo-network/node-model';
|
|
6
5
|
import * as _xylabs_object from '@xylabs/object';
|
|
7
6
|
import { Address } from '@xylabs/hex';
|
|
8
7
|
import { AccountInstance } from '@xyo-network/account-model';
|
|
@@ -17,42 +16,7 @@ declare class NodeWrapper<TWrappedModule extends NodeModule = NodeModule> extend
|
|
|
17
16
|
addToResolvers?: boolean;
|
|
18
17
|
additionalSigners?: AccountInstance[];
|
|
19
18
|
allowNameResolution?: boolean;
|
|
20
|
-
config:
|
|
21
|
-
schema: _xyo_network_payload_model.Schema;
|
|
22
|
-
readonly archivist?: ModuleIdentifier | undefined;
|
|
23
|
-
readonly archiving?: {
|
|
24
|
-
readonly archivists?: string[] | undefined;
|
|
25
|
-
readonly queries?: string[] | undefined;
|
|
26
|
-
} | undefined;
|
|
27
|
-
readonly allowedQueries?: string[] | undefined;
|
|
28
|
-
readonly consoleLogger?: _xylabs_logger.LogLevel | undefined;
|
|
29
|
-
readonly labels?: {
|
|
30
|
-
[x: string]: string | undefined;
|
|
31
|
-
} | undefined;
|
|
32
|
-
readonly name?: _xyo_network_module_model.ModuleName | undefined;
|
|
33
|
-
readonly paging?: {
|
|
34
|
-
[x: string]: {
|
|
35
|
-
size?: number | undefined;
|
|
36
|
-
};
|
|
37
|
-
} | undefined;
|
|
38
|
-
readonly retry?: {
|
|
39
|
-
backoff?: number | undefined;
|
|
40
|
-
interval?: number | undefined;
|
|
41
|
-
retries?: number | undefined;
|
|
42
|
-
} | undefined;
|
|
43
|
-
readonly security?: {
|
|
44
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
45
|
-
readonly allowed?: {
|
|
46
|
-
[x: string]: (Lowercase<string> | Lowercase<string>[])[];
|
|
47
|
-
} | undefined;
|
|
48
|
-
readonly disallowed?: {
|
|
49
|
-
[x: string]: Lowercase<string>[];
|
|
50
|
-
} | undefined;
|
|
51
|
-
} | undefined;
|
|
52
|
-
readonly sign?: boolean | undefined;
|
|
53
|
-
readonly storeQueries?: boolean | undefined;
|
|
54
|
-
readonly timestamp?: boolean | undefined;
|
|
55
|
-
}>;
|
|
19
|
+
config: _xyo_network_module_model.AnyConfigSchema<_xyo_network_node_model.NodeConfig>;
|
|
56
20
|
ephemeralQueryAccountEnabled?: boolean;
|
|
57
21
|
moduleIdentifierTransformers?: _xyo_network_module_model.ModuleIdentifierTransformer[];
|
|
58
22
|
}, _xyo_network_node_model.NodeModuleEventData>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/node-wrapper",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.3",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@xylabs/hex": "^4.5.1",
|
|
33
|
-
"@xyo-network/account-model": "^3.9.
|
|
34
|
-
"@xyo-network/manifest-model": "^3.9.
|
|
35
|
-
"@xyo-network/module-model": "^3.9.
|
|
36
|
-
"@xyo-network/module-wrapper": "^3.9.
|
|
37
|
-
"@xyo-network/node-model": "^3.9.
|
|
38
|
-
"@xyo-network/payload-model": "^3.9.
|
|
33
|
+
"@xyo-network/account-model": "^3.9.3",
|
|
34
|
+
"@xyo-network/manifest-model": "^3.9.3",
|
|
35
|
+
"@xyo-network/module-model": "^3.9.3",
|
|
36
|
+
"@xyo-network/module-wrapper": "^3.9.3",
|
|
37
|
+
"@xyo-network/node-model": "^3.9.3",
|
|
38
|
+
"@xyo-network/payload-model": "^3.9.3",
|
|
39
39
|
"async-mutex": "^0.5.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|