@semiont/make-meaning 0.5.31 → 0.5.33
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/archivist-main.js +49 -11
- package/dist/archivist-main.js.map +1 -1
- package/dist/index.d.ts +33 -8
- package/dist/index.js +47 -11
- package/dist/index.js.map +1 -1
- package/dist/librarian-main.js +2 -1
- package/dist/librarian-main.js.map +1 -1
- package/dist/smelter-main.js +2 -1
- package/dist/smelter-main.js.map +1 -1
- package/dist/weaver-main.js +2 -1
- package/dist/weaver-main.js.map +1 -1
- package/package.json +12 -12
package/dist/weaver-main.js
CHANGED
|
@@ -10792,8 +10792,9 @@ async function authenticate() {
|
|
|
10792
10792
|
);
|
|
10793
10793
|
}
|
|
10794
10794
|
async function main() {
|
|
10795
|
-
const { initObservabilityNode } = await import('@semiont/observability/node');
|
|
10795
|
+
const { initObservabilityNode, registerSupervisorRestartCount } = await import('@semiont/observability/node');
|
|
10796
10796
|
initObservabilityNode({ serviceName: "semiont-weaver" });
|
|
10797
|
+
registerSupervisorRestartCount();
|
|
10797
10798
|
logger.info("Authenticating", { baseUrl });
|
|
10798
10799
|
const tokenSubject = new import_rxjs3.BehaviorSubject(accessToken(await authenticate()));
|
|
10799
10800
|
logger.info("Authenticated");
|