@xyo-network/react-standard-node 2.70.5 → 2.70.7
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/browser/lib/Builders/MemoryNodeBuilder.d.cts +10 -138
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.cts.map +1 -1
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.mts +10 -138
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.mts.map +1 -1
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.ts +10 -138
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.ts.map +1 -1
- package/dist/browser/lib/Builders/SentinelBuilder.d.cts +14 -206
- package/dist/browser/lib/Builders/SentinelBuilder.d.cts.map +1 -1
- package/dist/browser/lib/Builders/SentinelBuilder.d.mts +14 -206
- package/dist/browser/lib/Builders/SentinelBuilder.d.mts.map +1 -1
- package/dist/browser/lib/Builders/SentinelBuilder.d.ts +14 -206
- package/dist/browser/lib/Builders/SentinelBuilder.d.ts.map +1 -1
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.cts +12 -140
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.cts.map +1 -1
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.mts +12 -140
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.mts.map +1 -1
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.ts +12 -140
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.ts.map +1 -1
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.cts +10 -138
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.cts.map +1 -1
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.mts +10 -138
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.mts.map +1 -1
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.ts +10 -138
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.ts.map +1 -1
- package/dist/node/lib/Builders/SentinelBuilder.d.cts +14 -206
- package/dist/node/lib/Builders/SentinelBuilder.d.cts.map +1 -1
- package/dist/node/lib/Builders/SentinelBuilder.d.mts +14 -206
- package/dist/node/lib/Builders/SentinelBuilder.d.mts.map +1 -1
- package/dist/node/lib/Builders/SentinelBuilder.d.ts +14 -206
- package/dist/node/lib/Builders/SentinelBuilder.d.ts.map +1 -1
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.cts +12 -140
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.cts.map +1 -1
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.mts +12 -140
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.mts.map +1 -1
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.ts +12 -140
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.ts.map +1 -1
- package/package.json +21 -21
|
@@ -13,43 +13,11 @@ export declare class StorageArchivistBuilder {
|
|
|
13
13
|
private remoteArchivist;
|
|
14
14
|
protected constructor(config: ArchivistBuilderConfig, account: AccountInstance, node?: MemoryNode<import("@xylabs/object").BaseParamsFields & {
|
|
15
15
|
account?: AccountInstance | "random" | undefined;
|
|
16
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
17
|
-
readonly archivist?: string | undefined;
|
|
18
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
19
|
-
readonly name?: string | undefined;
|
|
20
|
-
readonly paging?: Record<string, {
|
|
21
|
-
size?: number | undefined;
|
|
22
|
-
}> | undefined;
|
|
23
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
24
|
-
schema: "network.xyo.node.config";
|
|
25
|
-
readonly security?: {
|
|
26
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
27
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
28
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
29
|
-
} | undefined;
|
|
30
|
-
readonly sign?: boolean | undefined;
|
|
31
|
-
readonly storeQueries?: boolean | undefined;
|
|
32
|
-
readonly timestamp?: boolean | undefined;
|
|
33
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
34
|
-
readonly archivist?: string | undefined;
|
|
35
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
36
|
-
readonly name?: string | undefined;
|
|
37
|
-
readonly paging?: Record<string, {
|
|
38
|
-
size?: number | undefined;
|
|
39
|
-
}> | undefined;
|
|
40
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
41
|
-
schema: "network.xyo.node.config";
|
|
42
|
-
readonly security?: {
|
|
43
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
44
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
45
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
46
|
-
} | undefined;
|
|
47
|
-
readonly sign?: boolean | undefined;
|
|
48
|
-
readonly storeQueries?: boolean | undefined;
|
|
49
|
-
readonly timestamp?: boolean | undefined;
|
|
50
|
-
} & {
|
|
16
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
51
17
|
archivist?: string | undefined;
|
|
52
18
|
schema: "network.xyo.node.config";
|
|
19
|
+
}, "schema"> & {
|
|
20
|
+
schema: "network.xyo.node.config";
|
|
53
21
|
}, "schema"> & {
|
|
54
22
|
schema: string;
|
|
55
23
|
};
|
|
@@ -57,41 +25,7 @@ export declare class StorageArchivistBuilder {
|
|
|
57
25
|
}, import("@xyo-network/node-model").NodeModuleEventData> | undefined);
|
|
58
26
|
get archivist(): StorageArchivist<import("@xylabs/object").BaseParamsFields & {
|
|
59
27
|
account?: AccountInstance | "random" | undefined;
|
|
60
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
61
|
-
readonly archivist?: string | undefined;
|
|
62
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
63
|
-
readonly name?: string | undefined;
|
|
64
|
-
readonly paging?: Record<string, {
|
|
65
|
-
size?: number | undefined;
|
|
66
|
-
}> | undefined;
|
|
67
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
68
|
-
schema: "network.xyo.archivist.storage.config";
|
|
69
|
-
readonly security?: {
|
|
70
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
71
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
72
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
73
|
-
} | undefined;
|
|
74
|
-
readonly sign?: boolean | undefined;
|
|
75
|
-
readonly storeQueries?: boolean | undefined;
|
|
76
|
-
readonly timestamp?: boolean | undefined;
|
|
77
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
78
|
-
readonly archivist?: string | undefined;
|
|
79
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
80
|
-
readonly name?: string | undefined;
|
|
81
|
-
readonly paging?: Record<string, {
|
|
82
|
-
size?: number | undefined;
|
|
83
|
-
}> | undefined;
|
|
84
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
85
|
-
schema: "network.xyo.archivist.storage.config";
|
|
86
|
-
readonly security?: {
|
|
87
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
88
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
89
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
90
|
-
} | undefined;
|
|
91
|
-
readonly sign?: boolean | undefined;
|
|
92
|
-
readonly storeQueries?: boolean | undefined;
|
|
93
|
-
readonly timestamp?: boolean | undefined;
|
|
94
|
-
} & {
|
|
28
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
95
29
|
parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
|
|
96
30
|
requireAllParents?: boolean | undefined;
|
|
97
31
|
schema: "network.xyo.archivist.storage.config";
|
|
@@ -103,6 +37,8 @@ export declare class StorageArchivistBuilder {
|
|
|
103
37
|
persistAccount?: boolean | undefined;
|
|
104
38
|
schema: "network.xyo.archivist.storage.config";
|
|
105
39
|
type?: "local" | "session" | "page" | undefined;
|
|
40
|
+
}, "schema"> & {
|
|
41
|
+
schema: "network.xyo.archivist.storage.config";
|
|
106
42
|
}, "schema"> & {
|
|
107
43
|
schema: string;
|
|
108
44
|
};
|
|
@@ -111,41 +47,7 @@ export declare class StorageArchivistBuilder {
|
|
|
111
47
|
static create(config: ArchivistBuilderConfig, account: AccountInstance, node: MemoryNode): Promise<StorageArchivistBuilder>;
|
|
112
48
|
buildArchivist(): Promise<StorageArchivist<import("@xylabs/object").BaseParamsFields & {
|
|
113
49
|
account?: AccountInstance | "random" | undefined;
|
|
114
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
115
|
-
readonly archivist?: string | undefined;
|
|
116
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
117
|
-
readonly name?: string | undefined;
|
|
118
|
-
readonly paging?: Record<string, {
|
|
119
|
-
size?: number | undefined;
|
|
120
|
-
}> | undefined;
|
|
121
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
122
|
-
schema: "network.xyo.archivist.storage.config";
|
|
123
|
-
readonly security?: {
|
|
124
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
125
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
126
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
127
|
-
} | undefined;
|
|
128
|
-
readonly sign?: boolean | undefined;
|
|
129
|
-
readonly storeQueries?: boolean | undefined;
|
|
130
|
-
readonly timestamp?: boolean | undefined;
|
|
131
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
132
|
-
readonly archivist?: string | undefined;
|
|
133
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
134
|
-
readonly name?: string | undefined;
|
|
135
|
-
readonly paging?: Record<string, {
|
|
136
|
-
size?: number | undefined;
|
|
137
|
-
}> | undefined;
|
|
138
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
139
|
-
schema: "network.xyo.archivist.storage.config";
|
|
140
|
-
readonly security?: {
|
|
141
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
142
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
143
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
144
|
-
} | undefined;
|
|
145
|
-
readonly sign?: boolean | undefined;
|
|
146
|
-
readonly storeQueries?: boolean | undefined;
|
|
147
|
-
readonly timestamp?: boolean | undefined;
|
|
148
|
-
} & {
|
|
50
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
149
51
|
parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
|
|
150
52
|
requireAllParents?: boolean | undefined;
|
|
151
53
|
schema: "network.xyo.archivist.storage.config";
|
|
@@ -157,6 +59,8 @@ export declare class StorageArchivistBuilder {
|
|
|
157
59
|
persistAccount?: boolean | undefined;
|
|
158
60
|
schema: "network.xyo.archivist.storage.config";
|
|
159
61
|
type?: "local" | "session" | "page" | undefined;
|
|
62
|
+
}, "schema"> & {
|
|
63
|
+
schema: "network.xyo.archivist.storage.config";
|
|
160
64
|
}, "schema"> & {
|
|
161
65
|
schema: string;
|
|
162
66
|
};
|
|
@@ -165,45 +69,13 @@ export declare class StorageArchivistBuilder {
|
|
|
165
69
|
buildConfig(): StorageArchivistConfig;
|
|
166
70
|
findParentArchivist(): Promise<import("@xyo-network/archivist").ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
167
71
|
account?: AccountInstance | "random" | undefined;
|
|
168
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
169
|
-
readonly archivist?: string | undefined;
|
|
170
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
171
|
-
readonly name?: string | undefined;
|
|
172
|
-
readonly paging?: Record<string, {
|
|
173
|
-
size?: number | undefined;
|
|
174
|
-
}> | undefined;
|
|
175
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
176
|
-
schema: "network.xyo.archivist.config";
|
|
177
|
-
readonly security?: {
|
|
178
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
179
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
180
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
181
|
-
} | undefined;
|
|
182
|
-
readonly sign?: boolean | undefined;
|
|
183
|
-
readonly storeQueries?: boolean | undefined;
|
|
184
|
-
readonly timestamp?: boolean | undefined;
|
|
185
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
186
|
-
readonly archivist?: string | undefined;
|
|
187
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
188
|
-
readonly name?: string | undefined;
|
|
189
|
-
readonly paging?: Record<string, {
|
|
190
|
-
size?: number | undefined;
|
|
191
|
-
}> | undefined;
|
|
192
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
193
|
-
schema: "network.xyo.archivist.config";
|
|
194
|
-
readonly security?: {
|
|
195
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
196
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
197
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
198
|
-
} | undefined;
|
|
199
|
-
readonly sign?: boolean | undefined;
|
|
200
|
-
readonly storeQueries?: boolean | undefined;
|
|
201
|
-
readonly timestamp?: boolean | undefined;
|
|
202
|
-
} & {
|
|
72
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
203
73
|
parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
|
|
204
74
|
requireAllParents?: boolean | undefined;
|
|
205
75
|
schema: "network.xyo.archivist.config";
|
|
206
76
|
storeParentReads?: boolean | undefined;
|
|
77
|
+
}, "schema"> & {
|
|
78
|
+
schema: "network.xyo.archivist.config";
|
|
207
79
|
}, "schema"> & {
|
|
208
80
|
schema: string;
|
|
209
81
|
};
|
|
@@ -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,EAAwC,gBAAgB,EAAE,sBAAsB,EAAgC,MAAM,wBAAwB,CAAA;AACrJ,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAIrD,MAAM,WAAW,sBAAsB;IACrC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AACD,qBAAa,uBAAuB;IAKhC,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,OAAO;IACf,OAAO,CAAC,IAAI,CAAC;IANf,OAAO,CAAC,UAAU,CAA8B;IAChD,OAAO,CAAC,eAAe,CAA6B;IAEpD,SAAS,aACC,MAAM,EAAE,sBAAsB,EAC9B,OAAO,EAAE,eAAe,EACxB,IAAI,CAAC
|
|
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,EAAwC,gBAAgB,EAAE,sBAAsB,EAAgC,MAAM,wBAAwB,CAAA;AACrJ,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAIrD,MAAM,WAAW,sBAAsB;IACrC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AACD,qBAAa,uBAAuB;IAKhC,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,OAAO;IACf,OAAO,CAAC,IAAI,CAAC;IANf,OAAO,CAAC,UAAU,CAA8B;IAChD,OAAO,CAAC,eAAe,CAA6B;IAEpD,SAAS,aACC,MAAM,EAAE,sBAAsB,EAC9B,OAAO,EAAE,eAAe,EACxB,IAAI,CAAC;;;;;;;;;;;yEAAY;IAG3B,IAAI,SAAS;;;;;;;;;;;;;;;;;;;;kEAEZ;WAEY,MAAM,CAAC,MAAM,EAAE,sBAAsB,EAAE,OAAO,EAAE,eAAe,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,uBAAuB,CAAC;IAO3H,cAAc;;;;;;;;;;;;;;;;;;;;;IAKpB,WAAW,IAAI,sBAAsB;IAc/B,mBAAmB;;;;;;;;;;;;;;;;CAY1B"}
|
|
@@ -13,43 +13,11 @@ export declare class StorageArchivistBuilder {
|
|
|
13
13
|
private remoteArchivist;
|
|
14
14
|
protected constructor(config: ArchivistBuilderConfig, account: AccountInstance, node?: MemoryNode<import("@xylabs/object").BaseParamsFields & {
|
|
15
15
|
account?: AccountInstance | "random" | undefined;
|
|
16
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
17
|
-
readonly archivist?: string | undefined;
|
|
18
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
19
|
-
readonly name?: string | undefined;
|
|
20
|
-
readonly paging?: Record<string, {
|
|
21
|
-
size?: number | undefined;
|
|
22
|
-
}> | undefined;
|
|
23
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
24
|
-
schema: "network.xyo.node.config";
|
|
25
|
-
readonly security?: {
|
|
26
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
27
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
28
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
29
|
-
} | undefined;
|
|
30
|
-
readonly sign?: boolean | undefined;
|
|
31
|
-
readonly storeQueries?: boolean | undefined;
|
|
32
|
-
readonly timestamp?: boolean | undefined;
|
|
33
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
34
|
-
readonly archivist?: string | undefined;
|
|
35
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
36
|
-
readonly name?: string | undefined;
|
|
37
|
-
readonly paging?: Record<string, {
|
|
38
|
-
size?: number | undefined;
|
|
39
|
-
}> | undefined;
|
|
40
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
41
|
-
schema: "network.xyo.node.config";
|
|
42
|
-
readonly security?: {
|
|
43
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
44
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
45
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
46
|
-
} | undefined;
|
|
47
|
-
readonly sign?: boolean | undefined;
|
|
48
|
-
readonly storeQueries?: boolean | undefined;
|
|
49
|
-
readonly timestamp?: boolean | undefined;
|
|
50
|
-
} & {
|
|
16
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
51
17
|
archivist?: string | undefined;
|
|
52
18
|
schema: "network.xyo.node.config";
|
|
19
|
+
}, "schema"> & {
|
|
20
|
+
schema: "network.xyo.node.config";
|
|
53
21
|
}, "schema"> & {
|
|
54
22
|
schema: string;
|
|
55
23
|
};
|
|
@@ -57,41 +25,7 @@ export declare class StorageArchivistBuilder {
|
|
|
57
25
|
}, import("@xyo-network/node-model").NodeModuleEventData> | undefined);
|
|
58
26
|
get archivist(): StorageArchivist<import("@xylabs/object").BaseParamsFields & {
|
|
59
27
|
account?: AccountInstance | "random" | undefined;
|
|
60
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
61
|
-
readonly archivist?: string | undefined;
|
|
62
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
63
|
-
readonly name?: string | undefined;
|
|
64
|
-
readonly paging?: Record<string, {
|
|
65
|
-
size?: number | undefined;
|
|
66
|
-
}> | undefined;
|
|
67
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
68
|
-
schema: "network.xyo.archivist.storage.config";
|
|
69
|
-
readonly security?: {
|
|
70
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
71
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
72
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
73
|
-
} | undefined;
|
|
74
|
-
readonly sign?: boolean | undefined;
|
|
75
|
-
readonly storeQueries?: boolean | undefined;
|
|
76
|
-
readonly timestamp?: boolean | undefined;
|
|
77
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
78
|
-
readonly archivist?: string | undefined;
|
|
79
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
80
|
-
readonly name?: string | undefined;
|
|
81
|
-
readonly paging?: Record<string, {
|
|
82
|
-
size?: number | undefined;
|
|
83
|
-
}> | undefined;
|
|
84
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
85
|
-
schema: "network.xyo.archivist.storage.config";
|
|
86
|
-
readonly security?: {
|
|
87
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
88
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
89
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
90
|
-
} | undefined;
|
|
91
|
-
readonly sign?: boolean | undefined;
|
|
92
|
-
readonly storeQueries?: boolean | undefined;
|
|
93
|
-
readonly timestamp?: boolean | undefined;
|
|
94
|
-
} & {
|
|
28
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
95
29
|
parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
|
|
96
30
|
requireAllParents?: boolean | undefined;
|
|
97
31
|
schema: "network.xyo.archivist.storage.config";
|
|
@@ -103,6 +37,8 @@ export declare class StorageArchivistBuilder {
|
|
|
103
37
|
persistAccount?: boolean | undefined;
|
|
104
38
|
schema: "network.xyo.archivist.storage.config";
|
|
105
39
|
type?: "local" | "session" | "page" | undefined;
|
|
40
|
+
}, "schema"> & {
|
|
41
|
+
schema: "network.xyo.archivist.storage.config";
|
|
106
42
|
}, "schema"> & {
|
|
107
43
|
schema: string;
|
|
108
44
|
};
|
|
@@ -111,41 +47,7 @@ export declare class StorageArchivistBuilder {
|
|
|
111
47
|
static create(config: ArchivistBuilderConfig, account: AccountInstance, node: MemoryNode): Promise<StorageArchivistBuilder>;
|
|
112
48
|
buildArchivist(): Promise<StorageArchivist<import("@xylabs/object").BaseParamsFields & {
|
|
113
49
|
account?: AccountInstance | "random" | undefined;
|
|
114
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
115
|
-
readonly archivist?: string | undefined;
|
|
116
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
117
|
-
readonly name?: string | undefined;
|
|
118
|
-
readonly paging?: Record<string, {
|
|
119
|
-
size?: number | undefined;
|
|
120
|
-
}> | undefined;
|
|
121
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
122
|
-
schema: "network.xyo.archivist.storage.config";
|
|
123
|
-
readonly security?: {
|
|
124
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
125
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
126
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
127
|
-
} | undefined;
|
|
128
|
-
readonly sign?: boolean | undefined;
|
|
129
|
-
readonly storeQueries?: boolean | undefined;
|
|
130
|
-
readonly timestamp?: boolean | undefined;
|
|
131
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
132
|
-
readonly archivist?: string | undefined;
|
|
133
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
134
|
-
readonly name?: string | undefined;
|
|
135
|
-
readonly paging?: Record<string, {
|
|
136
|
-
size?: number | undefined;
|
|
137
|
-
}> | undefined;
|
|
138
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
139
|
-
schema: "network.xyo.archivist.storage.config";
|
|
140
|
-
readonly security?: {
|
|
141
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
142
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
143
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
144
|
-
} | undefined;
|
|
145
|
-
readonly sign?: boolean | undefined;
|
|
146
|
-
readonly storeQueries?: boolean | undefined;
|
|
147
|
-
readonly timestamp?: boolean | undefined;
|
|
148
|
-
} & {
|
|
50
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
149
51
|
parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
|
|
150
52
|
requireAllParents?: boolean | undefined;
|
|
151
53
|
schema: "network.xyo.archivist.storage.config";
|
|
@@ -157,6 +59,8 @@ export declare class StorageArchivistBuilder {
|
|
|
157
59
|
persistAccount?: boolean | undefined;
|
|
158
60
|
schema: "network.xyo.archivist.storage.config";
|
|
159
61
|
type?: "local" | "session" | "page" | undefined;
|
|
62
|
+
}, "schema"> & {
|
|
63
|
+
schema: "network.xyo.archivist.storage.config";
|
|
160
64
|
}, "schema"> & {
|
|
161
65
|
schema: string;
|
|
162
66
|
};
|
|
@@ -165,45 +69,13 @@ export declare class StorageArchivistBuilder {
|
|
|
165
69
|
buildConfig(): StorageArchivistConfig;
|
|
166
70
|
findParentArchivist(): Promise<import("@xyo-network/archivist").ArchivistInstance<import("@xylabs/object").BaseParamsFields & {
|
|
167
71
|
account?: AccountInstance | "random" | undefined;
|
|
168
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
169
|
-
readonly archivist?: string | undefined;
|
|
170
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
171
|
-
readonly name?: string | undefined;
|
|
172
|
-
readonly paging?: Record<string, {
|
|
173
|
-
size?: number | undefined;
|
|
174
|
-
}> | undefined;
|
|
175
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
176
|
-
schema: "network.xyo.archivist.config";
|
|
177
|
-
readonly security?: {
|
|
178
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
179
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
180
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
181
|
-
} | undefined;
|
|
182
|
-
readonly sign?: boolean | undefined;
|
|
183
|
-
readonly storeQueries?: boolean | undefined;
|
|
184
|
-
readonly timestamp?: boolean | undefined;
|
|
185
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
186
|
-
readonly archivist?: string | undefined;
|
|
187
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
188
|
-
readonly name?: string | undefined;
|
|
189
|
-
readonly paging?: Record<string, {
|
|
190
|
-
size?: number | undefined;
|
|
191
|
-
}> | undefined;
|
|
192
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
193
|
-
schema: "network.xyo.archivist.config";
|
|
194
|
-
readonly security?: {
|
|
195
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
196
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
197
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
198
|
-
} | undefined;
|
|
199
|
-
readonly sign?: boolean | undefined;
|
|
200
|
-
readonly storeQueries?: boolean | undefined;
|
|
201
|
-
readonly timestamp?: boolean | undefined;
|
|
202
|
-
} & {
|
|
72
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & object & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
203
73
|
parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
|
|
204
74
|
requireAllParents?: boolean | undefined;
|
|
205
75
|
schema: "network.xyo.archivist.config";
|
|
206
76
|
storeParentReads?: boolean | undefined;
|
|
77
|
+
}, "schema"> & {
|
|
78
|
+
schema: "network.xyo.archivist.config";
|
|
207
79
|
}, "schema"> & {
|
|
208
80
|
schema: string;
|
|
209
81
|
};
|
|
@@ -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,EAAwC,gBAAgB,EAAE,sBAAsB,EAAgC,MAAM,wBAAwB,CAAA;AACrJ,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAIrD,MAAM,WAAW,sBAAsB;IACrC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AACD,qBAAa,uBAAuB;IAKhC,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,OAAO;IACf,OAAO,CAAC,IAAI,CAAC;IANf,OAAO,CAAC,UAAU,CAA8B;IAChD,OAAO,CAAC,eAAe,CAA6B;IAEpD,SAAS,aACC,MAAM,EAAE,sBAAsB,EAC9B,OAAO,EAAE,eAAe,EACxB,IAAI,CAAC
|
|
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,EAAwC,gBAAgB,EAAE,sBAAsB,EAAgC,MAAM,wBAAwB,CAAA;AACrJ,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAIrD,MAAM,WAAW,sBAAsB;IACrC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AACD,qBAAa,uBAAuB;IAKhC,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,OAAO;IACf,OAAO,CAAC,IAAI,CAAC;IANf,OAAO,CAAC,UAAU,CAA8B;IAChD,OAAO,CAAC,eAAe,CAA6B;IAEpD,SAAS,aACC,MAAM,EAAE,sBAAsB,EAC9B,OAAO,EAAE,eAAe,EACxB,IAAI,CAAC;;;;;;;;;;;yEAAY;IAG3B,IAAI,SAAS;;;;;;;;;;;;;;;;;;;;kEAEZ;WAEY,MAAM,CAAC,MAAM,EAAE,sBAAsB,EAAE,OAAO,EAAE,eAAe,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,uBAAuB,CAAC;IAO3H,cAAc;;;;;;;;;;;;;;;;;;;;;IAKpB,WAAW,IAAI,sBAAsB;IAc/B,mBAAmB;;;;;;;;;;;;;;;;CAY1B"}
|
package/package.json
CHANGED
|
@@ -10,29 +10,29 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/sdk-xyo-react-js/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xylabs/hex": "^3.0.
|
|
14
|
-
"@xylabs/react-async-effect": "^3.1.
|
|
15
|
-
"@xylabs/react-promise": "^3.1.
|
|
16
|
-
"@xylabs/react-shared": "^3.1.
|
|
17
|
-
"@xyo-network/account-model": "^2.92.
|
|
18
|
-
"@xyo-network/archivist": "^2.92.
|
|
19
|
-
"@xyo-network/http-bridge": "^2.92.
|
|
20
|
-
"@xyo-network/module-model": "^2.92.
|
|
21
|
-
"@xyo-network/node-memory": "^2.92.
|
|
22
|
-
"@xyo-network/node-model": "^2.92.
|
|
23
|
-
"@xyo-network/payloadset-plugin": "^2.92.
|
|
24
|
-
"@xyo-network/react-network": "~2.70.
|
|
25
|
-
"@xyo-network/react-node": "~2.70.
|
|
26
|
-
"@xyo-network/react-shared": "~2.70.
|
|
27
|
-
"@xyo-network/react-wallet": "~2.70.
|
|
28
|
-
"@xyo-network/sentinel": "^2.92.
|
|
29
|
-
"@xyo-network/wallet-model": "^2.92.
|
|
30
|
-
"@xyo-network/witness-model": "^2.92.
|
|
13
|
+
"@xylabs/hex": "^3.0.12",
|
|
14
|
+
"@xylabs/react-async-effect": "^3.1.5",
|
|
15
|
+
"@xylabs/react-promise": "^3.1.5",
|
|
16
|
+
"@xylabs/react-shared": "^3.1.5",
|
|
17
|
+
"@xyo-network/account-model": "^2.92.3",
|
|
18
|
+
"@xyo-network/archivist": "^2.92.3",
|
|
19
|
+
"@xyo-network/http-bridge": "^2.92.3",
|
|
20
|
+
"@xyo-network/module-model": "^2.92.3",
|
|
21
|
+
"@xyo-network/node-memory": "^2.92.3",
|
|
22
|
+
"@xyo-network/node-model": "^2.92.3",
|
|
23
|
+
"@xyo-network/payloadset-plugin": "^2.92.3",
|
|
24
|
+
"@xyo-network/react-network": "~2.70.7",
|
|
25
|
+
"@xyo-network/react-node": "~2.70.7",
|
|
26
|
+
"@xyo-network/react-shared": "~2.70.7",
|
|
27
|
+
"@xyo-network/react-wallet": "~2.70.7",
|
|
28
|
+
"@xyo-network/sentinel": "^2.92.3",
|
|
29
|
+
"@xyo-network/wallet-model": "^2.92.3",
|
|
30
|
+
"@xyo-network/witness-model": "^2.92.3"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@storybook/react": "^7.6.17",
|
|
34
|
-
"@xylabs/ts-scripts-yarn3": "^3.
|
|
35
|
-
"@xylabs/tsconfig-react": "^3.
|
|
34
|
+
"@xylabs/ts-scripts-yarn3": "^3.5.2",
|
|
35
|
+
"@xylabs/tsconfig-react": "^3.5.2",
|
|
36
36
|
"typescript": "^5.4.2"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
@@ -93,6 +93,6 @@
|
|
|
93
93
|
},
|
|
94
94
|
"sideEffects": false,
|
|
95
95
|
"types": "dist/browser/index.d.ts",
|
|
96
|
-
"version": "2.70.
|
|
96
|
+
"version": "2.70.7",
|
|
97
97
|
"type": "module"
|
|
98
98
|
}
|