@xyo-network/react-standard-node 2.70.4 → 2.70.6
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"}
|
|
@@ -12,43 +12,11 @@ export declare class MemoryNodeBuilder {
|
|
|
12
12
|
private _node;
|
|
13
13
|
get node(): MemoryNode<import("@xylabs/object").BaseParamsFields & {
|
|
14
14
|
account?: AccountInstance | "random" | undefined;
|
|
15
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
16
|
-
readonly archivist?: string | undefined;
|
|
17
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
18
|
-
readonly name?: string | undefined;
|
|
19
|
-
readonly paging?: Record<string, {
|
|
20
|
-
size?: number | undefined;
|
|
21
|
-
}> | undefined;
|
|
22
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
23
|
-
schema: "network.xyo.node.config";
|
|
24
|
-
readonly security?: {
|
|
25
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
26
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
27
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
28
|
-
} | undefined;
|
|
29
|
-
readonly sign?: boolean | undefined;
|
|
30
|
-
readonly storeQueries?: boolean | undefined;
|
|
31
|
-
readonly timestamp?: boolean | undefined;
|
|
32
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
33
|
-
readonly archivist?: string | undefined;
|
|
34
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
35
|
-
readonly name?: string | undefined;
|
|
36
|
-
readonly paging?: Record<string, {
|
|
37
|
-
size?: number | undefined;
|
|
38
|
-
}> | undefined;
|
|
39
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
40
|
-
schema: "network.xyo.node.config";
|
|
41
|
-
readonly security?: {
|
|
42
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
43
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
44
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
45
|
-
} | undefined;
|
|
46
|
-
readonly sign?: boolean | undefined;
|
|
47
|
-
readonly storeQueries?: boolean | undefined;
|
|
48
|
-
readonly timestamp?: boolean | undefined;
|
|
49
|
-
} & {
|
|
15
|
+
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 & {
|
|
50
16
|
archivist?: string | undefined;
|
|
51
17
|
schema: "network.xyo.node.config";
|
|
18
|
+
}, "schema"> & {
|
|
19
|
+
schema: "network.xyo.node.config";
|
|
52
20
|
}, "schema"> & {
|
|
53
21
|
schema: string;
|
|
54
22
|
};
|
|
@@ -62,132 +30,36 @@ export declare class MemoryNodeBuilder {
|
|
|
62
30
|
addBridge(apiDomain: string, moduleName?: string, account?: AccountInstance): Promise<void>;
|
|
63
31
|
addSentinel(config: SentinelConfig, account: AccountInstance): Promise<import("@xyo-network/sentinel").MemorySentinel<import("@xylabs/object").BaseParamsFields & {
|
|
64
32
|
account?: AccountInstance | "random" | undefined;
|
|
65
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
66
|
-
readonly archivist?: string | undefined;
|
|
67
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
68
|
-
readonly name?: string | undefined;
|
|
69
|
-
readonly paging?: Record<string, {
|
|
70
|
-
size?: number | undefined;
|
|
71
|
-
}> | undefined;
|
|
72
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
73
|
-
schema: "network.xyo.sentinel.config";
|
|
74
|
-
readonly security?: {
|
|
75
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
76
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
77
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
78
|
-
} | undefined;
|
|
79
|
-
readonly sign?: boolean | undefined;
|
|
80
|
-
readonly storeQueries?: boolean | undefined;
|
|
81
|
-
readonly timestamp?: boolean | undefined;
|
|
82
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
83
|
-
readonly archivist?: string | undefined;
|
|
84
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
85
|
-
readonly name?: string | undefined;
|
|
86
|
-
readonly paging?: Record<string, {
|
|
87
|
-
size?: number | undefined;
|
|
88
|
-
}> | undefined;
|
|
89
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
90
|
-
schema: "network.xyo.sentinel.config";
|
|
91
|
-
readonly security?: {
|
|
92
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
93
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
94
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
95
|
-
} | undefined;
|
|
96
|
-
readonly sign?: boolean | undefined;
|
|
97
|
-
readonly storeQueries?: boolean | undefined;
|
|
98
|
-
readonly timestamp?: boolean | undefined;
|
|
99
|
-
} & {
|
|
33
|
+
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 & {
|
|
100
34
|
automations?: import("@xyo-network/sentinel").SentinelAutomationPayload[] | undefined;
|
|
101
35
|
schema: "network.xyo.sentinel.config";
|
|
102
36
|
synchronous?: boolean | undefined;
|
|
103
37
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
104
38
|
throwErrors?: boolean | undefined;
|
|
39
|
+
}, "schema"> & {
|
|
40
|
+
schema: "network.xyo.sentinel.config";
|
|
105
41
|
}, "schema"> & {
|
|
106
42
|
schema: string;
|
|
107
43
|
};
|
|
108
44
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
109
45
|
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/sentinel").SentinelInstance<import("@xylabs/object").BaseParamsFields & {
|
|
110
46
|
account?: AccountInstance | "random" | undefined;
|
|
111
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
112
|
-
readonly archivist?: string | undefined;
|
|
113
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
114
|
-
readonly name?: string | undefined;
|
|
115
|
-
readonly paging?: Record<string, {
|
|
116
|
-
size?: number | undefined;
|
|
117
|
-
}> | undefined;
|
|
118
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
119
|
-
schema: "network.xyo.sentinel.config";
|
|
120
|
-
readonly security?: {
|
|
121
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
122
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
123
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
124
|
-
} | undefined;
|
|
125
|
-
readonly sign?: boolean | undefined;
|
|
126
|
-
readonly storeQueries?: boolean | undefined;
|
|
127
|
-
readonly timestamp?: boolean | undefined;
|
|
128
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
129
|
-
readonly archivist?: string | undefined;
|
|
130
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
131
|
-
readonly name?: string | undefined;
|
|
132
|
-
readonly paging?: Record<string, {
|
|
133
|
-
size?: number | undefined;
|
|
134
|
-
}> | undefined;
|
|
135
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
136
|
-
schema: "network.xyo.sentinel.config";
|
|
137
|
-
readonly security?: {
|
|
138
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
139
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
140
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
141
|
-
} | undefined;
|
|
142
|
-
readonly sign?: boolean | undefined;
|
|
143
|
-
readonly storeQueries?: boolean | undefined;
|
|
144
|
-
readonly timestamp?: boolean | undefined;
|
|
145
|
-
} & {
|
|
47
|
+
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 & {
|
|
146
48
|
automations?: import("@xyo-network/sentinel").SentinelAutomationPayload[] | undefined;
|
|
147
49
|
schema: "network.xyo.sentinel.config";
|
|
148
50
|
synchronous?: boolean | undefined;
|
|
149
51
|
tasks: import("@xyo-network/sentinel").Task[];
|
|
150
52
|
throwErrors?: boolean | undefined;
|
|
53
|
+
}, "schema"> & {
|
|
54
|
+
schema: "network.xyo.sentinel.config";
|
|
151
55
|
}, "schema"> & {
|
|
152
56
|
schema: string;
|
|
153
57
|
};
|
|
154
58
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
155
59
|
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xylabs/object").BaseParamsFields & {
|
|
156
60
|
account?: AccountInstance | "random" | undefined;
|
|
157
|
-
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
158
|
-
readonly archivist?: string | undefined;
|
|
159
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
160
|
-
readonly name?: string | undefined;
|
|
161
|
-
readonly paging?: Record<string, {
|
|
162
|
-
size?: number | undefined;
|
|
163
|
-
}> | undefined;
|
|
164
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
165
|
-
schema: "network.xyo.module.config";
|
|
166
|
-
readonly security?: {
|
|
167
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
168
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
169
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
170
|
-
} | undefined;
|
|
171
|
-
readonly sign?: boolean | undefined;
|
|
172
|
-
readonly storeQueries?: boolean | undefined;
|
|
173
|
-
readonly timestamp?: boolean | undefined;
|
|
174
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
175
|
-
readonly archivist?: string | undefined;
|
|
176
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
177
|
-
readonly name?: string | undefined;
|
|
178
|
-
readonly paging?: Record<string, {
|
|
179
|
-
size?: number | undefined;
|
|
180
|
-
}> | undefined;
|
|
181
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
61
|
+
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 & {
|
|
182
62
|
schema: "network.xyo.module.config";
|
|
183
|
-
readonly security?: {
|
|
184
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
185
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
186
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
187
|
-
} | undefined;
|
|
188
|
-
readonly sign?: boolean | undefined;
|
|
189
|
-
readonly storeQueries?: boolean | undefined;
|
|
190
|
-
readonly timestamp?: boolean | undefined;
|
|
191
63
|
}, "schema"> & {
|
|
192
64
|
schema: string;
|
|
193
65
|
};
|
|
@@ -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,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAErD,OAAO,EAAE,wBAAwB,EAAE,MAAM,gCAAgC,CAAA;AAEzE,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAA;AACtD,OAAO,EAAE,eAAe,EAAiB,MAAM,4BAA4B,CAAA;AAK3E,MAAM,WAAW,uBAAuB;IACtC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,UAAU,CAAA;CAClB;AAED,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,KAAK,CAAwB;IAErC,IAAI,IAAI
|
|
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,cAAc,EAAE,MAAM,2BAA2B,CAAA;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAA;AAErD,OAAO,EAAE,wBAAwB,EAAE,MAAM,gCAAgC,CAAA;AAEzE,OAAO,EAAE,cAAc,EAAE,MAAM,uBAAuB,CAAA;AACtD,OAAO,EAAE,eAAe,EAAiB,MAAM,4BAA4B,CAAA;AAK3E,MAAM,WAAW,uBAAuB;IACtC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,UAAU,CAAA;CAClB;AAED,qBAAa,iBAAiB;IAC5B,OAAO,CAAC,KAAK,CAAwB;IAErC,IAAI,IAAI;;;;;;;;;;;8DAEP;WAEY,MAAM,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,EAAE,uBAAuB,EAAE,OAAO,CAAC,EAAE,eAAe,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAQnH,4GAA4G;IACtG,YAAY,CAAC,OAAO,EAAE,eAAe,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAI9E,kBAAkB,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,eAAe;IAOjE,mBAAmB,CAAC,OAAO,EAAE,eAAe,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,MAAM;IAOrF,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,eAAe,CAAC,CAAC,EAAO;IAkB5G,MAAM,CAAC,MAAM,EAAE,cAAc,EAAE,QAAQ,CAAC,EAAE,OAAO,EAAE,UAAU,CAAC,EAAE,OAAO;YAgB/D,cAAc;CAM7B"}
|