@xyo-network/react-standard-node 2.49.13 → 2.50.0
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/docs.json +442 -356
- package/dist/types/lib/Builders/MemoryNodeBuilder.d.ts +46 -42
- package/dist/types/lib/Builders/MemoryNodeBuilder.d.ts.map +1 -1
- package/dist/types/lib/Builders/SentinelBuilder.d.ts +54 -48
- package/dist/types/lib/Builders/SentinelBuilder.d.ts.map +1 -1
- package/dist/types/lib/Builders/StorageArchivistBuilder.d.ts +18 -16
- package/dist/types/lib/Builders/StorageArchivistBuilder.d.ts.map +1 -1
- package/package.json +17 -17
- package/src/lib/Builders/MemoryNodeBuilder.ts +1 -1
- package/typedoc.json +5 -0
|
@@ -4,7 +4,7 @@ import { MemoryNode, NodeWrapper } from '@xyo-network/node';
|
|
|
4
4
|
import { PayloadSetPluginResolver } from '@xyo-network/payloadset-plugin';
|
|
5
5
|
import { SentinelConfig } from '@xyo-network/sentinel';
|
|
6
6
|
import { WitnessModule } from '@xyo-network/witness';
|
|
7
|
-
interface MemoryNodeBuilderConfig {
|
|
7
|
+
export interface MemoryNodeBuilderConfig {
|
|
8
8
|
name?: string;
|
|
9
9
|
node?: MemoryNode;
|
|
10
10
|
}
|
|
@@ -13,29 +13,31 @@ export declare class MemoryNodeBuilder {
|
|
|
13
13
|
private _wrappedNode;
|
|
14
14
|
get node(): MemoryNode<import("@xyo-network/node").MemoryNodeParams, import("@xyo-network/node").NodeModuleEventData>;
|
|
15
15
|
get wrappedNode(): NodeWrapper<import("@xyo-network/node").NodeModule<import("@xyo-network/node").NodeModuleParams<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
readonly archivist?: import("@xyo-network/module").ArchivistModuleConfig | undefined;
|
|
17
|
+
readonly name?: string | undefined;
|
|
18
|
+
readonly paging?: Record<string, {
|
|
18
19
|
size?: number | undefined;
|
|
19
20
|
}> | undefined;
|
|
20
|
-
schema: string;
|
|
21
|
-
security?: {
|
|
22
|
-
allowAnonymous?: boolean | undefined;
|
|
23
|
-
allowed?: Record<string, (string | import("@xyo-network/module").CosigningAddressSet)[]> | undefined;
|
|
24
|
-
disallowed?: Record<string, string[]> | undefined;
|
|
21
|
+
readonly schema: string;
|
|
22
|
+
readonly security?: {
|
|
23
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
24
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module").CosigningAddressSet)[]> | undefined;
|
|
25
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
25
26
|
} | undefined;
|
|
26
|
-
storeQueries?: boolean | undefined;
|
|
27
|
+
readonly storeQueries?: boolean | undefined;
|
|
27
28
|
} & Omit<Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
28
|
-
|
|
29
|
-
|
|
29
|
+
readonly archivist?: import("@xyo-network/module").ArchivistModuleConfig | undefined;
|
|
30
|
+
readonly name?: string | undefined;
|
|
31
|
+
readonly paging?: Record<string, {
|
|
30
32
|
size?: number | undefined;
|
|
31
33
|
}> | undefined;
|
|
32
|
-
schema: "network.xyo.node.config";
|
|
33
|
-
security?: {
|
|
34
|
-
allowAnonymous?: boolean | undefined;
|
|
35
|
-
allowed?: Record<string, (string | import("@xyo-network/module").CosigningAddressSet)[]> | undefined;
|
|
36
|
-
disallowed?: Record<string, string[]> | undefined;
|
|
34
|
+
readonly schema: "network.xyo.node.config";
|
|
35
|
+
readonly security?: {
|
|
36
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
37
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module").CosigningAddressSet)[]> | undefined;
|
|
38
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
37
39
|
} | undefined;
|
|
38
|
-
storeQueries?: boolean | undefined;
|
|
40
|
+
readonly storeQueries?: boolean | undefined;
|
|
39
41
|
} & Omit<{
|
|
40
42
|
archivist?: string | undefined;
|
|
41
43
|
schema: "network.xyo.node.config";
|
|
@@ -49,41 +51,44 @@ export declare class MemoryNodeBuilder {
|
|
|
49
51
|
addArchivistStorage(account?: AccountInstance, moduleName?: string, namespace?: string): Promise<void>;
|
|
50
52
|
addBridge(apiDomain: string, moduleName?: string, account?: AccountInstance): Promise<void>;
|
|
51
53
|
addSentinel(config: SentinelConfig, account: AccountInstance): Promise<import("@xyo-network/sentinel").MemorySentinel<import("@xyo-network/sentinel").MemorySentinelParams<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
52
|
-
|
|
53
|
-
|
|
54
|
+
readonly archivist?: import("@xyo-network/module").ArchivistModuleConfig | undefined;
|
|
55
|
+
readonly name?: string | undefined;
|
|
56
|
+
readonly paging?: Record<string, {
|
|
54
57
|
size?: number | undefined;
|
|
55
58
|
}> | undefined;
|
|
56
|
-
schema: string;
|
|
57
|
-
security?: {
|
|
58
|
-
allowAnonymous?: boolean | undefined;
|
|
59
|
-
allowed?: Record<string, (string | import("@xyo-network/module").CosigningAddressSet)[]> | undefined;
|
|
60
|
-
disallowed?: Record<string, string[]> | undefined;
|
|
59
|
+
readonly schema: string;
|
|
60
|
+
readonly security?: {
|
|
61
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
62
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module").CosigningAddressSet)[]> | undefined;
|
|
63
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
61
64
|
} | undefined;
|
|
62
|
-
storeQueries?: boolean | undefined;
|
|
65
|
+
readonly storeQueries?: boolean | undefined;
|
|
63
66
|
} & Omit<Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
64
|
-
|
|
65
|
-
|
|
67
|
+
readonly archivist?: import("@xyo-network/module").ArchivistModuleConfig | undefined;
|
|
68
|
+
readonly name?: string | undefined;
|
|
69
|
+
readonly paging?: Record<string, {
|
|
66
70
|
size?: number | undefined;
|
|
67
71
|
}> | undefined;
|
|
68
|
-
schema: "network.xyo.node.sentinel";
|
|
69
|
-
security?: {
|
|
70
|
-
allowAnonymous?: boolean | undefined;
|
|
71
|
-
allowed?: Record<string, (string | import("@xyo-network/module").CosigningAddressSet)[]> | undefined;
|
|
72
|
-
disallowed?: Record<string, string[]> | undefined;
|
|
72
|
+
readonly schema: "network.xyo.node.sentinel";
|
|
73
|
+
readonly security?: {
|
|
74
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
75
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module").CosigningAddressSet)[]> | undefined;
|
|
76
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
73
77
|
} | undefined;
|
|
74
|
-
storeQueries?: boolean | undefined;
|
|
78
|
+
readonly storeQueries?: boolean | undefined;
|
|
75
79
|
} & Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
76
|
-
|
|
77
|
-
|
|
80
|
+
readonly archivist?: import("@xyo-network/module").ArchivistModuleConfig | undefined;
|
|
81
|
+
readonly name?: string | undefined;
|
|
82
|
+
readonly paging?: Record<string, {
|
|
78
83
|
size?: number | undefined;
|
|
79
84
|
}> | undefined;
|
|
80
|
-
schema: string;
|
|
81
|
-
security?: {
|
|
82
|
-
allowAnonymous?: boolean | undefined;
|
|
83
|
-
allowed?: Record<string, (string | import("@xyo-network/module").CosigningAddressSet)[]> | undefined;
|
|
84
|
-
disallowed?: Record<string, string[]> | undefined;
|
|
85
|
+
readonly schema: string;
|
|
86
|
+
readonly security?: {
|
|
87
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
88
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module").CosigningAddressSet)[]> | undefined;
|
|
89
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
85
90
|
} | undefined;
|
|
86
|
-
storeQueries?: boolean | undefined;
|
|
91
|
+
readonly storeQueries?: boolean | undefined;
|
|
87
92
|
} & Omit<{
|
|
88
93
|
archivists?: string[] | undefined;
|
|
89
94
|
schema: string;
|
|
@@ -99,5 +104,4 @@ export declare class MemoryNodeBuilder {
|
|
|
99
104
|
attach(module: Module, external?: boolean, safeAttach?: boolean): Promise<void>;
|
|
100
105
|
private witnessCleanup;
|
|
101
106
|
}
|
|
102
|
-
export {};
|
|
103
107
|
//# sourceMappingURL=MemoryNodeBuilder.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MemoryNodeBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/MemoryNodeBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAG5D,OAAO,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAA;AAC5C,OAAO,EAAE,UAAU,EAAoB,WAAW,EAAE,MAAM,mBAAmB,CAAA;AAC7E,OAAO,EAAE,wBAAwB,EAAE,MAAM,gCAAgC,CAAA;AAEzE,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAA;AACtD,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAA;AAKpD,
|
|
1
|
+
{"version":3,"file":"MemoryNodeBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/MemoryNodeBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAG5D,OAAO,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAA;AAC5C,OAAO,EAAE,UAAU,EAAoB,WAAW,EAAE,MAAM,mBAAmB,CAAA;AAC7E,OAAO,EAAE,wBAAwB,EAAE,MAAM,gCAAgC,CAAA;AAEzE,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAA;AACtD,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAA;AAKpD,MAAM,WAAW,uBAAuB;IACtC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,UAAU,CAAA;CAClB;AAED,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,KAAK,CAAwB;IACrC,OAAO,CAAC,YAAY,CAAyB;IAE7C,IAAI,IAAI,8GAEP;IAED,IAAI,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gFAEd;WAEY,MAAM,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,uBAAuB,EAAE,OAAO,CAAC,EAAE,eAAe,GAAG,OAAO,CAAC,iBAAiB,CAAC;IASnH,4GAA4G;IACtG,YAAY,CAAC,OAAO,CAAC,EAAE,eAAe,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAI/E,kBAAkB,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,eAAe;IAOjE,mBAAmB,CAAC,OAAO,CAAC,EAAE,eAAe,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAOtF,SAAS,CAAC,SAAS,EAAE,MAAM,EAAE,UAAU,SAAqB,EAAE,OAAO,CAAC,EAAE,eAAe;IAYvF,WAAW,CAAC,MAAM,EAAE,cAAc,EAAE,OAAO,EAAE,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAM5D,YAAY,CAAC,iBAAiB,EAAE,wBAAwB,EAAE,SAAS,GAAE,CAAC,MAAM,OAAO,CAAC,aAAa,CAAC,CAAC,EAAO;IAkB1G,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,OAAO,EAAE,UAAU,CAAC,EAAE,OAAO;YAgBvD,cAAc;CAM7B"}
|
|
@@ -6,41 +6,44 @@ export declare class SentinelBuilder {
|
|
|
6
6
|
private _sentinel;
|
|
7
7
|
protected constructor(config: SentinelConfig, account: AccountInstance);
|
|
8
8
|
get sentinel(): MemorySentinel<import("@xyo-network/sentinel").MemorySentinelParams<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
10
|
+
readonly name?: string | undefined;
|
|
11
|
+
readonly paging?: Record<string, {
|
|
11
12
|
size?: number | undefined;
|
|
12
13
|
}> | undefined;
|
|
13
|
-
schema: string;
|
|
14
|
-
security?: {
|
|
15
|
-
allowAnonymous?: boolean | undefined;
|
|
16
|
-
allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
17
|
-
disallowed?: Record<string, string[]> | undefined;
|
|
14
|
+
readonly schema: string;
|
|
15
|
+
readonly security?: {
|
|
16
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
17
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
18
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
18
19
|
} | undefined;
|
|
19
|
-
storeQueries?: boolean | undefined;
|
|
20
|
+
readonly storeQueries?: boolean | undefined;
|
|
20
21
|
} & Omit<Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
21
|
-
|
|
22
|
-
|
|
22
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
23
|
+
readonly name?: string | undefined;
|
|
24
|
+
readonly paging?: Record<string, {
|
|
23
25
|
size?: number | undefined;
|
|
24
26
|
}> | undefined;
|
|
25
|
-
schema: "network.xyo.node.sentinel";
|
|
26
|
-
security?: {
|
|
27
|
-
allowAnonymous?: boolean | undefined;
|
|
28
|
-
allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
29
|
-
disallowed?: Record<string, string[]> | undefined;
|
|
27
|
+
readonly schema: "network.xyo.node.sentinel";
|
|
28
|
+
readonly security?: {
|
|
29
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
30
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
31
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
30
32
|
} | undefined;
|
|
31
|
-
storeQueries?: boolean | undefined;
|
|
33
|
+
readonly storeQueries?: boolean | undefined;
|
|
32
34
|
} & Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
33
|
-
|
|
34
|
-
|
|
35
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
36
|
+
readonly name?: string | undefined;
|
|
37
|
+
readonly paging?: Record<string, {
|
|
35
38
|
size?: number | undefined;
|
|
36
39
|
}> | undefined;
|
|
37
|
-
schema: string;
|
|
38
|
-
security?: {
|
|
39
|
-
allowAnonymous?: boolean | undefined;
|
|
40
|
-
allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
41
|
-
disallowed?: Record<string, string[]> | undefined;
|
|
40
|
+
readonly schema: string;
|
|
41
|
+
readonly security?: {
|
|
42
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
43
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
44
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
42
45
|
} | undefined;
|
|
43
|
-
storeQueries?: boolean | undefined;
|
|
46
|
+
readonly storeQueries?: boolean | undefined;
|
|
44
47
|
} & Omit<{
|
|
45
48
|
archivists?: string[] | undefined;
|
|
46
49
|
schema: string;
|
|
@@ -54,41 +57,44 @@ export declare class SentinelBuilder {
|
|
|
54
57
|
}, "schema">>, import("@xyo-network/sentinel").SentinelModuleEventData>;
|
|
55
58
|
static create(config: SentinelConfig, account: AccountInstance): Promise<SentinelBuilder>;
|
|
56
59
|
buildSentinel(): Promise<MemorySentinel<import("@xyo-network/sentinel").MemorySentinelParams<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
57
|
-
|
|
58
|
-
|
|
60
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
61
|
+
readonly name?: string | undefined;
|
|
62
|
+
readonly paging?: Record<string, {
|
|
59
63
|
size?: number | undefined;
|
|
60
64
|
}> | undefined;
|
|
61
|
-
schema: string;
|
|
62
|
-
security?: {
|
|
63
|
-
allowAnonymous?: boolean | undefined;
|
|
64
|
-
allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
65
|
-
disallowed?: Record<string, string[]> | undefined;
|
|
65
|
+
readonly schema: string;
|
|
66
|
+
readonly security?: {
|
|
67
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
68
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
69
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
66
70
|
} | undefined;
|
|
67
|
-
storeQueries?: boolean | undefined;
|
|
71
|
+
readonly storeQueries?: boolean | undefined;
|
|
68
72
|
} & Omit<Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
69
|
-
|
|
70
|
-
|
|
73
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
74
|
+
readonly name?: string | undefined;
|
|
75
|
+
readonly paging?: Record<string, {
|
|
71
76
|
size?: number | undefined;
|
|
72
77
|
}> | undefined;
|
|
73
|
-
schema: "network.xyo.node.sentinel";
|
|
74
|
-
security?: {
|
|
75
|
-
allowAnonymous?: boolean | undefined;
|
|
76
|
-
allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
77
|
-
disallowed?: Record<string, string[]> | undefined;
|
|
78
|
+
readonly schema: "network.xyo.node.sentinel";
|
|
79
|
+
readonly security?: {
|
|
80
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
81
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
82
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
78
83
|
} | undefined;
|
|
79
|
-
storeQueries?: boolean | undefined;
|
|
84
|
+
readonly storeQueries?: boolean | undefined;
|
|
80
85
|
} & Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
81
|
-
|
|
82
|
-
|
|
86
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
87
|
+
readonly name?: string | undefined;
|
|
88
|
+
readonly paging?: Record<string, {
|
|
83
89
|
size?: number | undefined;
|
|
84
90
|
}> | undefined;
|
|
85
|
-
schema: string;
|
|
86
|
-
security?: {
|
|
87
|
-
allowAnonymous?: boolean | undefined;
|
|
88
|
-
allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
89
|
-
disallowed?: Record<string, string[]> | undefined;
|
|
91
|
+
readonly schema: string;
|
|
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;
|
|
90
96
|
} | undefined;
|
|
91
|
-
storeQueries?: boolean | undefined;
|
|
97
|
+
readonly storeQueries?: boolean | undefined;
|
|
92
98
|
} & Omit<{
|
|
93
99
|
archivists?: string[] | undefined;
|
|
94
100
|
schema: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SentinelBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/SentinelBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAE5D,OAAO,EAAE,cAAc,EAAE,cAAc,EAAkB,MAAM,uBAAuB,CAAA;AAEtF,qBAAa,eAAe;IAGJ,OAAO,CAAC,MAAM;IAAkB,OAAO,CAAC,OAAO;IAFrE,OAAO,CAAC,SAAS,CAA4B;IAE7C,SAAS,aAAqB,MAAM,EAAE,cAAc,EAAU,OAAO,EAAE,eAAe;IAItF,IAAI,QAAQ
|
|
1
|
+
{"version":3,"file":"SentinelBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/SentinelBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAE5D,OAAO,EAAE,cAAc,EAAE,cAAc,EAAkB,MAAM,uBAAuB,CAAA;AAEtF,qBAAa,eAAe;IAGJ,OAAO,CAAC,MAAM;IAAkB,OAAO,CAAC,OAAO;IAFrE,OAAO,CAAC,SAAS,CAA4B;IAE7C,SAAS,aAAqB,MAAM,EAAE,cAAc,EAAU,OAAO,EAAE,eAAe;IAItF,IAAI,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4EAEX;WAEY,MAAM,CAAC,MAAM,EAAE,cAAc,EAAE,OAAO,EAAE,eAAe,GAAG,OAAO,CAAC,eAAe,CAAC;IAMzF,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKnB,OAAO,CAAC,WAAW;CAMpB"}
|
|
@@ -17,29 +17,31 @@ export declare class StorageArchivistBuilder {
|
|
|
17
17
|
buildArchivist(): Promise<StorageArchivist<import("@xyo-network/archivist").StorageArchivistParams, import("@xyo-network/archivist").ArchivistModuleEventData>>;
|
|
18
18
|
buildConfig(): StorageArchivistConfig;
|
|
19
19
|
findParentArchivist(): Promise<ArchivistModule<import("@xyo-network/archivist").ArchivistParams<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
21
|
+
readonly name?: string | undefined;
|
|
22
|
+
readonly paging?: Record<string, {
|
|
22
23
|
size?: number | undefined;
|
|
23
24
|
}> | undefined;
|
|
24
|
-
schema: string;
|
|
25
|
-
security?: {
|
|
26
|
-
allowAnonymous?: boolean | undefined;
|
|
27
|
-
allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
28
|
-
disallowed?: Record<string, string[]> | undefined;
|
|
25
|
+
readonly schema: string;
|
|
26
|
+
readonly security?: {
|
|
27
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
28
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
29
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
29
30
|
} | undefined;
|
|
30
|
-
storeQueries?: boolean | undefined;
|
|
31
|
+
readonly storeQueries?: boolean | undefined;
|
|
31
32
|
} & Omit<Omit<import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & {
|
|
32
|
-
|
|
33
|
-
|
|
33
|
+
readonly archivist?: import("@xyo-network/module-model").ArchivistModuleConfig | undefined;
|
|
34
|
+
readonly name?: string | undefined;
|
|
35
|
+
readonly paging?: Record<string, {
|
|
34
36
|
size?: number | undefined;
|
|
35
37
|
}> | undefined;
|
|
36
|
-
schema: "network.xyo.archivist.config";
|
|
37
|
-
security?: {
|
|
38
|
-
allowAnonymous?: boolean | undefined;
|
|
39
|
-
allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
40
|
-
disallowed?: Record<string, string[]> | undefined;
|
|
38
|
+
readonly schema: "network.xyo.archivist.config";
|
|
39
|
+
readonly security?: {
|
|
40
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
41
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
42
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
41
43
|
} | undefined;
|
|
42
|
-
storeQueries?: boolean | undefined;
|
|
44
|
+
readonly storeQueries?: boolean | undefined;
|
|
43
45
|
} & Omit<{
|
|
44
46
|
parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
|
|
45
47
|
schema: "network.xyo.archivist.config";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"StorageArchivistBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/StorageArchivistBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAC5D,OAAO,EAAE,eAAe,EAAE,gBAAgB,EAAE,sBAAsB,EAAgC,MAAM,wBAAwB,CAAA;AAChI,OAAO,EAAE,UAAU,EAAe,MAAM,mBAAmB,CAAA;AAG3D,MAAM,WAAW,sBAAsB;IACrC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AACD,qBAAa,uBAAuB;IAIZ,OAAO,CAAC,MAAM;IAA0B,OAAO,CAAC,OAAO,CAAC;IAAmB,OAAO,CAAC,IAAI,CAAC;IAH9G,OAAO,CAAC,UAAU,CAA8B;IAChD,OAAO,CAAC,eAAe,CAA6B;IAEpD,SAAS,aAAqB,MAAM,EAAE,sBAAsB,EAAU,OAAO,CAAC,6BAAiB,EAAU,IAAI,CAAC,uHAAY;IAE1H,IAAI,SAAS,yIAEZ;WAEY,MAAM,CAAC,MAAM,EAAE,sBAAsB,EAAE,OAAO,EAAE,eAAe,GAAG,SAAS,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,uBAAuB,CAAC;IAOvI,cAAc;IAKpB,WAAW,IAAI,sBAAsB;IAc/B,mBAAmB
|
|
1
|
+
{"version":3,"file":"StorageArchivistBuilder.d.ts","sourceRoot":"","sources":["../../../../src/lib/Builders/StorageArchivistBuilder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;AAC5D,OAAO,EAAE,eAAe,EAAE,gBAAgB,EAAE,sBAAsB,EAAgC,MAAM,wBAAwB,CAAA;AAChI,OAAO,EAAE,UAAU,EAAe,MAAM,mBAAmB,CAAA;AAG3D,MAAM,WAAW,sBAAsB;IACrC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AACD,qBAAa,uBAAuB;IAIZ,OAAO,CAAC,MAAM;IAA0B,OAAO,CAAC,OAAO,CAAC;IAAmB,OAAO,CAAC,IAAI,CAAC;IAH9G,OAAO,CAAC,UAAU,CAA8B;IAChD,OAAO,CAAC,eAAe,CAA6B;IAEpD,SAAS,aAAqB,MAAM,EAAE,sBAAsB,EAAU,OAAO,CAAC,6BAAiB,EAAU,IAAI,CAAC,uHAAY;IAE1H,IAAI,SAAS,yIAEZ;WAEY,MAAM,CAAC,MAAM,EAAE,sBAAsB,EAAE,OAAO,EAAE,eAAe,GAAG,SAAS,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,uBAAuB,CAAC;IAOvI,cAAc;IAKpB,WAAW,IAAI,sBAAsB;IAc/B,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAY1B"}
|
package/package.json
CHANGED
|
@@ -10,24 +10,24 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-react-js/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xylabs/react-async-effect": "^2.17.
|
|
14
|
-
"@xylabs/react-shared": "^2.17.
|
|
15
|
-
"@xyo-network/account-model": "^2.
|
|
16
|
-
"@xyo-network/archivist": "^2.
|
|
17
|
-
"@xyo-network/bridge": "^2.
|
|
18
|
-
"@xyo-network/module": "^2.
|
|
19
|
-
"@xyo-network/node": "^2.
|
|
20
|
-
"@xyo-network/payloadset-plugin": "^2.
|
|
21
|
-
"@xyo-network/protocol": "^2.
|
|
22
|
-
"@xyo-network/react-network": "^2.
|
|
23
|
-
"@xyo-network/react-node": "^2.
|
|
24
|
-
"@xyo-network/react-shared": "^2.
|
|
25
|
-
"@xyo-network/react-wallet": "^2.
|
|
26
|
-
"@xyo-network/sentinel": "^2.
|
|
27
|
-
"@xyo-network/witness": "^2.
|
|
13
|
+
"@xylabs/react-async-effect": "^2.17.3",
|
|
14
|
+
"@xylabs/react-shared": "^2.17.3",
|
|
15
|
+
"@xyo-network/account-model": "^2.58.0",
|
|
16
|
+
"@xyo-network/archivist": "^2.58.0",
|
|
17
|
+
"@xyo-network/bridge": "^2.58.0",
|
|
18
|
+
"@xyo-network/module": "^2.58.0",
|
|
19
|
+
"@xyo-network/node": "^2.58.0",
|
|
20
|
+
"@xyo-network/payloadset-plugin": "^2.58.0",
|
|
21
|
+
"@xyo-network/protocol": "^2.58.0",
|
|
22
|
+
"@xyo-network/react-network": "^2.50.0",
|
|
23
|
+
"@xyo-network/react-node": "^2.50.0",
|
|
24
|
+
"@xyo-network/react-shared": "^2.50.0",
|
|
25
|
+
"@xyo-network/react-wallet": "^2.50.0",
|
|
26
|
+
"@xyo-network/sentinel": "^2.58.0",
|
|
27
|
+
"@xyo-network/witness": "^2.58.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
|
-
"@storybook/react": "^7.0.
|
|
30
|
+
"@storybook/react": "^7.0.17",
|
|
31
31
|
"@xylabs/ts-scripts-yarn3": "^2.17.13",
|
|
32
32
|
"@xylabs/tsconfig-react": "^2.17.13",
|
|
33
33
|
"typescript": "^5.0.4"
|
|
@@ -84,5 +84,5 @@
|
|
|
84
84
|
},
|
|
85
85
|
"sideEffects": false,
|
|
86
86
|
"types": "dist/types/index.d.ts",
|
|
87
|
-
"version": "2.
|
|
87
|
+
"version": "2.50.0"
|
|
88
88
|
}
|
|
@@ -11,7 +11,7 @@ import { WitnessModule } from '@xyo-network/witness'
|
|
|
11
11
|
import { SentinelBuilder } from './SentinelBuilder'
|
|
12
12
|
import { StorageArchivistBuilder } from './StorageArchivistBuilder'
|
|
13
13
|
|
|
14
|
-
interface MemoryNodeBuilderConfig {
|
|
14
|
+
export interface MemoryNodeBuilderConfig {
|
|
15
15
|
name?: string
|
|
16
16
|
node?: MemoryNode
|
|
17
17
|
}
|