@xyo-network/react-standard-node 2.67.9 → 2.67.11
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 +39 -1
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.cts.map +1 -1
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.mts +39 -1
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.mts.map +1 -1
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.ts +39 -1
- package/dist/browser/lib/Builders/MemoryNodeBuilder.d.ts.map +1 -1
- package/dist/browser/lib/Builders/SentinelBuilder.d.cts +78 -2
- package/dist/browser/lib/Builders/SentinelBuilder.d.cts.map +1 -1
- package/dist/browser/lib/Builders/SentinelBuilder.d.mts +78 -2
- package/dist/browser/lib/Builders/SentinelBuilder.d.mts.map +1 -1
- package/dist/browser/lib/Builders/SentinelBuilder.d.ts +78 -2
- package/dist/browser/lib/Builders/SentinelBuilder.d.ts.map +1 -1
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.cts +44 -1
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.cts.map +1 -1
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.mts +44 -1
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.mts.map +1 -1
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.ts +44 -1
- package/dist/browser/lib/Builders/StorageArchivistBuilder.d.ts.map +1 -1
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.cts +39 -1
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.cts.map +1 -1
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.mts +39 -1
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.mts.map +1 -1
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.ts +39 -1
- package/dist/node/lib/Builders/MemoryNodeBuilder.d.ts.map +1 -1
- package/dist/node/lib/Builders/SentinelBuilder.d.cts +78 -2
- package/dist/node/lib/Builders/SentinelBuilder.d.cts.map +1 -1
- package/dist/node/lib/Builders/SentinelBuilder.d.mts +78 -2
- package/dist/node/lib/Builders/SentinelBuilder.d.mts.map +1 -1
- package/dist/node/lib/Builders/SentinelBuilder.d.ts +78 -2
- package/dist/node/lib/Builders/SentinelBuilder.d.ts.map +1 -1
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.cts +44 -1
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.cts.map +1 -1
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.mts +44 -1
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.mts.map +1 -1
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.ts +44 -1
- package/dist/node/lib/Builders/StorageArchivistBuilder.d.ts.map +1 -1
- package/package.json +21 -21
|
@@ -157,6 +157,49 @@ export declare class StorageArchivistBuilder {
|
|
|
157
157
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
158
158
|
}, import("@xyo-network/archivist").ArchivistModuleEventData>>;
|
|
159
159
|
buildConfig(): StorageArchivistConfig;
|
|
160
|
-
findParentArchivist(): Promise<import("@xyo-network/archivist").ArchivistInstance
|
|
160
|
+
findParentArchivist(): Promise<import("@xyo-network/archivist").ArchivistInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
161
|
+
account?: AccountInstance | "random" | undefined;
|
|
162
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
163
|
+
readonly archivist?: string | undefined;
|
|
164
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
165
|
+
readonly name?: string | undefined;
|
|
166
|
+
readonly paging?: Record<string, {
|
|
167
|
+
size?: number | undefined;
|
|
168
|
+
}> | undefined;
|
|
169
|
+
schema: "network.xyo.archivist.config";
|
|
170
|
+
readonly security?: {
|
|
171
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
172
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
173
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
174
|
+
} | undefined;
|
|
175
|
+
readonly sign?: boolean | undefined;
|
|
176
|
+
readonly storeQueries?: boolean | undefined;
|
|
177
|
+
readonly timestamp?: boolean | undefined;
|
|
178
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
179
|
+
readonly archivist?: string | undefined;
|
|
180
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
181
|
+
readonly name?: string | undefined;
|
|
182
|
+
readonly paging?: Record<string, {
|
|
183
|
+
size?: number | undefined;
|
|
184
|
+
}> | undefined;
|
|
185
|
+
schema: "network.xyo.archivist.config";
|
|
186
|
+
readonly security?: {
|
|
187
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
188
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
189
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
190
|
+
} | undefined;
|
|
191
|
+
readonly sign?: boolean | undefined;
|
|
192
|
+
readonly storeQueries?: boolean | undefined;
|
|
193
|
+
readonly timestamp?: boolean | undefined;
|
|
194
|
+
} & {
|
|
195
|
+
parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
|
|
196
|
+
requireAllParents?: boolean | undefined;
|
|
197
|
+
schema: "network.xyo.archivist.config";
|
|
198
|
+
storeParentReads?: boolean | undefined;
|
|
199
|
+
}, "schema"> & {
|
|
200
|
+
schema: string;
|
|
201
|
+
};
|
|
202
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
203
|
+
}, import("@xyo-network/archivist").ArchivistModuleEventData> | undefined>;
|
|
161
204
|
}
|
|
162
205
|
//# sourceMappingURL=StorageArchivistBuilder.d.ts.map
|
|
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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
|
|
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"}
|
|
@@ -146,7 +146,45 @@ export declare class MemoryNodeBuilder {
|
|
|
146
146
|
schema: string;
|
|
147
147
|
};
|
|
148
148
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
149
|
-
}
|
|
149
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xyo-network/object").BaseParamsFields & {
|
|
150
|
+
account?: AccountInstance | "random" | undefined;
|
|
151
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
152
|
+
readonly archivist?: string | undefined;
|
|
153
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
154
|
+
readonly name?: string | undefined;
|
|
155
|
+
readonly paging?: Record<string, {
|
|
156
|
+
size?: number | undefined;
|
|
157
|
+
}> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
|
|
158
|
+
schema: "network.xyo.module.config";
|
|
159
|
+
readonly security?: {
|
|
160
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
161
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
162
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
163
|
+
} | undefined;
|
|
164
|
+
readonly sign?: boolean | undefined;
|
|
165
|
+
readonly storeQueries?: boolean | undefined;
|
|
166
|
+
readonly timestamp?: boolean | undefined;
|
|
167
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
168
|
+
readonly archivist?: string | undefined;
|
|
169
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
170
|
+
readonly name?: string | undefined;
|
|
171
|
+
readonly paging?: Record<string, {
|
|
172
|
+
size?: number | undefined;
|
|
173
|
+
}> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
|
|
174
|
+
schema: "network.xyo.module.config";
|
|
175
|
+
readonly security?: {
|
|
176
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
177
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
178
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
179
|
+
} | undefined;
|
|
180
|
+
readonly sign?: boolean | undefined;
|
|
181
|
+
readonly storeQueries?: boolean | undefined;
|
|
182
|
+
readonly timestamp?: boolean | undefined;
|
|
183
|
+
}, "schema"> & {
|
|
184
|
+
schema: string;
|
|
185
|
+
};
|
|
186
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
187
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>>>;
|
|
150
188
|
addWitnesses(pluginSetResolver: PayloadSetPluginResolver, witnesses?: (() => Promise<WitnessInstance>)[]): Promise<void>;
|
|
151
189
|
attach(module: ModuleInstance, external?: boolean, safeAttach?: boolean): Promise<void>;
|
|
152
190
|
private witnessCleanup;
|
|
@@ -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;;;;;;;;4BAYR,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;;8DAV3G;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;;;;;;;;4BA/BlE,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G
|
|
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;;;;;;;;4BAYR,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;;8DAV3G;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;;;;;;;;4BA/BlE,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;IAqCtG,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"}
|
|
@@ -146,7 +146,45 @@ export declare class MemoryNodeBuilder {
|
|
|
146
146
|
schema: string;
|
|
147
147
|
};
|
|
148
148
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
149
|
-
}
|
|
149
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xyo-network/object").BaseParamsFields & {
|
|
150
|
+
account?: AccountInstance | "random" | undefined;
|
|
151
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
152
|
+
readonly archivist?: string | undefined;
|
|
153
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
154
|
+
readonly name?: string | undefined;
|
|
155
|
+
readonly paging?: Record<string, {
|
|
156
|
+
size?: number | undefined;
|
|
157
|
+
}> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
|
|
158
|
+
schema: "network.xyo.module.config";
|
|
159
|
+
readonly security?: {
|
|
160
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
161
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
162
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
163
|
+
} | undefined;
|
|
164
|
+
readonly sign?: boolean | undefined;
|
|
165
|
+
readonly storeQueries?: boolean | undefined;
|
|
166
|
+
readonly timestamp?: boolean | undefined;
|
|
167
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
168
|
+
readonly archivist?: string | undefined;
|
|
169
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
170
|
+
readonly name?: string | undefined;
|
|
171
|
+
readonly paging?: Record<string, {
|
|
172
|
+
size?: number | undefined;
|
|
173
|
+
}> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
|
|
174
|
+
schema: "network.xyo.module.config";
|
|
175
|
+
readonly security?: {
|
|
176
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
177
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
178
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
179
|
+
} | undefined;
|
|
180
|
+
readonly sign?: boolean | undefined;
|
|
181
|
+
readonly storeQueries?: boolean | undefined;
|
|
182
|
+
readonly timestamp?: boolean | undefined;
|
|
183
|
+
}, "schema"> & {
|
|
184
|
+
schema: string;
|
|
185
|
+
};
|
|
186
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
187
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>>>;
|
|
150
188
|
addWitnesses(pluginSetResolver: PayloadSetPluginResolver, witnesses?: (() => Promise<WitnessInstance>)[]): Promise<void>;
|
|
151
189
|
attach(module: ModuleInstance, external?: boolean, safeAttach?: boolean): Promise<void>;
|
|
152
190
|
private witnessCleanup;
|
|
@@ -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;;;;;;;;4BAYR,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;;8DAV3G;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;;;;;;;;4BA/BlE,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G
|
|
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;;;;;;;;4BAYR,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;;8DAV3G;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;;;;;;;;4BA/BlE,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;IAqCtG,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"}
|
|
@@ -146,7 +146,45 @@ export declare class MemoryNodeBuilder {
|
|
|
146
146
|
schema: string;
|
|
147
147
|
};
|
|
148
148
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
149
|
-
}
|
|
149
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xyo-network/object").BaseParamsFields & {
|
|
150
|
+
account?: AccountInstance | "random" | undefined;
|
|
151
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
152
|
+
readonly archivist?: string | undefined;
|
|
153
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
154
|
+
readonly name?: string | undefined;
|
|
155
|
+
readonly paging?: Record<string, {
|
|
156
|
+
size?: number | undefined;
|
|
157
|
+
}> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
|
|
158
|
+
schema: "network.xyo.module.config";
|
|
159
|
+
readonly security?: {
|
|
160
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
161
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
162
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
163
|
+
} | undefined;
|
|
164
|
+
readonly sign?: boolean | undefined;
|
|
165
|
+
readonly storeQueries?: boolean | undefined;
|
|
166
|
+
readonly timestamp?: boolean | undefined;
|
|
167
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
168
|
+
readonly archivist?: string | undefined;
|
|
169
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
170
|
+
readonly name?: string | undefined;
|
|
171
|
+
readonly paging?: Record<string, {
|
|
172
|
+
size?: number | undefined;
|
|
173
|
+
}> | undefined; /** @deprecated - call specific method that corresponds to a type of archivist (i.e. addArchivistStorage) */
|
|
174
|
+
schema: "network.xyo.module.config";
|
|
175
|
+
readonly security?: {
|
|
176
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
177
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
178
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
179
|
+
} | undefined;
|
|
180
|
+
readonly sign?: boolean | undefined;
|
|
181
|
+
readonly storeQueries?: boolean | undefined;
|
|
182
|
+
readonly timestamp?: boolean | undefined;
|
|
183
|
+
}, "schema"> & {
|
|
184
|
+
schema: string;
|
|
185
|
+
};
|
|
186
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
187
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>>>;
|
|
150
188
|
addWitnesses(pluginSetResolver: PayloadSetPluginResolver, witnesses?: (() => Promise<WitnessInstance>)[]): Promise<void>;
|
|
151
189
|
attach(module: ModuleInstance, external?: boolean, safeAttach?: boolean): Promise<void>;
|
|
152
190
|
private witnessCleanup;
|
|
@@ -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;;;;;;;;4BAYR,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;;8DAV3G;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;;;;;;;;4BA/BlE,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G
|
|
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;;;;;;;;4BAYR,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;;8DAV3G;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;;;;;;;;4BA/BlE,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;;4BAA5G,4GAA4G;;;;;;;;;;;;;;;IAqCtG,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"}
|
|
@@ -93,7 +93,45 @@ export declare class SentinelBuilder {
|
|
|
93
93
|
schema: string;
|
|
94
94
|
};
|
|
95
95
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
96
|
-
}
|
|
96
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xyo-network/object").BaseParamsFields & {
|
|
97
|
+
account?: AccountInstance | "random" | undefined;
|
|
98
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
99
|
+
readonly archivist?: string | undefined;
|
|
100
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
101
|
+
readonly name?: string | undefined;
|
|
102
|
+
readonly paging?: Record<string, {
|
|
103
|
+
size?: number | undefined;
|
|
104
|
+
}> | undefined;
|
|
105
|
+
schema: "network.xyo.module.config";
|
|
106
|
+
readonly security?: {
|
|
107
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
108
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
109
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
110
|
+
} | undefined;
|
|
111
|
+
readonly sign?: boolean | undefined;
|
|
112
|
+
readonly storeQueries?: boolean | undefined;
|
|
113
|
+
readonly timestamp?: boolean | undefined;
|
|
114
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
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
|
+
schema: "network.xyo.module.config";
|
|
122
|
+
readonly security?: {
|
|
123
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
124
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
125
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
126
|
+
} | undefined;
|
|
127
|
+
readonly sign?: boolean | undefined;
|
|
128
|
+
readonly storeQueries?: boolean | undefined;
|
|
129
|
+
readonly timestamp?: boolean | undefined;
|
|
130
|
+
}, "schema"> & {
|
|
131
|
+
schema: string;
|
|
132
|
+
};
|
|
133
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
134
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>>;
|
|
97
135
|
static create(config: SentinelConfig, account: AccountInstance): Promise<SentinelBuilder>;
|
|
98
136
|
buildSentinel(): Promise<MemorySentinel<import("@xyo-network/object").BaseParamsFields & {
|
|
99
137
|
account?: AccountInstance | "random" | undefined;
|
|
@@ -183,7 +221,45 @@ export declare class SentinelBuilder {
|
|
|
183
221
|
schema: string;
|
|
184
222
|
};
|
|
185
223
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
186
|
-
}
|
|
224
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xyo-network/object").BaseParamsFields & {
|
|
225
|
+
account?: AccountInstance | "random" | undefined;
|
|
226
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
227
|
+
readonly archivist?: string | undefined;
|
|
228
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
229
|
+
readonly name?: string | undefined;
|
|
230
|
+
readonly paging?: Record<string, {
|
|
231
|
+
size?: number | undefined;
|
|
232
|
+
}> | undefined;
|
|
233
|
+
schema: "network.xyo.module.config";
|
|
234
|
+
readonly security?: {
|
|
235
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
236
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
237
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
238
|
+
} | undefined;
|
|
239
|
+
readonly sign?: boolean | undefined;
|
|
240
|
+
readonly storeQueries?: boolean | undefined;
|
|
241
|
+
readonly timestamp?: boolean | undefined;
|
|
242
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
243
|
+
readonly archivist?: string | undefined;
|
|
244
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
245
|
+
readonly name?: string | undefined;
|
|
246
|
+
readonly paging?: Record<string, {
|
|
247
|
+
size?: number | undefined;
|
|
248
|
+
}> | undefined;
|
|
249
|
+
schema: "network.xyo.module.config";
|
|
250
|
+
readonly security?: {
|
|
251
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
252
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
253
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
254
|
+
} | undefined;
|
|
255
|
+
readonly sign?: boolean | undefined;
|
|
256
|
+
readonly storeQueries?: boolean | undefined;
|
|
257
|
+
readonly timestamp?: boolean | undefined;
|
|
258
|
+
}, "schema"> & {
|
|
259
|
+
schema: string;
|
|
260
|
+
};
|
|
261
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
262
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>>>;
|
|
187
263
|
private buildParams;
|
|
188
264
|
}
|
|
189
265
|
//# sourceMappingURL=SentinelBuilder.d.ts.map
|
|
@@ -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,EAAwB,cAAc,EAAE,MAAM,uBAAuB,CAAA;AAE5F,qBAAa,eAAe;IAIxB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,OAAO;IAJjB,OAAO,CAAC,SAAS,CAA4B;IAE7C,SAAS,aACC,MAAM,EAAE,cAAc,EACtB,OAAO,EAAE,eAAe;IAKlC,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,EAAwB,cAAc,EAAE,MAAM,uBAAuB,CAAA;AAE5F,qBAAa,eAAe;IAIxB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,OAAO;IAJjB,OAAO,CAAC,SAAS,CAA4B;IAE7C,SAAS,aACC,MAAM,EAAE,cAAc,EACtB,OAAO,EAAE,eAAe;IAKlC,IAAI,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wEAEX;WAEY,MAAM,CAAC,MAAM,EAAE,cAAc,EAAE,OAAO,EAAE,eAAe,GAAG,OAAO,CAAC,eAAe,CAAC;IAMzF,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKnB,OAAO,CAAC,WAAW;CAMpB"}
|
|
@@ -93,7 +93,45 @@ export declare class SentinelBuilder {
|
|
|
93
93
|
schema: string;
|
|
94
94
|
};
|
|
95
95
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
96
|
-
}
|
|
96
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xyo-network/object").BaseParamsFields & {
|
|
97
|
+
account?: AccountInstance | "random" | undefined;
|
|
98
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
99
|
+
readonly archivist?: string | undefined;
|
|
100
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
101
|
+
readonly name?: string | undefined;
|
|
102
|
+
readonly paging?: Record<string, {
|
|
103
|
+
size?: number | undefined;
|
|
104
|
+
}> | undefined;
|
|
105
|
+
schema: "network.xyo.module.config";
|
|
106
|
+
readonly security?: {
|
|
107
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
108
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
109
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
110
|
+
} | undefined;
|
|
111
|
+
readonly sign?: boolean | undefined;
|
|
112
|
+
readonly storeQueries?: boolean | undefined;
|
|
113
|
+
readonly timestamp?: boolean | undefined;
|
|
114
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
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
|
+
schema: "network.xyo.module.config";
|
|
122
|
+
readonly security?: {
|
|
123
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
124
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
125
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
126
|
+
} | undefined;
|
|
127
|
+
readonly sign?: boolean | undefined;
|
|
128
|
+
readonly storeQueries?: boolean | undefined;
|
|
129
|
+
readonly timestamp?: boolean | undefined;
|
|
130
|
+
}, "schema"> & {
|
|
131
|
+
schema: string;
|
|
132
|
+
};
|
|
133
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
134
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>>;
|
|
97
135
|
static create(config: SentinelConfig, account: AccountInstance): Promise<SentinelBuilder>;
|
|
98
136
|
buildSentinel(): Promise<MemorySentinel<import("@xyo-network/object").BaseParamsFields & {
|
|
99
137
|
account?: AccountInstance | "random" | undefined;
|
|
@@ -183,7 +221,45 @@ export declare class SentinelBuilder {
|
|
|
183
221
|
schema: string;
|
|
184
222
|
};
|
|
185
223
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
186
|
-
}
|
|
224
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xyo-network/object").BaseParamsFields & {
|
|
225
|
+
account?: AccountInstance | "random" | undefined;
|
|
226
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
227
|
+
readonly archivist?: string | undefined;
|
|
228
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
229
|
+
readonly name?: string | undefined;
|
|
230
|
+
readonly paging?: Record<string, {
|
|
231
|
+
size?: number | undefined;
|
|
232
|
+
}> | undefined;
|
|
233
|
+
schema: "network.xyo.module.config";
|
|
234
|
+
readonly security?: {
|
|
235
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
236
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
237
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
238
|
+
} | undefined;
|
|
239
|
+
readonly sign?: boolean | undefined;
|
|
240
|
+
readonly storeQueries?: boolean | undefined;
|
|
241
|
+
readonly timestamp?: boolean | undefined;
|
|
242
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
243
|
+
readonly archivist?: string | undefined;
|
|
244
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
245
|
+
readonly name?: string | undefined;
|
|
246
|
+
readonly paging?: Record<string, {
|
|
247
|
+
size?: number | undefined;
|
|
248
|
+
}> | undefined;
|
|
249
|
+
schema: "network.xyo.module.config";
|
|
250
|
+
readonly security?: {
|
|
251
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
252
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
253
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
254
|
+
} | undefined;
|
|
255
|
+
readonly sign?: boolean | undefined;
|
|
256
|
+
readonly storeQueries?: boolean | undefined;
|
|
257
|
+
readonly timestamp?: boolean | undefined;
|
|
258
|
+
}, "schema"> & {
|
|
259
|
+
schema: string;
|
|
260
|
+
};
|
|
261
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
262
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>>>;
|
|
187
263
|
private buildParams;
|
|
188
264
|
}
|
|
189
265
|
//# sourceMappingURL=SentinelBuilder.d.ts.map
|
|
@@ -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,EAAwB,cAAc,EAAE,MAAM,uBAAuB,CAAA;AAE5F,qBAAa,eAAe;IAIxB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,OAAO;IAJjB,OAAO,CAAC,SAAS,CAA4B;IAE7C,SAAS,aACC,MAAM,EAAE,cAAc,EACtB,OAAO,EAAE,eAAe;IAKlC,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,EAAwB,cAAc,EAAE,MAAM,uBAAuB,CAAA;AAE5F,qBAAa,eAAe;IAIxB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,OAAO;IAJjB,OAAO,CAAC,SAAS,CAA4B;IAE7C,SAAS,aACC,MAAM,EAAE,cAAc,EACtB,OAAO,EAAE,eAAe;IAKlC,IAAI,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wEAEX;WAEY,MAAM,CAAC,MAAM,EAAE,cAAc,EAAE,OAAO,EAAE,eAAe,GAAG,OAAO,CAAC,eAAe,CAAC;IAMzF,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKnB,OAAO,CAAC,WAAW;CAMpB"}
|
|
@@ -93,7 +93,45 @@ export declare class SentinelBuilder {
|
|
|
93
93
|
schema: string;
|
|
94
94
|
};
|
|
95
95
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
96
|
-
}
|
|
96
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xyo-network/object").BaseParamsFields & {
|
|
97
|
+
account?: AccountInstance | "random" | undefined;
|
|
98
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
99
|
+
readonly archivist?: string | undefined;
|
|
100
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
101
|
+
readonly name?: string | undefined;
|
|
102
|
+
readonly paging?: Record<string, {
|
|
103
|
+
size?: number | undefined;
|
|
104
|
+
}> | undefined;
|
|
105
|
+
schema: "network.xyo.module.config";
|
|
106
|
+
readonly security?: {
|
|
107
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
108
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
109
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
110
|
+
} | undefined;
|
|
111
|
+
readonly sign?: boolean | undefined;
|
|
112
|
+
readonly storeQueries?: boolean | undefined;
|
|
113
|
+
readonly timestamp?: boolean | undefined;
|
|
114
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
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
|
+
schema: "network.xyo.module.config";
|
|
122
|
+
readonly security?: {
|
|
123
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
124
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
125
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
126
|
+
} | undefined;
|
|
127
|
+
readonly sign?: boolean | undefined;
|
|
128
|
+
readonly storeQueries?: boolean | undefined;
|
|
129
|
+
readonly timestamp?: boolean | undefined;
|
|
130
|
+
}, "schema"> & {
|
|
131
|
+
schema: string;
|
|
132
|
+
};
|
|
133
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
134
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>>;
|
|
97
135
|
static create(config: SentinelConfig, account: AccountInstance): Promise<SentinelBuilder>;
|
|
98
136
|
buildSentinel(): Promise<MemorySentinel<import("@xyo-network/object").BaseParamsFields & {
|
|
99
137
|
account?: AccountInstance | "random" | undefined;
|
|
@@ -183,7 +221,45 @@ export declare class SentinelBuilder {
|
|
|
183
221
|
schema: string;
|
|
184
222
|
};
|
|
185
223
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
186
|
-
}
|
|
224
|
+
}, import("@xyo-network/sentinel").SentinelModuleEventData<import("@xyo-network/module-model").Module<import("@xyo-network/object").BaseParamsFields & {
|
|
225
|
+
account?: AccountInstance | "random" | undefined;
|
|
226
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
227
|
+
readonly archivist?: string | undefined;
|
|
228
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
229
|
+
readonly name?: string | undefined;
|
|
230
|
+
readonly paging?: Record<string, {
|
|
231
|
+
size?: number | undefined;
|
|
232
|
+
}> | undefined;
|
|
233
|
+
schema: "network.xyo.module.config";
|
|
234
|
+
readonly security?: {
|
|
235
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
236
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
237
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
238
|
+
} | undefined;
|
|
239
|
+
readonly sign?: boolean | undefined;
|
|
240
|
+
readonly storeQueries?: boolean | undefined;
|
|
241
|
+
readonly timestamp?: boolean | undefined;
|
|
242
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
243
|
+
readonly archivist?: string | undefined;
|
|
244
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
245
|
+
readonly name?: string | undefined;
|
|
246
|
+
readonly paging?: Record<string, {
|
|
247
|
+
size?: number | undefined;
|
|
248
|
+
}> | undefined;
|
|
249
|
+
schema: "network.xyo.module.config";
|
|
250
|
+
readonly security?: {
|
|
251
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
252
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
253
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
254
|
+
} | undefined;
|
|
255
|
+
readonly sign?: boolean | undefined;
|
|
256
|
+
readonly storeQueries?: boolean | undefined;
|
|
257
|
+
readonly timestamp?: boolean | undefined;
|
|
258
|
+
}, "schema"> & {
|
|
259
|
+
schema: string;
|
|
260
|
+
};
|
|
261
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
262
|
+
}, import("@xyo-network/module-model").ModuleEventData<object>>>>>>>;
|
|
187
263
|
private buildParams;
|
|
188
264
|
}
|
|
189
265
|
//# sourceMappingURL=SentinelBuilder.d.ts.map
|
|
@@ -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,EAAwB,cAAc,EAAE,MAAM,uBAAuB,CAAA;AAE5F,qBAAa,eAAe;IAIxB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,OAAO;IAJjB,OAAO,CAAC,SAAS,CAA4B;IAE7C,SAAS,aACC,MAAM,EAAE,cAAc,EACtB,OAAO,EAAE,eAAe;IAKlC,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,EAAwB,cAAc,EAAE,MAAM,uBAAuB,CAAA;AAE5F,qBAAa,eAAe;IAIxB,OAAO,CAAC,MAAM;IACd,OAAO,CAAC,OAAO;IAJjB,OAAO,CAAC,SAAS,CAA4B;IAE7C,SAAS,aACC,MAAM,EAAE,cAAc,EACtB,OAAO,EAAE,eAAe;IAKlC,IAAI,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wEAEX;WAEY,MAAM,CAAC,MAAM,EAAE,cAAc,EAAE,OAAO,EAAE,eAAe,GAAG,OAAO,CAAC,eAAe,CAAC;IAMzF,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKnB,OAAO,CAAC,WAAW;CAMpB"}
|
|
@@ -157,6 +157,49 @@ export declare class StorageArchivistBuilder {
|
|
|
157
157
|
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
158
158
|
}, import("@xyo-network/archivist").ArchivistModuleEventData>>;
|
|
159
159
|
buildConfig(): StorageArchivistConfig;
|
|
160
|
-
findParentArchivist(): Promise<import("@xyo-network/archivist").ArchivistInstance
|
|
160
|
+
findParentArchivist(): Promise<import("@xyo-network/archivist").ArchivistInstance<import("@xyo-network/object").BaseParamsFields & {
|
|
161
|
+
account?: AccountInstance | "random" | undefined;
|
|
162
|
+
config: import("@xyo-network/payload-model").SchemaFields & object & Omit<{
|
|
163
|
+
readonly archivist?: string | undefined;
|
|
164
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
165
|
+
readonly name?: string | undefined;
|
|
166
|
+
readonly paging?: Record<string, {
|
|
167
|
+
size?: number | undefined;
|
|
168
|
+
}> | undefined;
|
|
169
|
+
schema: "network.xyo.archivist.config";
|
|
170
|
+
readonly security?: {
|
|
171
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
172
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
173
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
174
|
+
} | undefined;
|
|
175
|
+
readonly sign?: boolean | undefined;
|
|
176
|
+
readonly storeQueries?: boolean | undefined;
|
|
177
|
+
readonly timestamp?: boolean | undefined;
|
|
178
|
+
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
179
|
+
readonly archivist?: string | undefined;
|
|
180
|
+
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
181
|
+
readonly name?: string | undefined;
|
|
182
|
+
readonly paging?: Record<string, {
|
|
183
|
+
size?: number | undefined;
|
|
184
|
+
}> | undefined;
|
|
185
|
+
schema: "network.xyo.archivist.config";
|
|
186
|
+
readonly security?: {
|
|
187
|
+
readonly allowAnonymous?: boolean | undefined;
|
|
188
|
+
readonly allowed?: Record<string, (string | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
189
|
+
readonly disallowed?: Record<string, string[]> | undefined;
|
|
190
|
+
} | undefined;
|
|
191
|
+
readonly sign?: boolean | undefined;
|
|
192
|
+
readonly storeQueries?: boolean | undefined;
|
|
193
|
+
readonly timestamp?: boolean | undefined;
|
|
194
|
+
} & {
|
|
195
|
+
parents?: import("@xyo-network/archivist").ArchivistParents | undefined;
|
|
196
|
+
requireAllParents?: boolean | undefined;
|
|
197
|
+
schema: "network.xyo.archivist.config";
|
|
198
|
+
storeParentReads?: boolean | undefined;
|
|
199
|
+
}, "schema"> & {
|
|
200
|
+
schema: string;
|
|
201
|
+
};
|
|
202
|
+
ephemeralQueryAccountEnabled?: boolean | undefined;
|
|
203
|
+
}, import("@xyo-network/archivist").ArchivistModuleEventData> | undefined>;
|
|
161
204
|
}
|
|
162
205
|
//# sourceMappingURL=StorageArchivistBuilder.d.ts.map
|
|
@@ -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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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
|
|
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"}
|